This commit is contained in:
parent
268e8d3468
commit
f4b4450f69
11 changed files with 1356 additions and 1340 deletions
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
#include "PlayerListDialog.h"
|
#include "PlayerListDialog.h"
|
||||||
#include "ui_PlayerListDialog.h"
|
#include "ui_PlayerListDialog.h"
|
||||||
|
#include "wrapper.h"
|
||||||
#include "AppEnv.h"
|
#include "AppEnv.h"
|
||||||
#include <QStringBuilder>
|
#include <QStringBuilder>
|
||||||
#include <QFontMetrics>
|
#include <QFontMetrics>
|
||||||
|
|
|
@ -138,8 +138,10 @@ ProfileInterface::ProfileInterface(ProfileDatabase *profileDB, CrewDatabase *cre
|
||||||
// Seed RNG
|
// Seed RNG
|
||||||
pcg32_srandom_r(&rng, time(NULL), (intptr_t)&rng);
|
pcg32_srandom_r(&rng, time(NULL), (intptr_t)&rng);
|
||||||
|
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
// Register Metatypes
|
// Register Metatypes
|
||||||
qRegisterMetaType<QVector<QString>>();
|
qRegisterMetaType<QVector<QString>>();
|
||||||
|
#endif
|
||||||
|
|
||||||
setMouseTracking(true);
|
setMouseTracking(true);
|
||||||
installEventFilter(this);
|
installEventFilter(this);
|
||||||
|
@ -182,7 +184,9 @@ void ProfileInterface::setupProfileInterface()
|
||||||
fixedPictures.clear();
|
fixedPictures.clear();
|
||||||
ui->labProfileLoading->setText(tr("Loading..."));
|
ui->labProfileLoading->setText(tr("Loading..."));
|
||||||
profileLoader = new ProfileLoader(profileFolder, crewDB);
|
profileLoader = new ProfileLoader(profileFolder, crewDB);
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
QObject::connect(profileLoader, SIGNAL(directoryScanned(QVector<QString>,QVector<QString>)), this, SLOT(directoryScanned(QVector<QString>,QVector<QString>)));
|
QObject::connect(profileLoader, SIGNAL(directoryScanned(QVector<QString>,QVector<QString>)), this, SLOT(directoryScanned(QVector<QString>,QVector<QString>)));
|
||||||
|
#endif
|
||||||
QObject::connect(profileLoader, SIGNAL(savegameLoaded(SavegameData*, QString)), this, SLOT(savegameLoaded_event(SavegameData*, QString)));
|
QObject::connect(profileLoader, SIGNAL(savegameLoaded(SavegameData*, QString)), this, SLOT(savegameLoaded_event(SavegameData*, QString)));
|
||||||
QObject::connect(profileLoader, SIGNAL(pictureLoaded(SnapmaticPicture*)), this, SLOT(pictureLoaded_event(SnapmaticPicture*)));
|
QObject::connect(profileLoader, SIGNAL(pictureLoaded(SnapmaticPicture*)), this, SLOT(pictureLoaded_event(SnapmaticPicture*)));
|
||||||
QObject::connect(profileLoader, SIGNAL(pictureFixed(SnapmaticPicture*)), this, SLOT(pictureFixed_event(SnapmaticPicture*)));
|
QObject::connect(profileLoader, SIGNAL(pictureFixed(SnapmaticPicture*)), this, SLOT(pictureFixed_event(SnapmaticPicture*)));
|
||||||
|
@ -258,8 +262,10 @@ void ProfileInterface::loadingProgress(int value, int maximum)
|
||||||
ui->labProfileLoading->setText(loadingStr.arg(QString::number(value), QString::number(maximum)));
|
ui->labProfileLoading->setText(loadingStr.arg(QString::number(value), QString::number(maximum)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
void ProfileInterface::directoryChanged(const QString &path)
|
void ProfileInterface::directoryChanged(const QString &path)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(path)
|
||||||
QDir dir(profileFolder);
|
QDir dir(profileFolder);
|
||||||
QVector<QString> t_savegameFiles;
|
QVector<QString> t_savegameFiles;
|
||||||
QVector<QString> t_snapmaticPics;
|
QVector<QString> t_snapmaticPics;
|
||||||
|
@ -314,6 +320,7 @@ void ProfileInterface::directoryScanned(QVector<QString> savegameFiles_s, QVecto
|
||||||
fileSystemWatcher.addPath(profileFolder);
|
fileSystemWatcher.addPath(profileFolder);
|
||||||
QObject::connect(&fileSystemWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
|
QObject::connect(&fileSystemWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
|
void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
|
||||||
{
|
{
|
||||||
|
@ -1206,7 +1213,9 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
|
||||||
if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format)) {
|
if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format)) {
|
||||||
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
|
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
|
||||||
picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
|
picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
snapmaticPics << picture->getPictureFileName();
|
snapmaticPics << picture->getPictureFileName();
|
||||||
|
#endif
|
||||||
pictureLoaded(picture, true);
|
pictureLoaded(picture, true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1240,7 +1249,9 @@ bool ProfileInterface::importSavegameData(SavegameData *savegame, QString sgdPat
|
||||||
const QString newSgdPath = profileFolder % "/" % sgdFileName;
|
const QString newSgdPath = profileFolder % "/" % sgdFileName;
|
||||||
if (QFile::copy(sgdPath, newSgdPath)) {
|
if (QFile::copy(sgdPath, newSgdPath)) {
|
||||||
savegame->setSavegameFileName(newSgdPath);
|
savegame->setSavegameFileName(newSgdPath);
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
savegameFiles << newSgdPath;
|
savegameFiles << newSgdPath;
|
||||||
|
#endif
|
||||||
savegameLoaded(savegame, newSgdPath, true);
|
savegameLoaded(savegame, newSgdPath, true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,8 +90,10 @@ private slots:
|
||||||
void dialogNextPictureRequested(QWidget *dialog);
|
void dialogNextPictureRequested(QWidget *dialog);
|
||||||
void dialogPreviousPictureRequested(QWidget *dialog);
|
void dialogPreviousPictureRequested(QWidget *dialog);
|
||||||
void on_saProfileContent_dropped(const QMimeData *mimeData);
|
void on_saProfileContent_dropped(const QMimeData *mimeData);
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
void directoryChanged(const QString &path);
|
void directoryChanged(const QString &path);
|
||||||
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
|
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
|
||||||
|
#endif
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool eventFilter(QObject *watched, QEvent *event);
|
bool eventFilter(QObject *watched, QEvent *event);
|
||||||
|
@ -107,9 +109,11 @@ private:
|
||||||
QList<SavegameData*> savegames;
|
QList<SavegameData*> savegames;
|
||||||
QList<SnapmaticPicture*> pictures;
|
QList<SnapmaticPicture*> pictures;
|
||||||
QMap<ProfileWidget*,QString> widgets;
|
QMap<ProfileWidget*,QString> widgets;
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
QFileSystemWatcher fileSystemWatcher;
|
QFileSystemWatcher fileSystemWatcher;
|
||||||
QVector<QString> savegameFiles;
|
QVector<QString> savegameFiles;
|
||||||
QVector<QString> snapmaticPics;
|
QVector<QString> snapmaticPics;
|
||||||
|
#endif
|
||||||
QSpacerItem *saSpacerItem;
|
QSpacerItem *saSpacerItem;
|
||||||
QStringList fixedPictures;
|
QStringList fixedPictures;
|
||||||
QString enabledPicStr;
|
QString enabledPicStr;
|
||||||
|
|
336
res/gta5sync.ts
336
res/gta5sync.ts
|
@ -373,7 +373,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -381,7 +381,7 @@ Pictures and Savegames</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1020,37 +1020,37 @@ Y: %2</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1227,28 +1227,28 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1300,23 +1300,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1333,14 +1333,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1348,14 +1348,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1365,194 +1365,194 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
|
||||||
<source>No Snapmatic pictures are selected</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
|
<source>No Snapmatic pictures are selected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1560,81 +1560,81 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1718,45 +1718,45 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1959,25 +1959,25 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -2152,62 +2152,62 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2410,42 +2410,42 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|
|
@ -401,7 +401,7 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Eigener Avatar</translation>
|
<translation>Eigener Avatar</translation>
|
||||||
|
@ -409,7 +409,7 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Eigenes Bild</translation>
|
<translation>Eigenes Bild</translation>
|
||||||
|
@ -1065,31 +1065,31 @@ Y: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Als &Bild exportieren...</translation>
|
<translation>Als &Bild exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Als &Snapmatic exportieren...</translation>
|
<translation>Als &Snapmatic exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>Eigenschaften bearb&eiten...</translation>
|
<translation>Eigenschaften bearb&eiten...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>Bild &überschreiben...</translation>
|
<translation>Bild &überschreiben...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>&Kartenansicht öffnen...</translation>
|
<translation>&Kartenansicht öffnen...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1236,7 +1236,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>&JSON Editor öffnen...</translation>
|
<translation>&JSON Editor öffnen...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1269,28 +1269,28 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Abbre&chen</translation>
|
<translation>Abbre&chen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation>Spieler hinzufügen...</translation>
|
<translation>Spieler hinzufügen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation>Fehlgeschlagen beim Hinzufügen von mehr Spielern weil der Limit von Spielern %1 ist!</translation>
|
<translation>Fehlgeschlagen beim Hinzufügen von mehr Spielern weil der Limit von Spielern %1 ist!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation>Spieler hinzufügen...</translation>
|
<translation>Spieler hinzufügen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation>Social Club Spieler ID eingeben</translation>
|
<translation>Social Club Spieler ID eingeben</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation>Fehlgeschlagen beim Hinzufügen vom Spieler %1 weil Spieler %1 bereits hinzugefügt wurde!</translation>
|
<translation>Fehlgeschlagen beim Hinzufügen vom Spieler %1 weil Spieler %1 bereits hinzugefügt wurde!</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1334,40 +1334,40 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>S&chließen</translation>
|
<translation>S&chließen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Lade...</translation>
|
<translation>Lade...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic Lader</translation>
|
<translation>Snapmatic Lader</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation>
|
<translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Importieren...</translation>
|
<translation>Importieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1382,45 +1382,45 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Importieren</translation>
|
<translation>Importieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Spielstanddateien (SGTA*)</translation>
|
<translation>Spielstanddateien (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Snapmatic Bilder (PGTA*)</translation>
|
<translation>Snapmatic Bilder (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Importfähige Dateien (%1)</translation>
|
<translation>Importfähige Dateien (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Alle Bilddateien (%1)</translation>
|
<translation>Alle Bilddateien (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Alle Dateien (**)</translation>
|
<translation>Alle Dateien (**)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Importiere Datei %1 von %2 Dateien</translation>
|
<translation>Importiere Datei %1 von %2 Dateien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1429,13 +1429,13 @@ Drücke 1 für Standardmodus</translation>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
|
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Fehler beim Lesen von Spielstanddatei</translation>
|
<translation>Fehler beim Lesen von Spielstanddatei</translation>
|
||||||
|
@ -1443,40 +1443,40 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
|
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
|
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
|
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Initialisiere Export...</translation>
|
<translation>Initialisiere Export...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation>
|
<translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
||||||
|
@ -1487,91 +1487,91 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Aktivierte Bilder: %1 von %2</translation>
|
<translation>Aktivierte Bilder: %1 von %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
|
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
|
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG Bilder und GTA Snapmatic</translation>
|
<translation>JPG Bilder und GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Nur JPG Bilder</translation>
|
<translation>Nur JPG Bilder</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>Nur GTA Snapmatic</translation>
|
<translation>Nur GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Auswahl patchen...</translation>
|
<translation>Auswahl patchen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Patche Datei %1 von %2 Dateien</translation>
|
<translation>Patche Datei %1 von %2 Dateien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Als Avatar qualifizieren</translation>
|
<translation>Als Avatar qualifizieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
|
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
|
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1581,93 +1581,93 @@ Drücke 1 für Standardmodus</translation>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Bereite Inhalt für Import vor...</translation>
|
<translation>Bereite Inhalt für Import vor...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Qualifizieren</translation>
|
<translation>Qualifizieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Spieler ändern...</translation>
|
<translation>Spieler ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Spieler ändern</translation>
|
<translation>Spieler ändern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Crew ändern...</translation>
|
<translation>Crew ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
|
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Crew ändern</translation>
|
<translation>Crew ändern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Titel ändern...</translation>
|
<translation>Titel ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
|
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Titel ändern</translation>
|
<translation>Titel ändern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
|
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Auswahl löschen</translation>
|
<translation>Auswahl löschen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
|
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Auswahl exportieren...</translation>
|
<translation>Auswahl exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1686,7 +1686,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
|
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
|
@ -1810,38 +1810,38 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
|
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>A&nsehen</translation>
|
<translation>A&nsehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>Entfe&rnen</translation>
|
<translation>Entfe&rnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>Au&swählen</translation>
|
<translation>Au&swählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>A&bwählen</translation>
|
<translation>A&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>&Alles auswählen</translation>
|
<translation>&Alles auswählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Alles a&bwählen</translation>
|
<translation>Alles a&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1856,9 +1856,9 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Spielstand kopieren</translation>
|
<translation>Spielstand kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exportieren</translation>
|
<translation>&Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1952,7 +1952,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Meme</translation>
|
<translation>Meme</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Snapmatic Titel</translation>
|
<translation>Snapmatic Titel</translation>
|
||||||
|
@ -2068,19 +2068,19 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
|
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Neuer Snapmatic Titel:</translation>
|
<translation>Neuer Snapmatic Titel:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Snapmatic Crew</translation>
|
<translation>Snapmatic Crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Neue Snapmatic Crew:</translation>
|
<translation>Neue Snapmatic Crew:</translation>
|
||||||
|
@ -2208,62 +2208,62 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Bearbei&ten</translation>
|
<translation>Bearbei&ten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exportieren</translation>
|
<translation>&Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>&Im Spiel anzeigen</translation>
|
<translation>&Im Spiel anzeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>&Im Spiel ausblenden</translation>
|
<translation>&Im Spiel ausblenden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>A&nsehen</translation>
|
<translation>A&nsehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>Entfe&rnen</translation>
|
<translation>Entfe&rnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>Au&swählen</translation>
|
<translation>Au&swählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>A&bwählen</translation>
|
<translation>A&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Alles &auswählen</translation>
|
<translation>Alles &auswählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Alles a&bwählen</translation>
|
<translation>Alles a&bwählen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2376,29 +2376,29 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation>&Titel ändern...</translation>
|
<translation>&Titel ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation>Als Avatar &qualifizieren</translation>
|
<translation>Als Avatar &qualifizieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>S&pieler ändern...</translation>
|
<translation>S&pieler ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation>&Crew ändern...</translation>
|
<translation>&Crew ändern...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2552,15 +2552,15 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>&Neuladen</translation>
|
<translation>&Neuladen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Im Spiel anzeigen</translation>
|
<translation>Im Spiel anzeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Im Spiel ausblenden</translation>
|
<translation>Im Spiel ausblenden</translation>
|
||||||
|
|
|
@ -379,7 +379,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -387,7 +387,7 @@ Pictures and Savegames</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1020,31 +1020,31 @@ Y: %2</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1194,7 +1194,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1227,28 +1227,28 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1303,40 +1303,40 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1351,24 +1351,24 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1376,46 +1376,46 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1423,147 +1423,147 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Initializing export...</translation>
|
<translation>Initializing export...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
|
||||||
<source>Qualify as Avatar</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
|
||||||
<source>No Snapmatic pictures are selected</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<source>Qualify as Avatar</source>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
|
||||||
<source>Patch selected...</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
|
||||||
<source>Patch file %1 of %2 files</source>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
|
<source>No Snapmatic pictures are selected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
|
<source>Patch selected...</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
|
<source>Patch file %1 of %2 files</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1571,70 +1571,70 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1718,45 +1718,45 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2006,25 +2006,25 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -2152,62 +2152,62 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2405,8 +2405,8 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2417,22 +2417,22 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2488,15 +2488,15 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|
|
@ -398,7 +398,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Avatar personnalisé</translation>
|
<translation>Avatar personnalisé</translation>
|
||||||
|
@ -406,7 +406,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Image personnalisé</translation>
|
<translation>Image personnalisé</translation>
|
||||||
|
@ -1142,31 +1142,31 @@ Y : %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Exporter comme &image...</translation>
|
<translation>Exporter comme &image...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Exporter comme &Snapmatic...</translation>
|
<translation>Exporter comme &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Remplacer l'image...</translation>
|
<translation>&Remplacer l'image...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>Modifier les &propriétés...</translation>
|
<translation>Modifier les &propriétés...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1233,7 +1233,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Ouvrir l'éditeur &JSON...</translation>
|
<translation>Ouvrir l'éditeur &JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1266,28 +1266,28 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>A&nnuler</translation>
|
<translation>A&nnuler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation>Ajouter des joueurs...</translation>
|
<translation>Ajouter des joueurs...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation>Échec de l'ajout de joueurs : la limite de %1 est atteinte !</translation>
|
<translation>Échec de l'ajout de joueurs : la limite de %1 est atteinte !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation>Ajouter un joueur...</translation>
|
<translation>Ajouter un joueur...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation>Entrer l'ID Social Club du joueur</translation>
|
<translation>Entrer l'ID Social Club du joueur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation>Échec de l'ajout du joueur %1 car le joueur %1 est déjà ajouté !</translation>
|
<translation>Échec de l'ajout du joueur %1 car le joueur %1 est déjà ajouté !</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1342,40 +1342,40 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Photos activées : %1 sur %2</translation>
|
<translation>Photos activées : %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Chargement...</translation>
|
<translation>Chargement...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic Loader</translation>
|
<translation>Snapmatic Loader</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation>
|
<translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Importer...</translation>
|
<translation>Importer...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1390,13 +1390,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Importer</translation>
|
<translation>Importer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
|
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Photos Snapmatic (PGTA*)</translation>
|
<translation>Photos Snapmatic (PGTA*)</translation>
|
||||||
|
@ -1404,26 +1404,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Toutes les images (%1)</translation>
|
<translation>Toutes les images (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Tous les fichiers (**)</translation>
|
<translation>Tous les fichiers (**)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Importation du fichier %1 sur %2</translation>
|
<translation>Importation du fichier %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1432,25 +1432,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Fichier invalide</translation>
|
<translation>Fichier invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Fichiers importables (%1)</translation>
|
<translation>Fichiers importables (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Impossible d'ouvrir la photo Snapmatic</translation>
|
<translation>Impossible d'ouvrir la photo Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Impossible de lire le fichier de sauvegarde</translation>
|
<translation>Impossible de lire le fichier de sauvegarde</translation>
|
||||||
|
@ -1458,122 +1458,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation>
|
<translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation>
|
<translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Impossible d'importer %1, le format du fichier n'est pas détecté</translation>
|
<translation>Impossible d'importer %1, le format du fichier n'est pas détecté</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
|
<translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
|
<translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
|
<translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
|
<translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>Images JPG et GTA Snapmatic</translation>
|
<translation>Images JPG et GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Images JPG seulement</translation>
|
<translation>Images JPG seulement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>GTA Snapmatic seulement</translation>
|
<translation>GTA Snapmatic seulement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation>
|
<translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Exporter la sélection...</translation>
|
<translation>Exporter la sélection...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Initialisation de l'export...</translation>
|
<translation>Initialisation de l'export...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Qualifier comme Avatar</translation>
|
<translation>Qualifier comme Avatar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Aucun Snapmatic sélectionné</translation>
|
<translation>Aucun Snapmatic sélectionné</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Patcher la sélection...</translation>
|
<translation>Patcher la sélection...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Patch du fichier %1 sur %2</translation>
|
<translation>Patch du fichier %1 sur %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1583,76 +1583,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
|
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Préparation du contenu pour l'import...</translation>
|
<translation>Préparation du contenu pour l'import...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
|
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Qualifier</translation>
|
<translation>Qualifier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Modifier les joueurs...</translation>
|
<translation>Modifier les joueurs...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Modifier les joueurs</translation>
|
<translation>Modifier les joueurs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Modifier le Crew...</translation>
|
<translation>Modifier le Crew...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Snapmatic Crew ID invalide</translation>
|
<translation>Snapmatic Crew ID invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Changer le Crew</translation>
|
<translation>Changer le Crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Changer le titre...</translation>
|
<translation>Changer le titre...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Titre Snapmatic invalide</translation>
|
<translation>Titre Snapmatic invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Changer le titre</translation>
|
<translation>Changer le titre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1661,20 +1661,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
|
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Supprimer la sélection</translation>
|
<translation>Supprimer la sélection</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Supprimer la sélection ?</translation>
|
<translation>Supprimer la sélection ?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1684,7 +1684,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
|
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
|
@ -1778,9 +1778,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Supprimer</translation>
|
<translation>Supprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exporter</translation>
|
<translation>&Exporter</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1871,38 +1871,38 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Impossible de supprimer %1</translation>
|
<translation>Impossible de supprimer %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Voir</translation>
|
<translation>&Voir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Supprimer</translation>
|
<translation>&Supprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Sélectionner</translation>
|
<translation>&Sélectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Déselectionner</translation>
|
<translation>&Déselectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Sélectionner to&ut</translation>
|
<translation>Sélectionner to&ut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Déselectionner tout</translation>
|
<translation>&Déselectionner tout</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1958,7 +1958,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Meme</translation>
|
<translation>Meme</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Titre Snapmatic</translation>
|
<translation>Titre Snapmatic</translation>
|
||||||
|
@ -2076,19 +2076,19 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
|
<translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Nouveau titre Snapmatic :</translation>
|
<translation>Nouveau titre Snapmatic :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Crew Snapmatic</translation>
|
<translation>Crew Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Nouveau crew Snapmatic :</translation>
|
<translation>Nouveau crew Snapmatic :</translation>
|
||||||
|
@ -2236,62 +2236,62 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>%1 n'a pas pu être rendu visible en jeu</translation>
|
<translation>%1 n'a pas pu être rendu visible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Édi&ter</translation>
|
<translation>Édi&ter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>&Visible en jeu</translation>
|
<translation>&Visible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>&Invisible en jeu</translation>
|
<translation>&Invisible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exporter</translation>
|
<translation>&Exporter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Voir</translation>
|
<translation>&Voir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>S&upprimer</translation>
|
<translation>S&upprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Sélectionner</translation>
|
<translation>&Sélectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Déselectionner</translation>
|
<translation>&Déselectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Sélectionner &tout</translation>
|
<translation>Sélectionner &tout</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Déselectionner tout</translation>
|
<translation>&Déselectionner tout</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2446,8 +2446,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>Modifier les &joueurs...</translation>
|
<translation>Modifier les &joueurs...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2458,22 +2458,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation>Changer le &titre...</translation>
|
<translation>Changer le &titre...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation>Changer le &Crew...</translation>
|
<translation>Changer le &Crew...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation>&Qualifier comme Avatar</translation>
|
<translation>&Qualifier comme Avatar</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2560,15 +2560,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>%1 - Nouvelles</translation>
|
<translation>%1 - Nouvelles</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Visible en jeu</translation>
|
<translation>Visible en jeu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Invisible en jeu</translation>
|
<translation>Invisible en jeu</translation>
|
||||||
|
|
|
@ -395,7 +395,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
<translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
||||||
|
@ -404,7 +404,7 @@ Pictures and Savegames</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
<translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
|
||||||
|
@ -1073,37 +1073,37 @@ Y: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>내 PC에 이미지로 내보내기(&P)</translation>
|
<translation>내 PC에 이미지로 내보내기(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>내 PC에 스냅매틱으로 내보내기(&S)</translation>
|
<translation>내 PC에 스냅매틱으로 내보내기(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>속성 편집(&E)</translation>
|
<translation>속성 편집(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>이미지 덮어쓰기(&O)</translation>
|
<translation>이미지 덮어쓰기(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>지도 뷰어 열기(&M)</translation>
|
<translation>지도 뷰어 열기(&M)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>JSON 편집기 열기(&J)</translation>
|
<translation>JSON 편집기 열기(&J)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1283,28 +1283,28 @@ Press 1 for Default View</source>
|
||||||
<translation>취소(&C)</translation>
|
<translation>취소(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation>플레이어 추가</translation>
|
<translation>플레이어 추가</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation>플레이어의 제한이 %1이므로 플레이어를 추가하지 못했습니다!</translation>
|
<translation>플레이어의 제한이 %1이므로 플레이어를 추가하지 못했습니다!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation>플레이어 추가</translation>
|
<translation>플레이어 추가</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation>소셜 클럽 플레이어 아이디 입력</translation>
|
<translation>소셜 클럽 플레이어 아이디 입력</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation>%1 플레이어가 이미 추가되어 %1 플레이어를 추가하지 못했습니다!</translation>
|
<translation>%1 플레이어가 이미 추가되어 %1 플레이어를 추가하지 못했습니다!</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1356,23 +1356,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>가져오기</translation>
|
<translation>가져오기</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1389,14 +1389,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>모든 이미지 파일 (%1)</translation>
|
<translation>모든 이미지 파일 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>모든 파일 (**)</translation>
|
<translation>모든 파일 (**)</translation>
|
||||||
|
@ -1404,14 +1404,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다.</translation>
|
<translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다.</translation>
|
<translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1421,58 +1421,58 @@ Press 1 for Default View</source>
|
||||||
<translation>활성화된 이미지: %2의 %1</translation>
|
<translation>활성화된 이미지: %2의 %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>불러오는 중...</translation>
|
<translation>불러오는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>스냅매틱 불러오기</translation>
|
<translation>스냅매틱 불러오기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>다음 스냅매틱 이미지를 복구했습니다. </h4>%1</translation>
|
<translation><h4>다음 스냅매틱 이미지를 복구했습니다. </h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>가져올 수 있는 파일 (%1)</translation>
|
<translation>가져올 수 있는 파일 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V로 내보내기 (*.g5e)</translation>
|
<translation>GTA V로 내보내기 (*.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>세이브 파일 (SGTA*)</translation>
|
<translation>세이브 파일 (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>스냅매틱 이미지 (PGTA*)</translation>
|
<translation>스냅매틱 이미지 (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>올바른 파일이 선택되지 않았습니다.</translation>
|
<translation>올바른 파일이 선택되지 않았습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>%2 파일 중 %1 파일을 가져옵니다.</translation>
|
<translation>%2 파일 중 %1 파일을 가져옵니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1481,91 +1481,91 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>스냅매틱 이미지를 읽지 못했습니다.</translation>
|
<translation>스냅매틱 이미지를 읽지 못했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>세이브 파일을 읽지 못했습니다.</translation>
|
<translation>세이브 파일을 읽지 못했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다.</translation>
|
<translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>가져올 컨텐츠를 준비합니다.</translation>
|
<translation>가져올 컨텐츠를 준비합니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>스냅매틱 이미지를 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다.</translation>
|
<translation>스냅매틱 이미지를 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>uid %1이(가) 있는 스냅매틱 이미지가 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까?</translation>
|
<translation>uid %1이(가) 있는 스냅매틱 이미지가 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>스냅매틱 이미지를 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
|
<translation>스냅매틱 이미지를 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
|
<translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다.</translation>
|
<translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>내보내기를 선택했습니다.</translation>
|
<translation>내보내기를 선택했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG 이미지 및 GTA 스냅매틱</translation>
|
<translation>JPG 이미지 및 GTA 스냅매틱</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>JPG 이미지만</translation>
|
<translation>JPG 이미지만</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>GTA 스냅매틱만</translation>
|
<translation>GTA 스냅매틱만</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1 스냅매틱 이미지 내보내기를 시작합니다.%2 <br><br>JPG 이미지를 사용하면 이미지 뷰어로 파일을 열 수 있습니다.<br>GTA 스냅매틱을 사용하면 다음과 같이 이미지를 게임으로 가져올 수 있습니다.</translation>
|
<translation>%1 스냅매틱 이미지 내보내기를 시작합니다.%2 <br><br>JPG 이미지를 사용하면 이미지 뷰어로 파일을 열 수 있습니다.<br>GTA 스냅매틱을 사용하면 다음과 같이 이미지를 게임으로 가져올 수 있습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>내보내기를 초기화하는 중...</translation>
|
<translation>내보내기를 초기화하는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1574,45 +1574,45 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>스냅매틱 이미지 또는 세이브 파일이 선택되지 않았습니다.</translation>
|
<translation>스냅매틱 이미지 또는 세이브 파일이 선택되지 않았습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>선택한 항목 삭제</translation>
|
<translation>선택한 항목 삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>선택한 스냅매틱 이미지 및 세이브 파일을 삭제하시겠습니까?</translation>
|
<translation>선택한 스냅매틱 이미지 및 세이브 파일을 삭제하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>선택한 모든 스냅매틱 이미지 및 세이브 파일을 삭제하지 못했습니다.</translation>
|
<translation>선택한 모든 스냅매틱 이미지 및 세이브 파일을 삭제하지 못했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>스냅매틱 이미지가 선택되지 않았습니다.</translation>
|
<translation>스냅매틱 이미지가 선택되지 않았습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1623,84 +1623,84 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>아바타 자격 부여</translation>
|
<translation>아바타 자격 부여</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>패치가 선택됨...</translation>
|
<translation>패치가 선택됨...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>%2 파일의 %1 패치 파일입니다.</translation>
|
<translation>%2 파일의 %1 패치 파일입니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
<translation>자격 부여</translation>
|
<translation>자격 부여</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>플레이어 변경</translation>
|
<translation>플레이어 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
<translation>플레이어 변경</translation>
|
<translation>플레이어 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>조직 변경</translation>
|
<translation>조직 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다.</translation>
|
<translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
<translation>조직 변경</translation>
|
<translation>조직 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>제목 변경</translation>
|
<translation>제목 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>올바른 스냅매틱 제목을 입력하지 않았습니다.</translation>
|
<translation>올바른 스냅매틱 제목을 입력하지 않았습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
<translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
|
||||||
|
@ -1800,45 +1800,45 @@ Press 1 for Default View</source>
|
||||||
<translation>삭제</translation>
|
<translation>삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>보기(&V)</translation>
|
<translation>보기(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>내보내기(&E)</translation>
|
<translation>내보내기(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>삭제(&R)</translation>
|
<translation>삭제(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>선택(&S)</translation>
|
<translation>선택(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>선택 해제(&D)</translation>
|
<translation>선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>모두 선택(&A)</translation>
|
<translation>모두 선택(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>모두 선택 해제(&D)</translation>
|
<translation>모두 선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2043,25 +2043,25 @@ Press 1 for Default View</source>
|
||||||
<translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation>
|
<translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>조직 스냅매틱</translation>
|
<translation>조직 스냅매틱</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>새로운 조직 스냅매틱:</translation>
|
<translation>새로운 조직 스냅매틱:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>스냅매틱 제목</translation>
|
<translation>스냅매틱 제목</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>새로운 스냅매틱 제목:</translation>
|
<translation>새로운 스냅매틱 제목:</translation>
|
||||||
|
@ -2241,62 +2241,62 @@ Press 1 for Default View</source>
|
||||||
<translation>삭제</translation>
|
<translation>삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>편집(&T)</translation>
|
<translation>편집(&T)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>인게임에서 보이기(&I)</translation>
|
<translation>인게임에서 보이기(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>인게임에서 숨기기(&I)</translation>
|
<translation>인게임에서 숨기기(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>내보내기(&E)</translation>
|
<translation>내보내기(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>보기(&V)</translation>
|
<translation>보기(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>삭제(&R)</translation>
|
<translation>삭제(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>선택(&S)</translation>
|
<translation>선택(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>선택 해제(&D)</translation>
|
<translation>선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>모두 선택(&A)</translation>
|
<translation>모두 선택(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>모두 선택 해제(&D)</translation>
|
<translation>모두 선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2500,42 +2500,42 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation>제목 변경(&T)</translation>
|
<translation>제목 변경(&T)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation>&조직 상징 변경(&C)</translation>
|
<translation>&조직 상징 변경(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation>아바타 자격 부여(&Q)</translation>
|
<translation>아바타 자격 부여(&Q)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>플레이어 변경(&P)</translation>
|
<translation>플레이어 변경(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>인게임 보이기</translation>
|
<translation>인게임 보이기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>인게임 숨기기</translation>
|
<translation>인게임 숨기기</translation>
|
||||||
|
|
|
@ -409,7 +409,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Свой Аватар</translation>
|
<translation>Свой Аватар</translation>
|
||||||
|
@ -417,7 +417,7 @@ Pictures and Savegames</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Своя Картинка</translation>
|
<translation>Своя Картинка</translation>
|
||||||
|
@ -1076,31 +1076,31 @@ Y: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Экспортировать как &картинку...</translation>
|
<translation>Экспортировать как &картинку...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Экспортировать как &Snapmatic...</translation>
|
<translation>Экспортировать как &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Перезаписать картинку...</translation>
|
<translation>&Перезаписать картинку...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>&Изменить свойства...</translation>
|
<translation>&Изменить свойства...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Открыть &карту...</translation>
|
<translation>Открыть &карту...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1247,7 +1247,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Открыть &редактор JSON...</translation>
|
<translation>Открыть &редактор JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1280,28 +1280,28 @@ Press 1 for Default View</source>
|
||||||
<translation>&Отмена</translation>
|
<translation>&Отмена</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation>Добавить игроков...</translation>
|
<translation>Добавить игроков...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation>Невозможно добавить больше игроков из-за ограничения в %1!</translation>
|
<translation>Невозможно добавить больше игроков из-за ограничения в %1!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation>Добавить игрока...</translation>
|
<translation>Добавить игрока...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation>Введите идентификатор игрока из Social Club</translation>
|
<translation>Введите идентификатор игрока из Social Club</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation>Нельзя повторно добавить игрока %1, %1 уже добавлен!</translation>
|
<translation>Нельзя повторно добавить игрока %1, %1 уже добавлен!</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1344,17 +1344,17 @@ Press 1 for Default View</source>
|
||||||
<translation>&Закрыть</translation>
|
<translation>&Закрыть</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Загрузка...</translation>
|
<translation>Загрузка...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Загрузчик Snapmatic</translation>
|
<translation>Загрузчик Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line
|
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line
|
||||||
</translatorcomment>
|
</translatorcomment>
|
||||||
|
@ -1363,23 +1363,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Импортировать...</translation>
|
<translation>Импортировать...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1394,13 +1394,13 @@ Press 1 for Default View</source>
|
||||||
<translation>Импортировать</translation>
|
<translation>Импортировать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Файлы сохранения (SGTA*)</translation>
|
<translation>Файлы сохранения (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Картинка Snapmatic (PGTA*)</translation>
|
<translation>Картинка Snapmatic (PGTA*)</translation>
|
||||||
|
@ -1408,19 +1408,19 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Все файлы (**)</translation>
|
<translation>Все файлы (**)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Импортируются файлы %1 из %2</translation>
|
<translation>Импортируются файлы %1 из %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1429,20 +1429,20 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Не удалось загрузить картинку Snapmatic</translation>
|
<translation>Не удалось загрузить картинку Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Не удалось загрузить файл сохранения</translation>
|
<translation>Не удалось загрузить файл сохранения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Выбранный файл неверен</translation>
|
<translation>Выбранный файл неверен</translation>
|
||||||
|
@ -1453,145 +1453,145 @@ Press 1 for Default View</source>
|
||||||
<translation>Включенные картинки: %1 из %2</translation>
|
<translation>Включенные картинки: %1 из %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Файлы для импорта (%1)</translation>
|
<translation>Файлы для импорта (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Все файлы изображений (%1)</translation>
|
<translation>Все файлы изображений (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
|
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
|
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
|
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
|
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
|
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>Картинки JPG и GTA Snapmatic</translation>
|
<translation>Картинки JPG и GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Только картинки JPG</translation>
|
<translation>Только картинки JPG</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>Только GTA Snapmatic</translation>
|
<translation>Только GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Подготовка к экспорту...</translation>
|
<translation>Подготовка к экспорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Не выделен ни один Snapmatic или сохранение</translation>
|
<translation>Не выделен ни один Snapmatic или сохранение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Снять выделение</translation>
|
<translation>Снять выделение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
|
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Подготовка данных к импорту...</translation>
|
<translation>Подготовка данных к импорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Пометить как Аватар</translation>
|
<translation>Пометить как Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Не выделена ни одна картинка Snapmatic</translation>
|
<translation>Не выделена ни одна картинка Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Пропатчить выделенные...</translation>
|
<translation>Пропатчить выделенные...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Изменяется файл %1 из %2</translation>
|
<translation>Изменяется файл %1 из %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1601,86 +1601,86 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translatorcomment>Можно использовать слово "приписать"</translatorcomment>
|
<translatorcomment>Можно использовать слово "приписать"</translatorcomment>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
|
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Помечание</translation>
|
<translation>Помечание</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Изменить игроков...</translation>
|
<translation>Изменить игроков...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Измение игроков</translation>
|
<translation>Измение игроков</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Изменить банду...</translation>
|
<translation>Изменить банду...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Введённый идентификатор банды не верен</translation>
|
<translation>Введённый идентификатор банды не верен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Изменение банды</translation>
|
<translation>Изменение банды</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Изменить заголовок...</translation>
|
<translation>Изменить заголовок...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Введённый заголовок не верен</translation>
|
<translation>Введённый заголовок не верен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Изменение заголовка</translation>
|
<translation>Изменение заголовка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation>
|
<translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Экпортировать выделенное...</translation>
|
<translation>Экпортировать выделенное...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1701,7 +1701,7 @@ Press 1 for Default View</source>
|
||||||
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
|
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
|
@ -1830,38 +1830,38 @@ Press 1 for Default View</source>
|
||||||
<translation>Не удалось удалить сохранение %1</translation>
|
<translation>Не удалось удалить сохранение %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Просмотр</translation>
|
<translation>&Просмотр</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Удалить</translation>
|
<translation>&Удалить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Выбрать</translation>
|
<translation>&Выбрать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>Сн&ять выбор</translation>
|
<translation>Сн&ять выбор</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>В&ыбрать все</translation>
|
<translation>В&ыбрать все</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Снять выбо&р со всех</translation>
|
<translation>Снять выбо&р со всех</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1871,9 +1871,9 @@ Press 1 for Default View</source>
|
||||||
<translation>Копировать сохранение</translation>
|
<translation>Копировать сохранение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Экспортировать</translation>
|
<translation>&Экспортировать</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1977,7 +1977,7 @@ Press 1 for Default View</source>
|
||||||
<translation>Meme</translation>
|
<translation>Meme</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Заголовок Snapmatic</translation>
|
<translation>Заголовок Snapmatic</translation>
|
||||||
|
@ -2083,19 +2083,19 @@ Press 1 for Default View</source>
|
||||||
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
|
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Новый заголовок Snapmatic:</translation>
|
<translation>Новый заголовок Snapmatic:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Банда на Snapmatic</translation>
|
<translation>Банда на Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Новая банда на Snapmatic:</translation>
|
<translation>Новая банда на Snapmatic:</translation>
|
||||||
|
@ -2233,62 +2233,62 @@ Press 1 for Default View</source>
|
||||||
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
|
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>&Правка</translation>
|
<translation>&Правка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>Показывать в &игре</translation>
|
<translation>Показывать в &игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>Ск&рыть в игре</translation>
|
<translation>Ск&рыть в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Экспорт</translation>
|
<translation>&Экспорт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>По&казать</translation>
|
<translation>По&казать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>У&далить</translation>
|
<translation>У&далить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Выделить</translation>
|
<translation>&Выделить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>Сн&ять выделение</translation>
|
<translation>Сн&ять выделение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>В&ыбрать все</translation>
|
<translation>В&ыбрать все</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>Снять выбо&р со всех</translation>
|
<translation>Снять выбо&р со всех</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2412,29 +2412,29 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>&Изменить игрока...</translation>
|
<translation>&Изменить игрока...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation>Изменить &Заголовок...</translation>
|
<translation>Изменить &Заголовок...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation>Изменить &банду...</translation>
|
<translation>Изменить &банду...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation>&Пометить как Аватар</translation>
|
<translation>&Пометить как Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2567,15 +2567,15 @@ Press 1 for Default View</source>
|
||||||
<translation>Пере&загрузить</translation>
|
<translation>Пере&загрузить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Показывать в игре</translation>
|
<translation>Показывать в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Скрыть в игре</translation>
|
<translation>Скрыть в игре</translation>
|
||||||
|
|
|
@ -398,7 +398,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Користувацький Аватар</translation>
|
<translation>Користувацький Аватар</translation>
|
||||||
|
@ -406,7 +406,7 @@ Pictures and Savegames</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Користувацьке Зображення</translation>
|
<translation>Користувацьке Зображення</translation>
|
||||||
|
@ -1063,37 +1063,37 @@ Y: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Експортувати як &зображення...</translation>
|
<translation>Експортувати як &зображення...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Експортувати як &Snapmatic...</translation>
|
<translation>Експортувати як &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>&Змінити властивості...</translation>
|
<translation>&Змінити властивості...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Перезаписати зображення...</translation>
|
<translation>&Перезаписати зображення...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Відкрити &карту...</translation>
|
<translation>Відкрити &карту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Відкрити редактор &JSON...</translation>
|
<translation>Відкрити редактор &JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1273,28 +1273,28 @@ Press 1 for Default View</source>
|
||||||
<translation>&Скасувати</translation>
|
<translation>&Скасувати</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation>Додати гравців...</translation>
|
<translation>Додати гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation>Не вдалося додати більше гравців, бо ліміт %1!</translation>
|
<translation>Не вдалося додати більше гравців, бо ліміт %1!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation>Додати гравця...</translation>
|
<translation>Додати гравця...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation>Введіть ID гравця Social Club</translation>
|
<translation>Введіть ID гравця Social Club</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation>Не вдалося додати гравця %1, оскільки %1 вже доданий!</translation>
|
<translation>Не вдалося додати гравця %1, оскільки %1 вже доданий!</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1346,23 +1346,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>Імпортування...</translation>
|
<translation>Імпортування...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1379,14 +1379,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Файли зображень (%1)</translation>
|
<translation>Файли зображень (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>Усі файли (**)</translation>
|
<translation>Усі файли (**)</translation>
|
||||||
|
@ -1394,14 +1394,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1411,58 +1411,58 @@ Press 1 for Default View</source>
|
||||||
<translation>Увімкнено фотографії:%1 з%2</translation>
|
<translation>Увімкнено фотографії:%1 з%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Завантаження...</translation>
|
<translation>Завантаження...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic Loader</translation>
|
<translation>Snapmatic Loader</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>Наступні Snapmatic зображення були відновлені</h4>%1</translation>
|
<translation><h4>Наступні Snapmatic зображення були відновлені</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>Імпортуються файли (%1)</translation>
|
<translation>Імпортуються файли (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>Файли збереження гри (SGTA*)</translation>
|
<translation>Файли збереження гри (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Snapmatic зображення (PGTA*)</translation>
|
<translation>Snapmatic зображення (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>Вибрані недійсні файли</translation>
|
<translation>Вибрані недійсні файли</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>Імпортується файл %1 з %2 файлів</translation>
|
<translation>Імпортується файл %1 з %2 файлів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1471,81 +1471,81 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>Не вдалося прочитати Snapmatic картинку</translation>
|
<translation>Не вдалося прочитати Snapmatic картинку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>Не вдалося прочитати файл збереження гри</translation>
|
<translation>Не вдалося прочитати файл збереження гри</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
|
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
|
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
|
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
|
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
|
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Експорт обраних...</translation>
|
<translation>Експорт обраних...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG картинки і GTA Snapmatic</translation>
|
<translation>JPG картинки і GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>Тільки JPG картинки</translation>
|
<translation>Тільки JPG картинки</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>Тільки GTA Snapmatic</translation>
|
<translation>Тільки GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1 Експортувати Snapmatic фотографії %2 <br><br> Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень<br>GTA Snapmatic дає змогу імпортувати зображення в гру<br><br>Експортувати як:</translation>
|
<translation>%1 Експортувати Snapmatic фотографії %2 <br><br> Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень<br>GTA Snapmatic дає змогу імпортувати зображення в гру<br><br>Експортувати як:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Ініціалізація експорту...</translation>
|
<translation>Ініціалізація експорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
|
@ -1554,45 +1554,45 @@ Press 1 for Default View</source>
|
||||||
%1</translation>
|
%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
|
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Видалити вибрані</translation>
|
<translation>Видалити вибрані</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
|
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
|
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>Не вибрано жодного Snapmatic зображення</translation>
|
<translation>Не вибрано жодного Snapmatic зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1602,91 +1602,91 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>Підготувати контент для імпорту ...</translation>
|
<translation>Підготувати контент для імпорту ...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
|
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Позначити як Аватар</translation>
|
<translation>Позначити як Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Вибір патчу...</translation>
|
<translation>Вибір патчу...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>Патч файлу %1 з %2 файлів</translation>
|
<translation>Патч файлу %1 з %2 файлів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Якість</translation>
|
<translation>Якість</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Зміна гравців...</translation>
|
<translation>Зміна гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Змінити гравців</translation>
|
<translation>Змінити гравців</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Зміна банди...</translation>
|
<translation>Зміна банди...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
|
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Змінити банду</translation>
|
<translation>Змінити банду</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Зміна назви...</translation>
|
<translation>Зміна назви...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
|
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>Змінити назву</translation>
|
<translation>Змінити назву</translation>
|
||||||
|
@ -1785,45 +1785,45 @@ Press 1 for Default View</source>
|
||||||
<translation>Видалити</translation>
|
<translation>Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Перегляд</translation>
|
<translation>&Перегляд</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Експорт</translation>
|
<translation>&Експорт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Видалення</translation>
|
<translation>&Видалення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Виділення</translation>
|
<translation>&Виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Зняти виділення</translation>
|
<translation>&Зняти виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Вибрати &усі</translation>
|
<translation>Вибрати &усі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Зняти виділення усіх</translation>
|
<translation>&Зняти виділення усіх</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2028,25 +2028,25 @@ Press 1 for Default View</source>
|
||||||
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
|
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>Snapmatic банда</translation>
|
<translation>Snapmatic банда</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>Нова Snapmatic банда:</translation>
|
<translation>Нова Snapmatic банда:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>Snapmatic назва</translation>
|
<translation>Snapmatic назва</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>Новий Snapmatic заголовок:</translation>
|
<translation>Новий Snapmatic заголовок:</translation>
|
||||||
|
@ -2221,62 +2221,62 @@ Press 1 for Default View</source>
|
||||||
<translation>Видалити</translation>
|
<translation>Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Редагува&ти</translation>
|
<translation>Редагува&ти</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>Показати &у грі</translation>
|
<translation>Показати &у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>Сховати &у грі</translation>
|
<translation>Сховати &у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Експортувати</translation>
|
<translation>&Експортувати</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Переглянути</translation>
|
<translation>&Переглянути</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Видалити</translation>
|
<translation>&Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Виділення</translation>
|
<translation>&Виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Зняти виділення</translation>
|
<translation>&Зняти виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Вибрати &усі</translation>
|
<translation>Вибрати &усі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>&Зняти виділення усіх</translation>
|
<translation>&Зняти виділення усіх</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2480,42 +2480,42 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation>Змінити &заголовок...</translation>
|
<translation>Змінити &заголовок...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation>Змінити &банду...</translation>
|
<translation>Змінити &банду...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation>Позначити як &аватар</translation>
|
<translation>Позначити як &аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>Змінити &гравців...</translation>
|
<translation>Змінити &гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>Показати у грі</translation>
|
<translation>Показати у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>Сховати у грі</translation>
|
<translation>Сховати у грі</translation>
|
||||||
|
|
|
@ -394,7 +394,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="216"/>
|
<location filename="../ImportDialog.cpp" line="216"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="744"/>
|
<location filename="../ProfileInterface.cpp" line="751"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>自訂大頭貼</translation>
|
<translation>自訂大頭貼</translation>
|
||||||
|
@ -402,7 +402,7 @@ Pictures and Savegames</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="262"/>
|
<location filename="../ImportDialog.cpp" line="262"/>
|
||||||
<location filename="../ImportDialog.cpp" line="748"/>
|
<location filename="../ImportDialog.cpp" line="748"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="760"/>
|
<location filename="../ProfileInterface.cpp" line="767"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>自訂圖片</translation>
|
<translation>自訂圖片</translation>
|
||||||
|
@ -1057,37 +1057,37 @@ Y: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="186"/>
|
<location filename="../PictureDialog.cpp" line="186"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1648"/>
|
<location filename="../ProfileInterface.cpp" line="1659"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>匯出成圖片(&P)...</translation>
|
<translation>匯出成圖片(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="187"/>
|
<location filename="../PictureDialog.cpp" line="187"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1660"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>匯出成 Snapmatic(&S)...</translation>
|
<translation>匯出成 Snapmatic(&S)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="189"/>
|
<location filename="../PictureDialog.cpp" line="189"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1642"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>編輯屬性(&E) ...</translation>
|
<translation>編輯屬性(&E) ...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="190"/>
|
<location filename="../PictureDialog.cpp" line="190"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1643"/>
|
<location filename="../ProfileInterface.cpp" line="1654"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>修改圖片(&O)...</translation>
|
<translation>修改圖片(&O)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="192"/>
|
<location filename="../PictureDialog.cpp" line="192"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1645"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>開啟地圖檢視器(&M)...</translation>
|
<translation>開啟地圖檢視器(&M)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="194"/>
|
<location filename="../PictureDialog.cpp" line="194"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1646"/>
|
<location filename="../ProfileInterface.cpp" line="1657"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>開啟 JSON 編輯器(&J)...</translation>
|
<translation>開啟 JSON 編輯器(&J)...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1267,28 +1267,28 @@ Press 1 for Default View</source>
|
||||||
<translation>取消(&C)</translation>
|
<translation>取消(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Add Players...</source>
|
<source>Add Players...</source>
|
||||||
<translation>新增玩家...</translation>
|
<translation>新增玩家...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="160"/>
|
<location filename="../PlayerListDialog.cpp" line="161"/>
|
||||||
<source>Failed to add more Players because the limit of Players are %1!</source>
|
<source>Failed to add more Players because the limit of Players are %1!</source>
|
||||||
<translation>因為數量限制 %1,無法新增更多玩家!</translation>
|
<translation>因為數量限制 %1,無法新增更多玩家!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Add Player...</source>
|
<source>Add Player...</source>
|
||||||
<translation>新增玩家...</translation>
|
<translation>新增玩家...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="176"/>
|
<location filename="../PlayerListDialog.cpp" line="177"/>
|
||||||
<source>Enter Social Club Player ID</source>
|
<source>Enter Social Club Player ID</source>
|
||||||
<translation>輸入玩家的 Social Club ID</translation>
|
<translation>輸入玩家的 Social Club ID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PlayerListDialog.cpp" line="195"/>
|
<location filename="../PlayerListDialog.cpp" line="196"/>
|
||||||
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
<source>Failed to add Player %1 because Player %1 is already added!</source>
|
||||||
<translation>新增 %1 失敗,因為 %1 已被新增!</translation>
|
<translation>新增 %1 失敗,因為 %1 已被新增!</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1340,23 +1340,23 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="523"/>
|
<location filename="../ImportDialog.cpp" line="523"/>
|
||||||
<location filename="../ImportDialog.cpp" line="833"/>
|
<location filename="../ImportDialog.cpp" line="833"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="537"/>
|
<location filename="../ProfileInterface.cpp" line="544"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="538"/>
|
<location filename="../ProfileInterface.cpp" line="545"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="597"/>
|
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1000"/>
|
<location filename="../ProfileInterface.cpp" line="1007"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Import...</source>
|
<source>Import...</source>
|
||||||
<translation>匯入...</translation>
|
<translation>匯入...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1373,14 +1373,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="533"/>
|
<location filename="../ImportDialog.cpp" line="533"/>
|
||||||
<location filename="../ImportDialog.cpp" line="843"/>
|
<location filename="../ImportDialog.cpp" line="843"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="555"/>
|
<location filename="../ProfileInterface.cpp" line="562"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>所有圖片 (%1)</translation>
|
<translation>所有圖片 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="534"/>
|
<location filename="../ImportDialog.cpp" line="534"/>
|
||||||
<location filename="../ImportDialog.cpp" line="844"/>
|
<location filename="../ImportDialog.cpp" line="844"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="556"/>
|
<location filename="../ProfileInterface.cpp" line="563"/>
|
||||||
<location filename="../UserInterface.cpp" line="590"/>
|
<location filename="../UserInterface.cpp" line="590"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
<translation>所有檔案 (**)</translation>
|
<translation>所有檔案 (**)</translation>
|
||||||
|
@ -1388,14 +1388,14 @@ Press 1 for Default View</source>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="551"/>
|
<location filename="../ImportDialog.cpp" line="551"/>
|
||||||
<location filename="../ImportDialog.cpp" line="861"/>
|
<location filename="../ImportDialog.cpp" line="861"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="804"/>
|
<location filename="../ProfileInterface.cpp" line="811"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="559"/>
|
<location filename="../ImportDialog.cpp" line="559"/>
|
||||||
<location filename="../ImportDialog.cpp" line="869"/>
|
<location filename="../ImportDialog.cpp" line="869"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="813"/>
|
<location filename="../ProfileInterface.cpp" line="820"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1405,184 +1405,184 @@ Press 1 for Default View</source>
|
||||||
<translation>開啟圖片 %1 共 %2</translation>
|
<translation>開啟圖片 %1 共 %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="183"/>
|
<location filename="../ProfileInterface.cpp" line="185"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>載入中...</translation>
|
<translation>載入中...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic 載入器</translation>
|
<translation>Snapmatic 載入器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="464"/>
|
<location filename="../ProfileInterface.cpp" line="471"/>
|
||||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||||
<translation><h4>下列的 Snapmatic 圖片已被更新</h4>%1</translation>
|
<translation><h4>下列的 Snapmatic 圖片已被更新</h4>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="551"/>
|
<location filename="../ProfileInterface.cpp" line="558"/>
|
||||||
<source>Importable files (%1)</source>
|
<source>Importable files (%1)</source>
|
||||||
<translation>可匯入的檔案 (%1)</translation>
|
<translation>可匯入的檔案 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="552"/>
|
<location filename="../ProfileInterface.cpp" line="559"/>
|
||||||
<location filename="../UserInterface.cpp" line="587"/>
|
<location filename="../UserInterface.cpp" line="587"/>
|
||||||
<source>GTA V Export (*.g5e)</source>
|
<source>GTA V Export (*.g5e)</source>
|
||||||
<translation>GTA V Export (*.g5e)</translation>
|
<translation>GTA V Export (*.g5e)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="560"/>
|
||||||
<location filename="../UserInterface.cpp" line="588"/>
|
<location filename="../UserInterface.cpp" line="588"/>
|
||||||
<source>Savegames files (SGTA*)</source>
|
<source>Savegames files (SGTA*)</source>
|
||||||
<translation>遊戲存檔 (SGTA*)</translation>
|
<translation>遊戲存檔 (SGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="554"/>
|
<location filename="../ProfileInterface.cpp" line="561"/>
|
||||||
<location filename="../UserInterface.cpp" line="589"/>
|
<location filename="../UserInterface.cpp" line="589"/>
|
||||||
<source>Snapmatic pictures (PGTA*)</source>
|
<source>Snapmatic pictures (PGTA*)</source>
|
||||||
<translation>Snapmatic 圖片 (PGTA*)</translation>
|
<translation>Snapmatic 圖片 (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="967"/>
|
<location filename="../ProfileInterface.cpp" line="974"/>
|
||||||
<location filename="../UserInterface.cpp" line="669"/>
|
<location filename="../UserInterface.cpp" line="669"/>
|
||||||
<source>No valid file is selected</source>
|
<source>No valid file is selected</source>
|
||||||
<translation>沒有選擇有效的檔案</translation>
|
<translation>沒有選擇有效的檔案</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="598"/>
|
<location filename="../ProfileInterface.cpp" line="605"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="614"/>
|
<location filename="../ProfileInterface.cpp" line="621"/>
|
||||||
<source>Import file %1 of %2 files</source>
|
<source>Import file %1 of %2 files</source>
|
||||||
<translation>匯入檔案 %1 共 %2 個</translation>
|
<translation>匯入檔案 %1 共 %2 個</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="627"/>
|
<location filename="../ProfileInterface.cpp" line="634"/>
|
||||||
<source>Import failed with...
|
<source>Import failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation>%1 匯入失敗</translation>
|
<translation>%1 匯入失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="669"/>
|
<location filename="../ProfileInterface.cpp" line="676"/>
|
||||||
<location filename="../UserInterface.cpp" line="625"/>
|
<location filename="../UserInterface.cpp" line="625"/>
|
||||||
<source>Failed to read Snapmatic picture</source>
|
<source>Failed to read Snapmatic picture</source>
|
||||||
<translation>無法讀取 Snapmatic 圖片</translation>
|
<translation>無法讀取 Snapmatic 圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="704"/>
|
<location filename="../ProfileInterface.cpp" line="711"/>
|
||||||
<location filename="../UserInterface.cpp" line="639"/>
|
<location filename="../UserInterface.cpp" line="639"/>
|
||||||
<source>Failed to read Savegame file</source>
|
<source>Failed to read Savegame file</source>
|
||||||
<translation>無法讀取遊戲存檔</translation>
|
<translation>無法讀取遊戲存檔</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="961"/>
|
<location filename="../ProfileInterface.cpp" line="968"/>
|
||||||
<source>Can't import %1 because file format can't be detected</source>
|
<source>Can't import %1 because file format can't be detected</source>
|
||||||
<translation>無法匯入 %1,因為無法檢測該檔案格式</translation>
|
<translation>無法匯入 %1,因為無法檢測該檔案格式</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1122"/>
|
<location filename="../ProfileInterface.cpp" line="1129"/>
|
||||||
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
|
||||||
<translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation>
|
<translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||||
<translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
|
<translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
<location filename="../ProfileInterface.cpp" line="1260"/>
|
||||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||||
<translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
|
<translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1255"/>
|
<location filename="../ProfileInterface.cpp" line="1266"/>
|
||||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||||
<translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
|
<translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1318"/>
|
<location filename="../ProfileInterface.cpp" line="1329"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1390"/>
|
<location filename="../ProfileInterface.cpp" line="1401"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>匯出所選...</translation>
|
<translation>匯出所選...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1338"/>
|
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1355"/>
|
<location filename="../ProfileInterface.cpp" line="1366"/>
|
||||||
<source>JPG pictures and GTA Snapmatic</source>
|
<source>JPG pictures and GTA Snapmatic</source>
|
||||||
<translation>JPG 圖片和 GTA Snapmatic</translation>
|
<translation>JPG 圖片和 GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1339"/>
|
<location filename="../ProfileInterface.cpp" line="1350"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1359"/>
|
<location filename="../ProfileInterface.cpp" line="1370"/>
|
||||||
<source>JPG pictures only</source>
|
<source>JPG pictures only</source>
|
||||||
<translation>只有 JPG 圖片</translation>
|
<translation>只有 JPG 圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1340"/>
|
<location filename="../ProfileInterface.cpp" line="1351"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1362"/>
|
<location filename="../ProfileInterface.cpp" line="1373"/>
|
||||||
<source>GTA Snapmatic only</source>
|
<source>GTA Snapmatic only</source>
|
||||||
<translation>只有 GTA Snapmatic</translation>
|
<translation>只有 GTA Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1353"/>
|
<location filename="../ProfileInterface.cpp" line="1364"/>
|
||||||
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
<source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
|
||||||
<translation>%1 匯出 Snapmatic 圖片 %2<br><br>JPG 圖片可使用圖片檢視器開啟<br>GTA Snapmatic 可以匯入到遊戲中<br><br>匯出成:</translation>
|
<translation>%1 匯出 Snapmatic 圖片 %2<br><br>JPG 圖片可使用圖片檢視器開啟<br>GTA Snapmatic 可以匯入到遊戲中<br><br>匯出成:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1391"/>
|
<location filename="../ProfileInterface.cpp" line="1402"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>初始化...</translation>
|
<translation>初始化...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1423"/>
|
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||||
<source>Export failed with...
|
<source>Export failed with...
|
||||||
|
|
||||||
%1</source>
|
%1</source>
|
||||||
<translation>%1 匯出失敗</translation>
|
<translation>%1 匯出失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1440"/>
|
<location filename="../ProfileInterface.cpp" line="1451"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||||
<translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
|
<translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
<location filename="../ProfileInterface.cpp" line="1486"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>移除所選</translation>
|
<translation>移除所選</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1447"/>
|
<location filename="../ProfileInterface.cpp" line="1458"/>
|
||||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||||
<translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
|
<translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
<location filename="../ProfileInterface.cpp" line="1481"/>
|
||||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||||
<translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
|
<translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation>未選擇 Snapmatic 圖片</translation>
|
<translation>未選擇 Snapmatic 圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>%1 failed with...
|
<source>%1 failed with...
|
||||||
|
|
||||||
%2</source>
|
%2</source>
|
||||||
|
@ -1592,91 +1592,91 @@ Press 1 for Default View</source>
|
||||||
%2</translation>
|
%2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1016"/>
|
<location filename="../ProfileInterface.cpp" line="1023"/>
|
||||||
<source>Prepare Content for Import...</source>
|
<source>Prepare Content for Import...</source>
|
||||||
<translation>準備匯入內容...</translation>
|
<translation>準備匯入內容...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
<location filename="../ProfileInterface.cpp" line="1135"/>
|
||||||
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
|
||||||
<translation>已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎?</translation>
|
<translation>已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2005"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>合格大頭貼</translation>
|
<translation>合格大頭貼</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2016"/>
|
<location filename="../ProfileInterface.cpp" line="2027"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2109"/>
|
<location filename="../ProfileInterface.cpp" line="2120"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2224"/>
|
<location filename="../ProfileInterface.cpp" line="2235"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2319"/>
|
<location filename="../ProfileInterface.cpp" line="2330"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>修改所選...</translation>
|
<translation>修改所選...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2028"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2035"/>
|
<location filename="../ProfileInterface.cpp" line="2046"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2110"/>
|
<location filename="../ProfileInterface.cpp" line="2121"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2128"/>
|
<location filename="../ProfileInterface.cpp" line="2139"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2225"/>
|
<location filename="../ProfileInterface.cpp" line="2236"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2243"/>
|
<location filename="../ProfileInterface.cpp" line="2254"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2320"/>
|
<location filename="../ProfileInterface.cpp" line="2331"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2338"/>
|
<location filename="../ProfileInterface.cpp" line="2349"/>
|
||||||
<source>Patch file %1 of %2 files</source>
|
<source>Patch file %1 of %2 files</source>
|
||||||
<translation>修改檔案 %1 共 %2 個檔案</translation>
|
<translation>修改檔案 %1 共 %2 個檔案</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2065"/>
|
<location filename="../ProfileInterface.cpp" line="2076"/>
|
||||||
<source>Qualify</source>
|
<source>Qualify</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>合格</translation>
|
<translation>合格</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2084"/>
|
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>更改玩家...</translation>
|
<translation>更改玩家...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2154"/>
|
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||||
<source>Change Players</source>
|
<source>Change Players</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>更改玩家</translation>
|
<translation>更改玩家</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2173"/>
|
<location filename="../ProfileInterface.cpp" line="2184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>更改幫會...</translation>
|
<translation>更改幫會...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2203"/>
|
<location filename="../ProfileInterface.cpp" line="2214"/>
|
||||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||||
<translation>輸入了無效的幫會 ID</translation>
|
<translation>輸入了無效的幫會 ID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2269"/>
|
<location filename="../ProfileInterface.cpp" line="2280"/>
|
||||||
<source>Change Crew</source>
|
<source>Change Crew</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>更改幫會</translation>
|
<translation>更改幫會</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2288"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>更改標題...</translation>
|
<translation>更改標題...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2302"/>
|
<location filename="../ProfileInterface.cpp" line="2313"/>
|
||||||
<source>Failed to enter a valid Snapmatic title</source>
|
<source>Failed to enter a valid Snapmatic title</source>
|
||||||
<translation>輸入了無效的標題</translation>
|
<translation>輸入了無效的標題</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2361"/>
|
<location filename="../ProfileInterface.cpp" line="2372"/>
|
||||||
<source>Change Title</source>
|
<source>Change Title</source>
|
||||||
<comment>%1 failed with...</comment>
|
<comment>%1 failed with...</comment>
|
||||||
<translation>更改標題</translation>
|
<translation>更改標題</translation>
|
||||||
|
@ -1767,45 +1767,45 @@ Press 1 for Default View</source>
|
||||||
<translation>刪除</translation>
|
<translation>刪除</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1716"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>檢視(&V)</translation>
|
<translation>檢視(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1692"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1717"/>
|
<location filename="../ProfileInterface.cpp" line="1728"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1747"/>
|
<location filename="../ProfileInterface.cpp" line="1758"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>匯出(&E)</translation>
|
<translation>匯出(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1682"/>
|
<location filename="../ProfileInterface.cpp" line="1693"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1718"/>
|
<location filename="../ProfileInterface.cpp" line="1729"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1748"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>移除(&R)</translation>
|
<translation>移除(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1721"/>
|
<location filename="../ProfileInterface.cpp" line="1732"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1751"/>
|
<location filename="../ProfileInterface.cpp" line="1762"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>選擇(&S)</translation>
|
<translation>選擇(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1724"/>
|
<location filename="../ProfileInterface.cpp" line="1735"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1753"/>
|
<location filename="../ProfileInterface.cpp" line="1764"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>取消選擇(&D)</translation>
|
<translation>取消選擇(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1727"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1756"/>
|
<location filename="../ProfileInterface.cpp" line="1767"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>選擇全部(&A)</translation>
|
<translation>選擇全部(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1730"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1759"/>
|
<location filename="../ProfileInterface.cpp" line="1770"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>取消選擇全部(&D)</translation>
|
<translation>取消選擇全部(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2010,25 +2010,25 @@ Press 1 for Default View</source>
|
||||||
<translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
|
<translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>Snapmatic Crew</source>
|
<source>Snapmatic Crew</source>
|
||||||
<translation>幫會</translation>
|
<translation>幫會</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2197"/>
|
<location filename="../ProfileInterface.cpp" line="2208"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
<location filename="../SnapmaticEditor.cpp" line="403"/>
|
||||||
<source>New Snapmatic crew:</source>
|
<source>New Snapmatic crew:</source>
|
||||||
<translation>輸入新的幫會:</translation>
|
<translation>輸入新的幫會:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>Snapmatic Title</source>
|
<source>Snapmatic Title</source>
|
||||||
<translation>標題</translation>
|
<translation>標題</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2299"/>
|
<location filename="../ProfileInterface.cpp" line="2310"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
<location filename="../SnapmaticEditor.cpp" line="379"/>
|
||||||
<source>New Snapmatic title:</source>
|
<source>New Snapmatic title:</source>
|
||||||
<translation>輸入新的標題:</translation>
|
<translation>輸入新的標題:</translation>
|
||||||
|
@ -2203,62 +2203,62 @@ Press 1 for Default View</source>
|
||||||
<translation>刪除</translation>
|
<translation>刪除</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1635"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1683"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1738"/>
|
<location filename="../ProfileInterface.cpp" line="1749"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>編輯(&E)</translation>
|
<translation>編輯(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1637"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1689"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1744"/>
|
<location filename="../ProfileInterface.cpp" line="1755"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>在遊戲中顯示(&I)</translation>
|
<translation>在遊戲中顯示(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1640"/>
|
<location filename="../ProfileInterface.cpp" line="1651"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1679"/>
|
<location filename="../ProfileInterface.cpp" line="1690"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1745"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>在遊戲中隱藏(&I)</translation>
|
<translation>在遊戲中隱藏(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1647"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>匯出(&E)</translation>
|
<translation>匯出(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>檢視(&V)</translation>
|
<translation>檢視(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1653"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>移除(&R)</translation>
|
<translation>移除(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1656"/>
|
<location filename="../ProfileInterface.cpp" line="1667"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1685"/>
|
<location filename="../ProfileInterface.cpp" line="1696"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>選擇(&S)</translation>
|
<translation>選擇(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1658"/>
|
<location filename="../ProfileInterface.cpp" line="1669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1688"/>
|
<location filename="../ProfileInterface.cpp" line="1699"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>取消選擇(&D)</translation>
|
<translation>取消選擇(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1661"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1691"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>選擇全部(&A)</translation>
|
<translation>選擇全部(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1664"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1694"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>&Deselect All</source>
|
<source>&Deselect All</source>
|
||||||
<translation>取消選擇全部(&D)</translation>
|
<translation>取消選擇全部(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2461,42 +2461,42 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="346"/>
|
<location filename="../UserInterface.ui" line="346"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1676"/>
|
<location filename="../ProfileInterface.cpp" line="1687"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1742"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>Change &Title...</source>
|
<source>Change &Title...</source>
|
||||||
<translation>更改標題(&T)...</translation>
|
<translation>更改標題(&T)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="354"/>
|
<location filename="../UserInterface.ui" line="354"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1686"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1741"/>
|
<location filename="../ProfileInterface.cpp" line="1752"/>
|
||||||
<source>Change &Crew...</source>
|
<source>Change &Crew...</source>
|
||||||
<translation>更改幫會(&C)...</translation>
|
<translation>更改幫會(&C)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="362"/>
|
<location filename="../UserInterface.ui" line="362"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1684"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1739"/>
|
<location filename="../ProfileInterface.cpp" line="1750"/>
|
||||||
<source>&Qualify as Avatar</source>
|
<source>&Qualify as Avatar</source>
|
||||||
<translation>符合大頭貼資格(&Q)</translation>
|
<translation>符合大頭貼資格(&Q)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UserInterface.ui" line="370"/>
|
<location filename="../UserInterface.ui" line="370"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1740"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>更改玩家(&P)...</translation>
|
<translation>更改玩家(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1572"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1594"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
<location filename="../SnapmaticWidget.cpp" line="328"/>
|
||||||
<source>Show In-game</source>
|
<source>Show In-game</source>
|
||||||
<translation>在遊戲中顯示</translation>
|
<translation>在遊戲中顯示</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1602"/>
|
|
||||||
<location filename="../ProfileInterface.cpp" line="1613"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
|
<location filename="../ProfileInterface.cpp" line="1624"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
<location filename="../SnapmaticWidget.cpp" line="322"/>
|
||||||
<source>Hide In-game</source>
|
<source>Hide In-game</source>
|
||||||
<translation>在遊戲中隱藏</translation>
|
<translation>在遊戲中隱藏</translation>
|
||||||
|
|
Loading…
Reference in a new issue