Feature: Auto-detect new files in Profile folder
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b47a0119a5
commit
268e8d3468
12 changed files with 1470 additions and 1393 deletions
|
@ -138,6 +138,9 @@ 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);
|
||||||
|
|
||||||
|
// Register Metatypes
|
||||||
|
qRegisterMetaType<QVector<QString>>();
|
||||||
|
|
||||||
setMouseTracking(true);
|
setMouseTracking(true);
|
||||||
installEventFilter(this);
|
installEventFilter(this);
|
||||||
}
|
}
|
||||||
|
@ -179,6 +182,7 @@ 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);
|
||||||
|
QObject::connect(profileLoader, SIGNAL(directoryScanned(QVector<QString>,QVector<QString>)), this, SLOT(directoryScanned(QVector<QString>,QVector<QString>)));
|
||||||
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*)));
|
||||||
|
@ -254,6 +258,63 @@ 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)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ProfileInterface::directoryChanged(const QString &path)
|
||||||
|
{
|
||||||
|
QDir dir(profileFolder);
|
||||||
|
QVector<QString> t_savegameFiles;
|
||||||
|
QVector<QString> t_snapmaticPics;
|
||||||
|
QVector<QString> n_savegameFiles;
|
||||||
|
QVector<QString> n_snapmaticPics;
|
||||||
|
const QStringList files = dir.entryList(QDir::Files);
|
||||||
|
for (const QString &fileName : files) {
|
||||||
|
if (fileName.startsWith("SGTA5") && !fileName.endsWith(".bak")) {
|
||||||
|
t_savegameFiles << fileName;
|
||||||
|
if (!savegameFiles.contains(fileName)) {
|
||||||
|
n_savegameFiles << fileName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (fileName.startsWith("PGTA5") && !fileName.endsWith(".bak")) {
|
||||||
|
t_snapmaticPics << fileName;
|
||||||
|
if (!snapmaticPics.contains(fileName)) {
|
||||||
|
n_snapmaticPics << fileName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
savegameFiles = t_savegameFiles;
|
||||||
|
snapmaticPics = t_snapmaticPics;
|
||||||
|
|
||||||
|
if (!n_savegameFiles.isEmpty() || !n_snapmaticPics.isEmpty()) {
|
||||||
|
QEventLoop loop;
|
||||||
|
QTimer::singleShot(1000, &loop, SLOT(quit()));
|
||||||
|
loop.exec();
|
||||||
|
|
||||||
|
for (const QString &fileName : qAsConst(n_savegameFiles)) {
|
||||||
|
const QString filePath = profileFolder % "/" % fileName;
|
||||||
|
SavegameData *savegame = new SavegameData(filePath);
|
||||||
|
if (savegame->readingSavegame())
|
||||||
|
savegameLoaded(savegame, filePath, true);
|
||||||
|
else
|
||||||
|
delete savegame;
|
||||||
|
}
|
||||||
|
for (const QString &fileName : qAsConst(n_snapmaticPics)) {
|
||||||
|
const QString filePath = profileFolder % "/" % fileName;
|
||||||
|
SnapmaticPicture *picture = new SnapmaticPicture(filePath);
|
||||||
|
if (picture->readingPicture(true))
|
||||||
|
pictureLoaded(picture, true);
|
||||||
|
else
|
||||||
|
delete picture;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ProfileInterface::directoryScanned(QVector<QString> savegameFiles_s, QVector<QString> snapmaticPics_s)
|
||||||
|
{
|
||||||
|
savegameFiles = savegameFiles_s;
|
||||||
|
snapmaticPics = snapmaticPics_s;
|
||||||
|
fileSystemWatcher.addPath(profileFolder);
|
||||||
|
QObject::connect(&fileSystemWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
|
||||||
|
}
|
||||||
|
|
||||||
void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
|
void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
|
||||||
{
|
{
|
||||||
ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(widget);
|
ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(widget);
|
||||||
|
@ -727,7 +788,8 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
||||||
spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
|
spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
|
||||||
#endif
|
#endif
|
||||||
picture->setSnapmaticProperties(spJson);
|
picture->setSnapmaticProperties(spJson);
|
||||||
picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid)));
|
const QString picFileName = QString("PGTA5%1").arg(QString::number(spJson.uid));
|
||||||
|
picture->setPicFileName(picFileName);
|
||||||
picture->setPictureTitle(customImageTitle);
|
picture->setPictureTitle(customImageTitle);
|
||||||
picture->updateStrings();
|
picture->updateStrings();
|
||||||
bool success = importSnapmaticPicture(picture, notMultiple);
|
bool success = importSnapmaticPicture(picture, notMultiple);
|
||||||
|
@ -784,7 +846,8 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
||||||
spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
|
spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
|
||||||
#endif
|
#endif
|
||||||
picture->setSnapmaticProperties(spJson);
|
picture->setSnapmaticProperties(spJson);
|
||||||
picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid)));
|
const QString picFileName = QString("PGTA5%1").arg(QString::number(spJson.uid));
|
||||||
|
picture->setPicFileName(picFileName);
|
||||||
picture->setPictureTitle(importDialog->getImageTitle());
|
picture->setPictureTitle(importDialog->getImageTitle());
|
||||||
picture->updateStrings();
|
picture->updateStrings();
|
||||||
success = importSnapmaticPicture(picture, notMultiple);
|
success = importSnapmaticPicture(picture, notMultiple);
|
||||||
|
@ -1028,7 +1091,8 @@ bool ProfileInterface::importImage(QImage *snapmaticImage, QDateTime importDateT
|
||||||
spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
|
spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
|
||||||
#endif
|
#endif
|
||||||
picture->setSnapmaticProperties(spJson);
|
picture->setSnapmaticProperties(spJson);
|
||||||
picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid)));
|
const QString picFileName = QString("PGTA5%1").arg(QString::number(spJson.uid));
|
||||||
|
picture->setPicFileName(picFileName);
|
||||||
picture->setPictureTitle(importDialog->getImageTitle());
|
picture->setPictureTitle(importDialog->getImageTitle());
|
||||||
picture->updateStrings();
|
picture->updateStrings();
|
||||||
success = importSnapmaticPicture(picture, true);
|
success = importSnapmaticPicture(picture, true);
|
||||||
|
@ -1142,6 +1206,7 @@ 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);
|
||||||
|
snapmaticPics << picture->getPictureFileName();
|
||||||
pictureLoaded(picture, true);
|
pictureLoaded(picture, true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1172,9 +1237,11 @@ bool ProfileInterface::importSavegameData(SavegameData *savegame, QString sgdPat
|
||||||
}
|
}
|
||||||
|
|
||||||
if (foundFree) {
|
if (foundFree) {
|
||||||
if (QFile::copy(sgdPath, profileFolder % "/" % sgdFileName)) {
|
const QString newSgdPath = profileFolder % "/" % sgdFileName;
|
||||||
savegame->setSavegameFileName(profileFolder % "/" % sgdFileName);
|
if (QFile::copy(sgdPath, newSgdPath)) {
|
||||||
savegameLoaded(savegame, profileFolder % "/" % sgdFileName, true);
|
savegame->setSavegameFileName(newSgdPath);
|
||||||
|
savegameFiles << newSgdPath;
|
||||||
|
savegameLoaded(savegame, newSgdPath, true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -2131,7 +2198,7 @@ preSelectionCrewID:
|
||||||
if (ok && !newCrew.isEmpty()) {
|
if (ok && !newCrew.isEmpty()) {
|
||||||
if (newCrew.contains(" ")) newCrew = newCrew.split(" ").at(0);
|
if (newCrew.contains(" ")) newCrew = newCrew.split(" ").at(0);
|
||||||
if (newCrew.length() > 10) return;
|
if (newCrew.length() > 10) return;
|
||||||
for (const QChar &crewChar : newCrew) {
|
for (const QChar &crewChar : qAsConst(newCrew)) {
|
||||||
if (!crewChar.isNumber()) {
|
if (!crewChar.isNumber()) {
|
||||||
QMessageBox::warning(this, tr("Change Crew..."), tr("Failed to enter a valid Snapmatic Crew ID"));
|
QMessageBox::warning(this, tr("Change Crew..."), tr("Failed to enter a valid Snapmatic Crew ID"));
|
||||||
goto preSelectionCrewID;
|
goto preSelectionCrewID;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* gta5view Grand Theft Auto V Profile Viewer
|
* gta5view Grand Theft Auto V Profile Viewer
|
||||||
* Copyright (C) 2016-2017 Syping
|
* Copyright (C) 2016-2021 Syping
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
#include "SavegameData.h"
|
#include "SavegameData.h"
|
||||||
#include "CrewDatabase.h"
|
#include "CrewDatabase.h"
|
||||||
#include "pcg_basic.h"
|
#include "pcg_basic.h"
|
||||||
|
#include <QFileSystemWatcher>
|
||||||
#include <QProgressDialog>
|
#include <QProgressDialog>
|
||||||
#include <QSpacerItem>
|
#include <QSpacerItem>
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
|
@ -89,6 +90,8 @@ 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);
|
||||||
|
void directoryChanged(const QString &path);
|
||||||
|
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool eventFilter(QObject *watched, QEvent *event);
|
bool eventFilter(QObject *watched, QEvent *event);
|
||||||
|
@ -104,6 +107,9 @@ private:
|
||||||
QList<SavegameData*> savegames;
|
QList<SavegameData*> savegames;
|
||||||
QList<SnapmaticPicture*> pictures;
|
QList<SnapmaticPicture*> pictures;
|
||||||
QMap<ProfileWidget*,QString> widgets;
|
QMap<ProfileWidget*,QString> widgets;
|
||||||
|
QFileSystemWatcher fileSystemWatcher;
|
||||||
|
QVector<QString> savegameFiles;
|
||||||
|
QVector<QString> snapmaticPics;
|
||||||
QSpacerItem *saSpacerItem;
|
QSpacerItem *saSpacerItem;
|
||||||
QStringList fixedPictures;
|
QStringList fixedPictures;
|
||||||
QString enabledPicStr;
|
QString enabledPicStr;
|
||||||
|
|
|
@ -81,6 +81,9 @@ void ProfileLoader::run()
|
||||||
closedir(dirp);
|
closedir(dirp);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Directory successfully scanned
|
||||||
|
emit directoryScanned(savegameFiles, snapmaticPics);
|
||||||
|
|
||||||
// Loading pictures and savegames
|
// Loading pictures and savegames
|
||||||
emit loadingProgress(curFile, maximumV);
|
emit loadingProgress(curFile, maximumV);
|
||||||
for (const QString &SavegameFile : qAsConst(savegameFiles)) {
|
for (const QString &SavegameFile : qAsConst(savegameFiles)) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* gta5view Grand Theft Auto V Profile Viewer
|
* gta5view Grand Theft Auto V Profile Viewer
|
||||||
* Copyright (C) 2016-2017 Syping
|
* Copyright (C) 2016-2021 Syping
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -48,6 +48,7 @@ signals:
|
||||||
void pictureFixed(SnapmaticPicture *picture);
|
void pictureFixed(SnapmaticPicture *picture);
|
||||||
void savegameLoaded(SavegameData *savegame, QString savegamePath);
|
void savegameLoaded(SavegameData *savegame, QString savegamePath);
|
||||||
void loadingProgress(int value, int maximum);
|
void loadingProgress(int value, int maximum);
|
||||||
|
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PROFILELOADER_H
|
#endif // PROFILELOADER_H
|
||||||
|
|
346
res/gta5sync.ts
346
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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<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="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<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="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<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="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<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="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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>
|
||||||
|
@ -2034,19 +2034,19 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2056,42 +2056,42 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<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="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<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="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<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="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<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="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<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="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>&JSON Editor öffnen...</translation>
|
<translation>&JSON Editor öffnen...</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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Lade...</translation>
|
<translation>Lade...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<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="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<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="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>A&nsehen</translation>
|
<translation>A&nsehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>Entfe&rnen</translation>
|
<translation>Entfe&rnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<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="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<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="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<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="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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>
|
||||||
|
@ -2094,61 +2094,61 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>FOTO - %1</translation>
|
<translation>FOTO - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>Datei öffnen %1</translation>
|
<translation>Datei öffnen %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>Header nicht existiert</translation>
|
<translation>Header nicht existiert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>Header fehlerhaft ist</translation>
|
<translation>Header fehlerhaft ist</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>Bild nicht existiert (%1)</translation>
|
<translation>Bild nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON nicht existiert (%1)</translation>
|
<translation>JSON nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>Titel nicht existiert (%1)</translation>
|
<translation>Titel nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>Beschreibung nicht existiert (%1)</translation>
|
<translation>Beschreibung nicht existiert (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>Datei lesen von %1 weil %2</translation>
|
<translation>Datei lesen von %1 weil %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON ist unvollständig und Fehlerhaft</translation>
|
<translation>JSON ist unvollständig und Fehlerhaft</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON ist unvollständig</translation>
|
<translation>JSON ist unvollständig</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON ist Fehlerhaft</translation>
|
<translation>JSON ist Fehlerhaft</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -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="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<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="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exportieren</translation>
|
<translation>&Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<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="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<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="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>A&nsehen</translation>
|
<translation>A&nsehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>Entfe&rnen</translation>
|
<translation>Entfe&rnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<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="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<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="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<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="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<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="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<source>No Snapmatic pictures are selected</source>
|
<source>No Snapmatic pictures are selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<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="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<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="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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>
|
||||||
|
@ -2038,61 +2038,61 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -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="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<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="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<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="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<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="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<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="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Ouvrir l'éditeur &JSON...</translation>
|
<translation>Ouvrir l'éditeur &JSON...</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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Chargement...</translation>
|
<translation>Chargement...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<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="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<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="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Voir</translation>
|
<translation>&Voir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Supprimer</translation>
|
<translation>&Supprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Sélectionner</translation>
|
<translation>&Sélectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Déselectionner</translation>
|
<translation>&Déselectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<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="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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>
|
||||||
|
@ -2102,61 +2102,61 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>PHOTO - %1</translation>
|
<translation>PHOTO - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>ouverture du fichier %1</translation>
|
<translation>ouverture du fichier %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>les headers n'existent pas</translation>
|
<translation>les headers n'existent pas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>les headers sont incorrects</translation>
|
<translation>les headers sont incorrects</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>l'image n'existe pas (%1)</translation>
|
<translation>l'image n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>le JSON n'existe pas (%1)</translation>
|
<translation>le JSON n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>le titre n'existe pas (%1)</translation>
|
<translation>le titre n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>la description n'existe pas (%1)</translation>
|
<translation>la description n'existe pas (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>lecture du fichier %1 : %2</translation>
|
<translation>lecture du fichier %1 : %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON incomplet ou incorrect</translation>
|
<translation>JSON incomplet ou incorrect</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON incomplet</translation>
|
<translation>JSON incomplet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON incorrect</translation>
|
<translation>JSON incorrect</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -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="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<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="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<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="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<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="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Exporter</translation>
|
<translation>&Exporter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Voir</translation>
|
<translation>&Voir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>S&upprimer</translation>
|
<translation>S&upprimer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Sélectionner</translation>
|
<translation>&Sélectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Déselectionner</translation>
|
<translation>&Déselectionner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<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="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>JSON 편집기 열기(&J)</translation>
|
<translation>JSON 편집기 열기(&J)</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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>불러오는 중...</translation>
|
<translation>불러오는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>스냅매틱 불러오기</translation>
|
<translation>스냅매틱 불러오기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>내보내기를 선택했습니다.</translation>
|
<translation>내보내기를 선택했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>내보내기를 초기화하는 중...</translation>
|
<translation>내보내기를 초기화하는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>선택한 항목 삭제</translation>
|
<translation>선택한 항목 삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>아바타 자격 부여</translation>
|
<translation>아바타 자격 부여</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>패치가 선택됨...</translation>
|
<translation>패치가 선택됨...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>플레이어 변경</translation>
|
<translation>플레이어 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>조직 변경</translation>
|
<translation>조직 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>제목 변경</translation>
|
<translation>제목 변경</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>보기(&V)</translation>
|
<translation>보기(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>내보내기(&E)</translation>
|
<translation>내보내기(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>삭제(&R)</translation>
|
<translation>삭제(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>선택(&S)</translation>
|
<translation>선택(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>선택 해제(&D)</translation>
|
<translation>선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>모두 선택(&A)</translation>
|
<translation>모두 선택(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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>
|
||||||
|
@ -2122,19 +2122,19 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON 파일이 불안정하거나 형식이 잘못되었습니다.</translation>
|
<translation>JSON 파일이 불안정하거나 형식이 잘못되었습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON 파일이 불안정합니다.</translation>
|
<translation>JSON 파일이 불안정합니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>잘못된 JSON 형식</translation>
|
<translation>잘못된 JSON 형식</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2144,42 +2144,42 @@ Press 1 for Default View</source>
|
||||||
<translation>사진 - %1</translation>
|
<translation>사진 - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>파일 열기 %1</translation>
|
<translation>파일 열기 %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>헤더가 존재하지 않습니다.</translation>
|
<translation>헤더가 존재하지 않습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>헤더의 형식이 잘못되었습니다.</translation>
|
<translation>헤더의 형식이 잘못되었습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>이미지가 존재하지 않습니다. (%1)</translation>
|
<translation>이미지가 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON 파일이 존재하지 않습니다. (%1)</translation>
|
<translation>JSON 파일이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>제목이 존재하지 않습니다. (%1)</translation>
|
<translation>제목이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>설명이 존재하지 않습니다. (%1)</translation>
|
<translation>설명이 존재하지 않습니다. (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translatorcomment>%2의 예: JSON이 잘못된 형식입니다</translatorcomment>
|
<translatorcomment>%2의 예: JSON이 잘못된 형식입니다</translatorcomment>
|
||||||
|
@ -2241,62 +2241,62 @@ Press 1 for Default View</source>
|
||||||
<translation>삭제</translation>
|
<translation>삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>편집(&T)</translation>
|
<translation>편집(&T)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<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="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<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="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>내보내기(&E)</translation>
|
<translation>내보내기(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>보기(&V)</translation>
|
<translation>보기(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>삭제(&R)</translation>
|
<translation>삭제(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>선택(&S)</translation>
|
<translation>선택(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>선택 해제(&D)</translation>
|
<translation>선택 해제(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>모두 선택(&A)</translation>
|
<translation>모두 선택(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>플레이어 변경(&P)</translation>
|
<translation>플레이어 변경(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Открыть &редактор JSON...</translation>
|
<translation>Открыть &редактор JSON...</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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Загрузка...</translation>
|
<translation>Загрузка...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Загрузчик Snapmatic</translation>
|
<translation>Загрузчик Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Подготовка к экспорту...</translation>
|
<translation>Подготовка к экспорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Снять выделение</translation>
|
<translation>Снять выделение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Пометить как Аватар</translation>
|
<translation>Пометить как Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<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="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Пропатчить выделенные...</translation>
|
<translation>Пропатчить выделенные...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Изменить игроков...</translation>
|
<translation>Изменить игроков...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Изменить банду...</translation>
|
<translation>Изменить банду...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Изменить заголовок...</translation>
|
<translation>Изменить заголовок...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Экпортировать выделенное...</translation>
|
<translation>Экпортировать выделенное...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Просмотр</translation>
|
<translation>&Просмотр</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Удалить</translation>
|
<translation>&Удалить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Выбрать</translation>
|
<translation>&Выбрать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>Сн&ять выбор</translation>
|
<translation>Сн&ять выбор</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>В&ыбрать все</translation>
|
<translation>В&ыбрать все</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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>
|
||||||
|
@ -2109,61 +2109,61 @@ Press 1 for Default View</source>
|
||||||
<translation>ФОТО - %1</translation>
|
<translation>ФОТО - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>Открыть файл %1</translation>
|
<translation>Открыть файл %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>Отсутствует шапка (header)</translation>
|
<translation>Отсутствует шапка (header)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>Шапка (header) повреждена</translation>
|
<translation>Шапка (header) повреждена</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>Картинки не существует (%1)</translation>
|
<translation>Картинки не существует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON не существует (%1)</translation>
|
<translation>JSON не существует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>Заголовок отсутствует (%1)</translation>
|
<translation>Заголовок отсутствует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>Описание отсутствует (%1)</translation>
|
<translation>Описание отсутствует (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>Чтение из файла %1 из-за %2</translation>
|
<translation>Чтение из файла %1 из-за %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON не полный и повреждён</translation>
|
<translation>JSON не полный и повреждён</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON частично отсутствует</translation>
|
<translation>JSON частично отсутствует</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON повреждён</translation>
|
<translation>JSON повреждён</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -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="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>&Правка</translation>
|
<translation>&Правка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>Показывать в &игре</translation>
|
<translation>Показывать в &игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>Ск&рыть в игре</translation>
|
<translation>Ск&рыть в игре</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Экспорт</translation>
|
<translation>&Экспорт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>По&казать</translation>
|
<translation>По&казать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>У&далить</translation>
|
<translation>У&далить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Выделить</translation>
|
<translation>&Выделить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>Сн&ять выделение</translation>
|
<translation>Сн&ять выделение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>В&ыбрать все</translation>
|
<translation>В&ыбрать все</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Відкрити редактор &JSON...</translation>
|
<translation>Відкрити редактор &JSON...</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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>Завантаження...</translation>
|
<translation>Завантаження...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>Експорт обраних...</translation>
|
<translation>Експорт обраних...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>Ініціалізація експорту...</translation>
|
<translation>Ініціалізація експорту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>Видалити вибрані</translation>
|
<translation>Видалити вибрані</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>Позначити як Аватар</translation>
|
<translation>Позначити як Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>Вибір патчу...</translation>
|
<translation>Вибір патчу...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>Зміна гравців...</translation>
|
<translation>Зміна гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>Зміна банди...</translation>
|
<translation>Зміна банди...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>Зміна назви...</translation>
|
<translation>Зміна назви...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Перегляд</translation>
|
<translation>&Перегляд</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Експорт</translation>
|
<translation>&Експорт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Видалення</translation>
|
<translation>&Видалення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Виділення</translation>
|
<translation>&Виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Зняти виділення</translation>
|
<translation>&Зняти виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Вибрати &усі</translation>
|
<translation>Вибрати &усі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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>
|
||||||
|
@ -2103,19 +2103,19 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON неповний та неправильний</translation>
|
<translation>JSON неповний та неправильний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON неповний</translation>
|
<translation>JSON неповний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON неправильний</translation>
|
<translation>JSON неправильний</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2125,42 +2125,42 @@ Press 1 for Default View</source>
|
||||||
<translation>ФОТО - %1</translation>
|
<translation>ФОТО - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>відкрити файл%1</translation>
|
<translation>відкрити файл%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>заголовок не існує</translation>
|
<translation>заголовок не існує</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>заголовок неправильний</translation>
|
<translation>заголовок неправильний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>зображення не існує (%1)</translation>
|
<translation>зображення не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON не існує (%1)</translation>
|
<translation>JSON не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>заголовок не існує (%1)</translation>
|
<translation>заголовок не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>опис не існує (%1)</translation>
|
<translation>опис не існує (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>читання файлу %1 тому що %2</translation>
|
<translation>читання файлу %1 тому що %2</translation>
|
||||||
|
@ -2221,62 +2221,62 @@ Press 1 for Default View</source>
|
||||||
<translation>Видалити</translation>
|
<translation>Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>Редагува&ти</translation>
|
<translation>Редагува&ти</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<source>Show &In-game</source>
|
<source>Show &In-game</source>
|
||||||
<translation>Показати &у грі</translation>
|
<translation>Показати &у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<source>Hide &In-game</source>
|
<source>Hide &In-game</source>
|
||||||
<translation>Сховати &у грі</translation>
|
<translation>Сховати &у грі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>&Експортувати</translation>
|
<translation>&Експортувати</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>&Переглянути</translation>
|
<translation>&Переглянути</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>&Видалити</translation>
|
<translation>&Видалити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>&Виділення</translation>
|
<translation>&Виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>&Зняти виділення</translation>
|
<translation>&Зняти виділення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>Вибрати &усі</translation>
|
<translation>Вибрати &усі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>Змінити &гравців...</translation>
|
<translation>Змінити &гравців...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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="683"/>
|
<location filename="../ProfileInterface.cpp" line="744"/>
|
||||||
<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="699"/>
|
<location filename="../ProfileInterface.cpp" line="760"/>
|
||||||
<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="1581"/>
|
<location filename="../ProfileInterface.cpp" line="1648"/>
|
||||||
<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="1582"/>
|
<location filename="../ProfileInterface.cpp" line="1649"/>
|
||||||
<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="1575"/>
|
<location filename="../ProfileInterface.cpp" line="1642"/>
|
||||||
<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="1576"/>
|
<location filename="../ProfileInterface.cpp" line="1643"/>
|
||||||
<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="1578"/>
|
<location filename="../ProfileInterface.cpp" line="1645"/>
|
||||||
<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="1579"/>
|
<location filename="../ProfileInterface.cpp" line="1646"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>開啟 JSON 編輯器(&J)...</translation>
|
<translation>開啟 JSON 編輯器(&J)...</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="476"/>
|
<location filename="../ProfileInterface.cpp" line="537"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="538"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="536"/>
|
<location filename="../ProfileInterface.cpp" line="597"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="937"/>
|
<location filename="../ProfileInterface.cpp" line="1000"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="494"/>
|
<location filename="../ProfileInterface.cpp" line="555"/>
|
||||||
<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="495"/>
|
<location filename="../ProfileInterface.cpp" line="556"/>
|
||||||
<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="742"/>
|
<location filename="../ProfileInterface.cpp" line="804"/>
|
||||||
<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="751"/>
|
<location filename="../ProfileInterface.cpp" line="813"/>
|
||||||
<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="180"/>
|
<location filename="../ProfileInterface.cpp" line="183"/>
|
||||||
<source>Loading...</source>
|
<source>Loading...</source>
|
||||||
<translation>載入中...</translation>
|
<translation>載入中...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<source>Snapmatic Loader</source>
|
<source>Snapmatic Loader</source>
|
||||||
<translation>Snapmatic 載入器</translation>
|
<translation>Snapmatic 載入器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="403"/>
|
<location filename="../ProfileInterface.cpp" line="464"/>
|
||||||
<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="490"/>
|
<location filename="../ProfileInterface.cpp" line="551"/>
|
||||||
<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="491"/>
|
<location filename="../ProfileInterface.cpp" line="552"/>
|
||||||
<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="492"/>
|
<location filename="../ProfileInterface.cpp" line="553"/>
|
||||||
<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="493"/>
|
<location filename="../ProfileInterface.cpp" line="554"/>
|
||||||
<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="515"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="904"/>
|
<location filename="../ProfileInterface.cpp" line="967"/>
|
||||||
<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="537"/>
|
<location filename="../ProfileInterface.cpp" line="598"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="553"/>
|
<location filename="../ProfileInterface.cpp" line="614"/>
|
||||||
<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="566"/>
|
<location filename="../ProfileInterface.cpp" line="627"/>
|
||||||
<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="608"/>
|
<location filename="../ProfileInterface.cpp" line="669"/>
|
||||||
<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="643"/>
|
<location filename="../ProfileInterface.cpp" line="704"/>
|
||||||
<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="898"/>
|
<location filename="../ProfileInterface.cpp" line="961"/>
|
||||||
<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="1058"/>
|
<location filename="../ProfileInterface.cpp" line="1122"/>
|
||||||
<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="1150"/>
|
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||||
<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="1182"/>
|
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||||
<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="1188"/>
|
<location filename="../ProfileInterface.cpp" line="1255"/>
|
||||||
<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="1251"/>
|
<location filename="../ProfileInterface.cpp" line="1318"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1323"/>
|
<location filename="../ProfileInterface.cpp" line="1390"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<source>Export selected...</source>
|
<source>Export selected...</source>
|
||||||
<translation>匯出所選...</translation>
|
<translation>匯出所選...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1271"/>
|
<location filename="../ProfileInterface.cpp" line="1338"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1288"/>
|
<location filename="../ProfileInterface.cpp" line="1355"/>
|
||||||
<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="1272"/>
|
<location filename="../ProfileInterface.cpp" line="1339"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
<location filename="../ProfileInterface.cpp" line="1359"/>
|
||||||
<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="1273"/>
|
<location filename="../ProfileInterface.cpp" line="1340"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1295"/>
|
<location filename="../ProfileInterface.cpp" line="1362"/>
|
||||||
<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="1286"/>
|
<location filename="../ProfileInterface.cpp" line="1353"/>
|
||||||
<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="1324"/>
|
<location filename="../ProfileInterface.cpp" line="1391"/>
|
||||||
<source>Initialising export...</source>
|
<source>Initialising export...</source>
|
||||||
<translation>初始化...</translation>
|
<translation>初始化...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1356"/>
|
<location filename="../ProfileInterface.cpp" line="1423"/>
|
||||||
<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="1373"/>
|
<location filename="../ProfileInterface.cpp" line="1440"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<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="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1408"/>
|
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||||
<source>Remove selected</source>
|
<source>Remove selected</source>
|
||||||
<translation>移除所選</translation>
|
<translation>移除所選</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1380"/>
|
<location filename="../ProfileInterface.cpp" line="1447"/>
|
||||||
<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="1403"/>
|
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||||
<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="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<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="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="953"/>
|
<location filename="../ProfileInterface.cpp" line="1016"/>
|
||||||
<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="1064"/>
|
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||||
<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="1938"/>
|
<location filename="../ProfileInterface.cpp" line="2005"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<source>Qualify as Avatar</source>
|
<source>Qualify as Avatar</source>
|
||||||
<translation>合格大頭貼</translation>
|
<translation>合格大頭貼</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1949"/>
|
<location filename="../ProfileInterface.cpp" line="2016"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2042"/>
|
<location filename="../ProfileInterface.cpp" line="2109"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2157"/>
|
<location filename="../ProfileInterface.cpp" line="2224"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2252"/>
|
<location filename="../ProfileInterface.cpp" line="2319"/>
|
||||||
<source>Patch selected...</source>
|
<source>Patch selected...</source>
|
||||||
<translation>修改所選...</translation>
|
<translation>修改所選...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1950"/>
|
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
<location filename="../ProfileInterface.cpp" line="2035"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
<location filename="../ProfileInterface.cpp" line="2110"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2061"/>
|
<location filename="../ProfileInterface.cpp" line="2128"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2158"/>
|
<location filename="../ProfileInterface.cpp" line="2225"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
<location filename="../ProfileInterface.cpp" line="2243"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2253"/>
|
<location filename="../ProfileInterface.cpp" line="2320"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2271"/>
|
<location filename="../ProfileInterface.cpp" line="2338"/>
|
||||||
<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="1998"/>
|
<location filename="../ProfileInterface.cpp" line="2065"/>
|
||||||
<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="2017"/>
|
<location filename="../ProfileInterface.cpp" line="2084"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<source>Change Players...</source>
|
<source>Change Players...</source>
|
||||||
<translation>更改玩家...</translation>
|
<translation>更改玩家...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2087"/>
|
<location filename="../ProfileInterface.cpp" line="2154"/>
|
||||||
<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="2106"/>
|
<location filename="../ProfileInterface.cpp" line="2173"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<source>Change Crew...</source>
|
<source>Change Crew...</source>
|
||||||
<translation>更改幫會...</translation>
|
<translation>更改幫會...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2136"/>
|
<location filename="../ProfileInterface.cpp" line="2203"/>
|
||||||
<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="2202"/>
|
<location filename="../ProfileInterface.cpp" line="2269"/>
|
||||||
<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="2221"/>
|
<location filename="../ProfileInterface.cpp" line="2288"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<source>Change Title...</source>
|
<source>Change Title...</source>
|
||||||
<translation>更改標題...</translation>
|
<translation>更改標題...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="2235"/>
|
<location filename="../ProfileInterface.cpp" line="2302"/>
|
||||||
<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="2294"/>
|
<location filename="../ProfileInterface.cpp" line="2361"/>
|
||||||
<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="1649"/>
|
<location filename="../ProfileInterface.cpp" line="1716"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>檢視(&V)</translation>
|
<translation>檢視(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1614"/>
|
<location filename="../ProfileInterface.cpp" line="1681"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1650"/>
|
<location filename="../ProfileInterface.cpp" line="1717"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1680"/>
|
<location filename="../ProfileInterface.cpp" line="1747"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>匯出(&E)</translation>
|
<translation>匯出(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1615"/>
|
<location filename="../ProfileInterface.cpp" line="1682"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1651"/>
|
<location filename="../ProfileInterface.cpp" line="1718"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1681"/>
|
<location filename="../ProfileInterface.cpp" line="1748"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>移除(&R)</translation>
|
<translation>移除(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1654"/>
|
<location filename="../ProfileInterface.cpp" line="1721"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1684"/>
|
<location filename="../ProfileInterface.cpp" line="1751"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>選擇(&S)</translation>
|
<translation>選擇(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1657"/>
|
<location filename="../ProfileInterface.cpp" line="1724"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1686"/>
|
<location filename="../ProfileInterface.cpp" line="1753"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>取消選擇(&D)</translation>
|
<translation>取消選擇(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1660"/>
|
<location filename="../ProfileInterface.cpp" line="1727"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1689"/>
|
<location filename="../ProfileInterface.cpp" line="1756"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>選擇全部(&A)</translation>
|
<translation>選擇全部(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1663"/>
|
<location filename="../ProfileInterface.cpp" line="1730"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1692"/>
|
<location filename="../ProfileInterface.cpp" line="1759"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2130"/>
|
<location filename="../ProfileInterface.cpp" line="2197"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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="2232"/>
|
<location filename="../ProfileInterface.cpp" line="2299"/>
|
||||||
<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>
|
||||||
|
@ -2085,19 +2085,19 @@ Press 1 for Default View</source>
|
||||||
<name>SnapmaticPicture</name>
|
<name>SnapmaticPicture</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
<location filename="../JsonEditorDialog.cpp" line="165"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="336"/>
|
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
||||||
<source>JSON is incomplete and malformed</source>
|
<source>JSON is incomplete and malformed</source>
|
||||||
<translation>JSON 不完整和異常</translation>
|
<translation>JSON 不完整和異常</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
<location filename="../JsonEditorDialog.cpp" line="168"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="339"/>
|
<location filename="../SnapmaticPicture.cpp" line="347"/>
|
||||||
<source>JSON is incomplete</source>
|
<source>JSON is incomplete</source>
|
||||||
<translation>JSON 不完整</translation>
|
<translation>JSON 不完整</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
<location filename="../JsonEditorDialog.cpp" line="171"/>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="342"/>
|
<location filename="../SnapmaticPicture.cpp" line="350"/>
|
||||||
<source>JSON is malformed</source>
|
<source>JSON is malformed</source>
|
||||||
<translation>JSON 異常</translation>
|
<translation>JSON 異常</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2107,42 +2107,42 @@ Press 1 for Default View</source>
|
||||||
<translation>照片 - %1</translation>
|
<translation>照片 - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="306"/>
|
<location filename="../SnapmaticPicture.cpp" line="314"/>
|
||||||
<source>open file %1</source>
|
<source>open file %1</source>
|
||||||
<translation>開啟檔案 - %1</translation>
|
<translation>開啟檔案 - %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="318"/>
|
<location filename="../SnapmaticPicture.cpp" line="326"/>
|
||||||
<source>header not exists</source>
|
<source>header not exists</source>
|
||||||
<translation>標頭不存在</translation>
|
<translation>標頭不存在</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="321"/>
|
<location filename="../SnapmaticPicture.cpp" line="329"/>
|
||||||
<source>header is malformed</source>
|
<source>header is malformed</source>
|
||||||
<translation>標頭異常</translation>
|
<translation>標頭異常</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="324"/>
|
<location filename="../SnapmaticPicture.cpp" line="332"/>
|
||||||
<source>picture not exists (%1)</source>
|
<source>picture not exists (%1)</source>
|
||||||
<translation>圖片不存在 (%1)</translation>
|
<translation>圖片不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="327"/>
|
<location filename="../SnapmaticPicture.cpp" line="335"/>
|
||||||
<source>JSON not exists (%1)</source>
|
<source>JSON not exists (%1)</source>
|
||||||
<translation>JSON 不存在 (%1)</translation>
|
<translation>JSON 不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="330"/>
|
<location filename="../SnapmaticPicture.cpp" line="338"/>
|
||||||
<source>title not exists (%1)</source>
|
<source>title not exists (%1)</source>
|
||||||
<translation>標題不存在 (%1)</translation>
|
<translation>標題不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="333"/>
|
<location filename="../SnapmaticPicture.cpp" line="341"/>
|
||||||
<source>description not exists (%1)</source>
|
<source>description not exists (%1)</source>
|
||||||
<translation>描述不存在 (%1)</translation>
|
<translation>描述不存在 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticPicture.cpp" line="344"/>
|
<location filename="../SnapmaticPicture.cpp" line="352"/>
|
||||||
<source>reading file %1 because of %2</source>
|
<source>reading file %1 because of %2</source>
|
||||||
<comment>Example for %2: JSON is malformed error</comment>
|
<comment>Example for %2: JSON is malformed error</comment>
|
||||||
<translation>讀取檔案 %1 失敗,因為 %2</translation>
|
<translation>讀取檔案 %1 失敗,因為 %2</translation>
|
||||||
|
@ -2203,62 +2203,62 @@ Press 1 for Default View</source>
|
||||||
<translation>刪除</translation>
|
<translation>刪除</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1568"/>
|
<location filename="../ProfileInterface.cpp" line="1635"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1605"/>
|
<location filename="../ProfileInterface.cpp" line="1672"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1671"/>
|
<location filename="../ProfileInterface.cpp" line="1738"/>
|
||||||
<source>Edi&t</source>
|
<source>Edi&t</source>
|
||||||
<translation>編輯(&E)</translation>
|
<translation>編輯(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1570"/>
|
<location filename="../ProfileInterface.cpp" line="1637"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1611"/>
|
<location filename="../ProfileInterface.cpp" line="1678"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1677"/>
|
<location filename="../ProfileInterface.cpp" line="1744"/>
|
||||||
<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="1573"/>
|
<location filename="../ProfileInterface.cpp" line="1640"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1612"/>
|
<location filename="../ProfileInterface.cpp" line="1679"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1678"/>
|
<location filename="../ProfileInterface.cpp" line="1745"/>
|
||||||
<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="1580"/>
|
<location filename="../ProfileInterface.cpp" line="1647"/>
|
||||||
<source>&Export</source>
|
<source>&Export</source>
|
||||||
<translation>匯出(&E)</translation>
|
<translation>匯出(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1583"/>
|
<location filename="../ProfileInterface.cpp" line="1650"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation>檢視(&V)</translation>
|
<translation>檢視(&V)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1586"/>
|
<location filename="../ProfileInterface.cpp" line="1653"/>
|
||||||
<source>&Remove</source>
|
<source>&Remove</source>
|
||||||
<translation>移除(&R)</translation>
|
<translation>移除(&R)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1589"/>
|
<location filename="../ProfileInterface.cpp" line="1656"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1618"/>
|
<location filename="../ProfileInterface.cpp" line="1685"/>
|
||||||
<source>&Select</source>
|
<source>&Select</source>
|
||||||
<translation>選擇(&S)</translation>
|
<translation>選擇(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1591"/>
|
<location filename="../ProfileInterface.cpp" line="1658"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1621"/>
|
<location filename="../ProfileInterface.cpp" line="1688"/>
|
||||||
<source>&Deselect</source>
|
<source>&Deselect</source>
|
||||||
<translation>取消選擇(&D)</translation>
|
<translation>取消選擇(&D)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1594"/>
|
<location filename="../ProfileInterface.cpp" line="1661"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1624"/>
|
<location filename="../ProfileInterface.cpp" line="1691"/>
|
||||||
<source>Select &All</source>
|
<source>Select &All</source>
|
||||||
<translation>選擇全部(&A)</translation>
|
<translation>選擇全部(&A)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1597"/>
|
<location filename="../ProfileInterface.cpp" line="1664"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1627"/>
|
<location filename="../ProfileInterface.cpp" line="1694"/>
|
||||||
<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="1609"/>
|
<location filename="../ProfileInterface.cpp" line="1676"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1675"/>
|
<location filename="../ProfileInterface.cpp" line="1742"/>
|
||||||
<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="1608"/>
|
<location filename="../ProfileInterface.cpp" line="1675"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1674"/>
|
<location filename="../ProfileInterface.cpp" line="1741"/>
|
||||||
<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="1606"/>
|
<location filename="../ProfileInterface.cpp" line="1673"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1672"/>
|
<location filename="../ProfileInterface.cpp" line="1739"/>
|
||||||
<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="1607"/>
|
<location filename="../ProfileInterface.cpp" line="1674"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1673"/>
|
<location filename="../ProfileInterface.cpp" line="1740"/>
|
||||||
<source>Change &Players...</source>
|
<source>Change &Players...</source>
|
||||||
<translation>更改玩家(&P)...</translation>
|
<translation>更改玩家(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
<location filename="../ProfileInterface.cpp" line="1572"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
<location filename="../ProfileInterface.cpp" line="1583"/>
|
||||||
<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="1535"/>
|
<location filename="../ProfileInterface.cpp" line="1602"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
<location filename="../ProfileInterface.cpp" line="1613"/>
|
||||||
<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