added the ability to import duplicates
This commit is contained in:
parent
9ced2253fc
commit
c29cc44717
17 changed files with 928 additions and 854 deletions
|
@ -183,6 +183,7 @@ bool JsonEditorDialog::saveJsonContent()
|
|||
return false;
|
||||
}
|
||||
jsonCode = newCode;
|
||||
smpic->updateStrings();
|
||||
smpic->emitUpdate();
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -480,7 +480,7 @@ fileDialogPreOpen: //Work?
|
|||
fileDialog.setOption(QFileDialog::DontUseNativeDialog, dontUseNativeDialog);
|
||||
fileDialog.setWindowFlags(fileDialog.windowFlags()^Qt::WindowContextHelpButtonHint);
|
||||
fileDialog.setWindowTitle(tr("Import..."));
|
||||
fileDialog.setLabelText(QFileDialog::Accept, tr("Import"));
|
||||
fileDialog.setLabelText(QFileDialog::Accept, tr("Import..."));
|
||||
|
||||
// Getting readable Image formats
|
||||
QString imageFormatsStr = " ";
|
||||
|
@ -524,7 +524,7 @@ fileDialogPreOpen: //Work?
|
|||
}
|
||||
else
|
||||
{
|
||||
QMessageBox::warning(this, tr("Import"), tr("No valid file is selected"));
|
||||
QMessageBox::warning(this, tr("Import..."), tr("No valid file is selected"));
|
||||
goto fileDialogPreOpen; //Work?
|
||||
}
|
||||
}
|
||||
|
@ -579,7 +579,7 @@ bool ProfileInterface::importFilesProgress(QStringList selectedFiles)
|
|||
if (errorStr != "")
|
||||
{
|
||||
errorStr.remove(0, 2);
|
||||
QMessageBox::warning(this, tr("Import"), tr("Import failed with...\n\n%1").arg(errorStr));
|
||||
QMessageBox::warning(this, tr("Import..."), tr("Import failed with...\n\n%1").arg(errorStr));
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
@ -601,7 +601,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
|||
}
|
||||
else
|
||||
{
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("Failed to read Snapmatic picture"));
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("Failed to read Snapmatic picture"));
|
||||
delete picture;
|
||||
return false;
|
||||
}
|
||||
|
@ -617,7 +617,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
|||
}
|
||||
else
|
||||
{
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("Failed to read Savegame file"));
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("Failed to read Savegame file"));
|
||||
delete savegame;
|
||||
return false;
|
||||
}
|
||||
|
@ -722,7 +722,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
|||
QFile snapmaticFile(selectedFile);
|
||||
if (!snapmaticFile.open(QFile::ReadOnly))
|
||||
{
|
||||
QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file can't be open").arg("\""+selectedFileName+"\""));
|
||||
QMessageBox::warning(this, tr("Import..."), tr("Can't import %1 because file can't be open").arg("\""+selectedFileName+"\""));
|
||||
delete picture;
|
||||
return false;
|
||||
}
|
||||
|
@ -732,7 +732,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
|||
snapmaticImageReader.setDevice(&snapmaticFile);
|
||||
if (!snapmaticImageReader.read(snapmaticImage))
|
||||
{
|
||||
QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\""));
|
||||
QMessageBox::warning(this, tr("Import..."), tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\""));
|
||||
delete snapmaticImage;
|
||||
delete picture;
|
||||
return false;
|
||||
|
@ -811,12 +811,12 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
|
|||
#endif
|
||||
delete picture;
|
||||
delete savegame;
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file format can't be detected").arg("\""+selectedFileName+"\""));
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("Can't import %1 because file format can't be detected").arg("\""+selectedFileName+"\""));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("No valid file is selected"));
|
||||
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("No valid file is selected"));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -976,15 +976,86 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
|
|||
QString adjustedFileName = picture->getOriginalPictureFileName();
|
||||
if (picFileName.left(4) != "PGTA")
|
||||
{
|
||||
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e"));
|
||||
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e"));
|
||||
return false;
|
||||
}
|
||||
else if (QFile::exists(profileFolder % "/" % adjustedFileName) || QFile::exists(profileFolder % "/" % adjustedFileName % ".hidden"))
|
||||
{
|
||||
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Snapmatic picture, the picture is already in the game"));
|
||||
return false;
|
||||
SnapmaticProperties snapmaticProperties = picture->getSnapmaticProperties();
|
||||
if (warn)
|
||||
{
|
||||
int uchoice = QMessageBox::question(this, tr("Import..."), tr("A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?").arg(QString::number(snapmaticProperties.uid)), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
||||
if (uchoice == QMessageBox::Yes)
|
||||
{
|
||||
// Update Snapmatic uid
|
||||
snapmaticProperties.uid = getRandomUid();
|
||||
snapmaticProperties.createdDateTime = QDateTime::currentDateTime();
|
||||
snapmaticProperties.createdTimestamp = snapmaticProperties.createdDateTime.toTime_t();
|
||||
bool fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
|
||||
bool fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
|
||||
bool fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
|
||||
int cEnough = 0;
|
||||
while ((fExists || fExistsBackup || fExistsHidden) && cEnough < findRetryLimit)
|
||||
{
|
||||
snapmaticProperties.uid = getRandomUid();
|
||||
fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
|
||||
fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
|
||||
fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
|
||||
cEnough++;
|
||||
}
|
||||
if (fExists || fExistsBackup || fExistsHidden)
|
||||
{
|
||||
// That should never happen
|
||||
return false;
|
||||
}
|
||||
if (!picture->setSnapmaticProperties(snapmaticProperties))
|
||||
{
|
||||
// That should never happen
|
||||
return false;
|
||||
}
|
||||
picture->updateStrings();
|
||||
picFileName = picture->getPictureFileName();
|
||||
adjustedFileName = picture->getOriginalPictureFileName();
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Update Snapmatic uid
|
||||
snapmaticProperties.uid = getRandomUid();
|
||||
snapmaticProperties.createdDateTime = QDateTime::currentDateTime();
|
||||
snapmaticProperties.createdTimestamp = snapmaticProperties.createdDateTime.toTime_t();
|
||||
bool fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
|
||||
bool fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
|
||||
bool fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
|
||||
int cEnough = 0;
|
||||
while ((fExists || fExistsBackup || fExistsHidden) && cEnough < findRetryLimit)
|
||||
{
|
||||
snapmaticProperties.uid = getRandomUid();
|
||||
fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
|
||||
fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
|
||||
fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
|
||||
cEnough++;
|
||||
}
|
||||
if (fExists || fExistsBackup || fExistsHidden)
|
||||
{
|
||||
// That should never happen
|
||||
return false;
|
||||
}
|
||||
if (!picture->setSnapmaticProperties(snapmaticProperties))
|
||||
{
|
||||
// That should never happen
|
||||
return false;
|
||||
}
|
||||
picture->updateStrings();
|
||||
picFileName = picture->getPictureFileName();
|
||||
adjustedFileName = picture->getOriginalPictureFileName();
|
||||
}
|
||||
}
|
||||
else if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format))
|
||||
if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format))
|
||||
{
|
||||
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
|
||||
picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
|
||||
|
@ -993,7 +1064,7 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
|
|||
}
|
||||
else
|
||||
{
|
||||
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Snapmatic picture, can't copy the file into profile"));
|
||||
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Snapmatic picture, can't copy the file into profile"));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -1030,13 +1101,13 @@ bool ProfileInterface::importSavegameData(SavegameData *savegame, QString sgdPat
|
|||
}
|
||||
else
|
||||
{
|
||||
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Savegame, can't copy the file into profile"));
|
||||
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Savegame, can't copy the file into profile"));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Savegame, no Savegame slot is left"));
|
||||
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Savegame, no Savegame slot is left"));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -330,6 +330,7 @@ void SnapmaticEditor::on_cmdApply_clicked()
|
|||
}
|
||||
else
|
||||
{
|
||||
smpic->updateStrings();
|
||||
smpic->emitUpdate();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -167,9 +167,10 @@ DEFINES += GTA5SYNC_NOASSIST # Not assisting at proper usage of SnapmaticPicture
|
|||
|
||||
win32: DEFINES += GTA5SYNC_WIN
|
||||
win32: RC_FILE += res/app.rc
|
||||
win32: LIBS += -luser32 -ld3d9
|
||||
win32: LIBS += -luser32
|
||||
win32: CONFIG -= embed_manifest_exe
|
||||
contains(DEFINES, GTA5SYNC_APV): greaterThan(QT_MAJOR_VERSION, 4): greaterThan(QT_MINOR_VERSION, 1): win32: LIBS += -ldwmapi
|
||||
contains(DEFINES, GTA5SYNC_TELEMETRY): win32: LIBS += -ld3d9 # Required for getting information about GPU
|
||||
|
||||
# MAC OS X ONLY
|
||||
macx: ICON = res/5sync.icns
|
||||
|
|
234
res/gta5sync.ts
234
res/gta5sync.ts
|
@ -935,37 +935,37 @@ Y: %2</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1219,8 +1219,22 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1234,20 +1248,6 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1375,109 +1375,109 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1485,81 +1485,81 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1661,37 +1661,37 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1788,7 +1788,7 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1889,31 +1889,31 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2087,52 +2087,52 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2351,15 +2351,15 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
|
Binary file not shown.
|
@ -956,31 +956,31 @@ Y: %2</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Als &Bild exportieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Als &Snapmatic exportieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>Eigenschaften bearb&eiten...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>Bild &überschreiben...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>&Kartenansicht öffnen...</translation>
|
||||
</message>
|
||||
|
@ -1129,7 +1129,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>&JSON Editor öffnen...</translation>
|
||||
</message>
|
||||
|
@ -1246,8 +1246,22 @@ Drücke 1 für Standardmodus</translation>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation>Importieren...</translation>
|
||||
</message>
|
||||
|
@ -1261,20 +1275,6 @@ Drücke 1 für Standardmodus</translation>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation>Importieren</translation>
|
||||
</message>
|
||||
|
@ -1361,7 +1361,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation>Initialisiere Export...</translation>
|
||||
</message>
|
||||
|
@ -1371,12 +1371,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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>
|
||||
</message>
|
||||
|
@ -1393,86 +1388,91 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Aktivierte Bilder: %1 von %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation>JPG Bilder und GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation>Nur JPG Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation>Nur GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation>Auswahl patchen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation>Patche Datei %1 von %2 Dateien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation>Als Avatar qualifizieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1487,88 +1487,88 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Bereite Inhalt für Import vor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Qualifizieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation>Spieler ändern...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Spieler ändern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation>Crew ändern...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Crew ändern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation>Titel ändern...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Titel ändern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation>Auswahl löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation>Auswahl exportieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
|
@ -1722,32 +1722,32 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation>A&nsehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation>Entfe&rnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation>Au&swählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>A&bwählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation>&Alles auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>Alles a&bwählen</translation>
|
||||
</message>
|
||||
|
@ -1762,7 +1762,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Spielstand kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Exportieren</translation>
|
||||
</message>
|
||||
|
@ -1813,7 +1813,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1856,8 +1856,8 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Meme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation>Snapmatic Titel</translation>
|
||||
</message>
|
||||
|
@ -1959,7 +1959,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen JSON Fehler</translation>
|
||||
</message>
|
||||
|
@ -1972,20 +1972,20 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation>Neuer Snapmatic Titel:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation>Snapmatic Crew</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation>Neue Snapmatic Crew:</translation>
|
||||
</message>
|
||||
|
@ -2112,52 +2112,52 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation>Bearbei&ten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Exportieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation>&Im Spiel anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation>&Im Spiel ausblenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation>A&nsehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation>Entfe&rnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation>Au&swählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>A&bwählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Alles &auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>Alles a&bwählen</translation>
|
||||
</message>
|
||||
|
@ -2401,15 +2401,15 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>&Neuladen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Im Spiel anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Im Spiel ausblenden</translation>
|
||||
|
|
Binary file not shown.
|
@ -935,31 +935,31 @@ Y: %2</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1111,7 +1111,7 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1239,8 +1239,22 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1254,20 +1268,6 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1370,130 +1370,125 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation>Initializing export...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1501,7 +1496,7 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1511,55 +1506,60 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation></translation>
|
||||
|
@ -1661,37 +1661,37 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1788,7 +1788,7 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1928,7 +1928,7 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1941,26 +1941,26 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -2087,52 +2087,52 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -2376,15 +2376,15 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation></translation>
|
||||
|
|
Binary file not shown.
|
@ -1036,31 +1036,31 @@ Y : %2</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Exporter comme &image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Exporter comme &Snapmatic...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>&Remplacer l'image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>Modifier les &propriétés...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
||||
</message>
|
||||
|
@ -1129,7 +1129,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>Ouvrir l'éditeur &JSON...</translation>
|
||||
</message>
|
||||
|
@ -1257,8 +1257,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation>Importer...</translation>
|
||||
</message>
|
||||
|
@ -1272,20 +1286,6 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation>Importer</translation>
|
||||
</message>
|
||||
|
@ -1384,105 +1384,100 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<translation>Impossible d'importer la photo Snapmatic, un fichier du même nom existe déjà</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation>Images JPG et GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation>Images JPG seulement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation>GTA Snapmatic seulement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation>Exporter la sélection...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation>Initialisation de l'export...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation>Qualifier comme Avatar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation>Aucun Snapmatic sélectionné</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation>Patcher la sélection...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation>Patch du fichier %1 sur %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1492,7 +1487,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
%2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<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>
|
||||
</message>
|
||||
|
@ -1502,61 +1497,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Qualifier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation>Modifier les joueurs...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Modifier les joueurs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation>Modifier le Crew...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation>Snapmatic Crew ID invalide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Changer le Crew</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation>Changer le titre...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation>Titre Snapmatic invalide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Changer le titre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
|
@ -1565,20 +1565,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation>Supprimer la sélection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||
<translation>Supprimer la sélection ?</translation>
|
||||
</message>
|
||||
|
@ -1685,7 +1685,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Exporter</translation>
|
||||
</message>
|
||||
|
@ -1776,32 +1776,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Impossible de supprimer %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation>&Voir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation>&Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation>&Sélectionner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>&Déselectionner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Sélectionner to&ut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>&Déselectionner tout</translation>
|
||||
</message>
|
||||
|
@ -1814,7 +1814,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1857,8 +1857,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Meme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation>Titre Snapmatic</translation>
|
||||
</message>
|
||||
|
@ -1962,7 +1962,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Patch des propriétés Snapmatic échoué : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation>Patch des propriétés Snapmatic échoué : erreur JSON</translation>
|
||||
</message>
|
||||
|
@ -1975,20 +1975,20 @@ 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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation>Nouveau titre Snapmatic :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation>Crew Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation>Nouveau crew Snapmatic :</translation>
|
||||
</message>
|
||||
|
@ -2135,52 +2135,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>%1 n'a pas pu être rendu visible en jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation>Édi&ter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation>&Visible en jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation>&Invisible en jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Exporter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation>&Voir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation>S&upprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation>&Sélectionner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>&Déselectionner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Sélectionner &tout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>&Déselectionner tout</translation>
|
||||
</message>
|
||||
|
@ -2404,15 +2404,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Impossible d'ouvrir %1, format invalide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Visible en jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Invisible en jeu</translation>
|
||||
|
|
Binary file not shown.
|
@ -967,31 +967,31 @@ Y: %2</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Экспортировать как &картинку...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Экспортировать как &Snapmatic...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>&Перезаписать картинку...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>&Изменить свойства...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>Открыть &карту...</translation>
|
||||
</message>
|
||||
|
@ -1140,7 +1140,7 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>Открыть &редактор JSON...</translation>
|
||||
</message>
|
||||
|
@ -1258,8 +1258,22 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation>Импортировать...</translation>
|
||||
</message>
|
||||
|
@ -1273,20 +1287,6 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation>Импортировать</translation>
|
||||
</message>
|
||||
|
@ -1390,63 +1390,58 @@ Press 1 for Default View</source>
|
|||
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation>Картинки JPG и GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation>Только картинки JPG</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation>Только GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation>Подготовка к экспорту...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation>Не выделены ни один Snapmatic или сохранение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation>Снять выделение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
|
||||
</message>
|
||||
|
@ -1456,48 +1451,48 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation>Пометить как Аватар</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation>Не выделена ни одна картинка Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation>Пропатчить выделенные...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation>Изменяется файл %1 из %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1507,80 +1502,85 @@ Press 1 for Default View</source>
|
|||
%2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Помечание</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation>Изменить игроков...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Измение игроков</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation>Изменить банду...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation>Введённый идентификатор банды не верен</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Изменение банды</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation>Изменить заголовок...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation>Введённый заголовок не верен</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Изменение заголовка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation>Экпортировать выделенное...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
|
@ -1741,32 +1741,32 @@ Press 1 for Default View</source>
|
|||
<translation>Не удалось удалить сохранение %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation>&Просмотр</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation>&Удалить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation>&Выбрать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>Сн&ять выбор</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation>В&ыбрать все</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>Снять выбо&р со всех</translation>
|
||||
</message>
|
||||
|
@ -1776,7 +1776,7 @@ Press 1 for Default View</source>
|
|||
<translation>Копировать сохранение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Экспортировать</translation>
|
||||
</message>
|
||||
|
@ -1827,7 +1827,7 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1880,8 +1880,8 @@ Press 1 for Default View</source>
|
|||
<translation>Meme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation>Заголовок Snapmatic</translation>
|
||||
</message>
|
||||
|
@ -1973,7 +1973,7 @@ Press 1 for Default View</source>
|
|||
<translation>Не удалось изменить свойства Snapmatic из-за %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation>Не удалось измененить свойства Snapmatic из-за ошибки JSON</translation>
|
||||
</message>
|
||||
|
@ -1986,20 +1986,20 @@ Press 1 for Default View</source>
|
|||
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation>Новый заголовок Snapmatic:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation>Банда на Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation>Новая банда на Snapmatic:</translation>
|
||||
</message>
|
||||
|
@ -2136,52 +2136,52 @@ Press 1 for Default View</source>
|
|||
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation>&Правка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation>Показывать в &игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation>Ск&рыть в игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Экспорт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation>По&казать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation>У&далить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation>&Выделить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>Сн&ять выделение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation>В&ыбрать все</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>Снять выбо&р со всех</translation>
|
||||
</message>
|
||||
|
@ -2415,15 +2415,15 @@ Press 1 for Default View</source>
|
|||
<translation>Пере&загрузить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Показывать в игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Скрыть в игре</translation>
|
||||
|
|
Binary file not shown.
|
@ -950,37 +950,37 @@ Y: %2</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Експортувати як &зображення...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Експортувати як &Snapmatic...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>&Змінити властивості...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>&Перезаписати зображення...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>Відкрити &карту...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>Відкрити редактор &JSON...</translation>
|
||||
</message>
|
||||
|
@ -1237,8 +1237,22 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation>Імпортування...</translation>
|
||||
</message>
|
||||
|
@ -1252,20 +1266,6 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation>Імпорт</translation>
|
||||
</message>
|
||||
|
@ -1390,64 +1390,59 @@ Press 1 for Default View</source>
|
|||
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<translation>Не вдалося імпортувати знімок Snapmatic, картинка вже в грі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation>Експорт обраних...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation>JPG картинки і GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation>Тільки JPG картинки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation>Тільки GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation>Ініціалізація експорту...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
|
@ -1456,45 +1451,45 @@ Press 1 for Default View</source>
|
|||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation>Видалити вибрані</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation>Не вибрано жодного Snapmatic зображення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1509,81 +1504,86 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation>Позначити як Аватар</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation>Вибір патчу...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation>Патч файлу %1 з %2 файлів</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Якість</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation>Зміна гравців...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Змінити гравців</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation>Зміна банди...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Змінити банду</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation>Зміна назви...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>Змінити назву</translation>
|
||||
|
@ -1685,37 +1685,37 @@ Press 1 for Default View</source>
|
|||
<translation>Видалити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation>&Перегляд</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Експорт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation>&Видалення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation>&Виділення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>&Зняти виділення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Вибрати &усі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>&Зняти виділення усіх</translation>
|
||||
</message>
|
||||
|
@ -1814,7 +1814,7 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1915,31 +1915,31 @@ Press 1 for Default View</source>
|
|||
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation>Snapmatic банда</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation>Нова Snapmatic банда:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation>Snapmatic назва</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation>Новий Snapmatic заголовок:</translation>
|
||||
</message>
|
||||
|
@ -2113,52 +2113,52 @@ Press 1 for Default View</source>
|
|||
<translation>Видалити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation>Редагува&ти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation>Показати &у грі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation>Сховати &у грі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Експортувати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation>&Переглянути</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation>&Видалити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation>&Виділення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>&Зняти виділення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Вибрати &усі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>&Зняти виділення усіх</translation>
|
||||
</message>
|
||||
|
@ -2377,15 +2377,15 @@ Press 1 for Default View</source>
|
|||
<translation>Змінити &гравців...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Показати у грі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Сховати у грі</translation>
|
||||
|
|
Binary file not shown.
|
@ -948,37 +948,37 @@ Y: %2</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1505"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>匯出成圖片(&P)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1506"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>匯出成 Snapmatic(&S)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1499"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>編輯屬性(&E) ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1500"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>修改圖片(&O)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1502"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>開啟地圖檢視器(&M)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1503"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>開啟 JSON 編輯器(&J)...</translation>
|
||||
</message>
|
||||
|
@ -1235,8 +1235,22 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Import...</source>
|
||||
<translation>匯入...</translation>
|
||||
</message>
|
||||
|
@ -1250,20 +1264,6 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
<location filename="../ProfileInterface.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="620"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<location filename="../ProfileInterface.cpp" line="814"/>
|
||||
<location filename="../ProfileInterface.cpp" line="819"/>
|
||||
<location filename="../ProfileInterface.cpp" line="979"/>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<source>Import</source>
|
||||
<translation>匯入</translation>
|
||||
</message>
|
||||
|
@ -1386,109 +1386,104 @@ Press 1 for Default View</source>
|
|||
<translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="984"/>
|
||||
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
|
||||
<translation>匯入 Snapmatic 圖片失敗,圖片已經在遊戲中</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="996"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1067"/>
|
||||
<source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
|
||||
<translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1033"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1104"/>
|
||||
<source>Failed to import the Savegame, can't copy the file into profile</source>
|
||||
<translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1039"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1110"/>
|
||||
<source>Failed to import the Savegame, no Savegame slot is left</source>
|
||||
<translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1103"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1174"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1257"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<source>Export selected...</source>
|
||||
<translation>匯出所選...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1126"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1197"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1215"/>
|
||||
<source>JPG pictures and GTA Snapmatic</source>
|
||||
<translation>JPG 圖片和 GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1127"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1198"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1220"/>
|
||||
<source>JPG pictures only</source>
|
||||
<translation>只有 JPG 圖片</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1128"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1199"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1224"/>
|
||||
<source>GTA Snapmatic only</source>
|
||||
<translation>只有 GTA Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1141"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1212"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1187"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1258"/>
|
||||
<source>Initialising export...</source>
|
||||
<translation>初始化...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1221"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1292"/>
|
||||
<source>Export failed with...
|
||||
|
||||
%1</source>
|
||||
<translation>%1 匯出失敗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1241"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1312"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>No Snapmatic pictures or Savegames files are selected</source>
|
||||
<translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1283"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1354"/>
|
||||
<source>Remove selected</source>
|
||||
<translation>移除所選</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1249"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1320"/>
|
||||
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
|
||||
<translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1277"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1348"/>
|
||||
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
|
||||
<translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<source>No Snapmatic pictures are selected</source>
|
||||
<translation>未選擇 Snapmatic 圖片</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>%1 failed with...
|
||||
|
||||
%2</source>
|
||||
|
@ -1503,81 +1498,86 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1782"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="987"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1853"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify as Avatar</source>
|
||||
<translation>合格大頭貼</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1793"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1896"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2023"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2129"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1864"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2200"/>
|
||||
<source>Patch selected...</source>
|
||||
<translation>修改所選...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1794"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1813"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1897"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1916"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2024"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2043"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2130"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2149"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1865"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1884"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1968"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1987"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2095"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2114"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2201"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2220"/>
|
||||
<source>Patch file %1 of %2 files</source>
|
||||
<translation>修改檔案 %1 共 %2 個檔案</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1847"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1918"/>
|
||||
<source>Qualify</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>合格</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1868"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1939"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players...</source>
|
||||
<translation>更改玩家...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1946"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2017"/>
|
||||
<source>Change Players</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>更改玩家</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1967"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2038"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew...</source>
|
||||
<translation>更改幫會...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2004"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2075"/>
|
||||
<source>Failed to enter a valid Snapmatic Crew ID</source>
|
||||
<translation>輸入了無效的幫會 ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2073"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2144"/>
|
||||
<source>Change Crew</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>更改幫會</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2094"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2165"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title...</source>
|
||||
<translation>更改標題...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2111"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2182"/>
|
||||
<source>Failed to enter a valid Snapmatic title</source>
|
||||
<translation>輸入了無效的標題</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2176"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2247"/>
|
||||
<source>Change Title</source>
|
||||
<comment>%1 failed with...</comment>
|
||||
<translation>更改標題</translation>
|
||||
|
@ -1679,37 +1679,37 @@ Press 1 for Default View</source>
|
|||
<translation>刪除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1470"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1541"/>
|
||||
<source>&View</source>
|
||||
<translation>檢視(&V)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1471"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1542"/>
|
||||
<source>&Export</source>
|
||||
<translation>匯出(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1472"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1543"/>
|
||||
<source>&Remove</source>
|
||||
<translation>移除(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1474"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1545"/>
|
||||
<source>&Select</source>
|
||||
<translation>選擇(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1475"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1546"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>取消選擇(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1478"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1549"/>
|
||||
<source>Select &All</source>
|
||||
<translation>選擇全部(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1553"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>取消選擇全部(&D)</translation>
|
||||
</message>
|
||||
|
@ -1808,7 +1808,7 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="110"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
|
@ -1909,31 +1909,31 @@ Press 1 for Default View</source>
|
|||
<translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="194"/>
|
||||
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
|
||||
<translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>Snapmatic Crew</source>
|
||||
<translation>幫會</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1995"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2066"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="420"/>
|
||||
<source>New Snapmatic crew:</source>
|
||||
<translation>輸入新的幫會:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>Snapmatic Title</source>
|
||||
<translation>標題</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="2106"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="390"/>
|
||||
<location filename="../ProfileInterface.cpp" line="2177"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="391"/>
|
||||
<source>New Snapmatic title:</source>
|
||||
<translation>輸入新的標題:</translation>
|
||||
</message>
|
||||
|
@ -2107,52 +2107,52 @@ Press 1 for Default View</source>
|
|||
<translation>刪除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1419"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1490"/>
|
||||
<source>Edi&t</source>
|
||||
<translation>編輯(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1422"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1493"/>
|
||||
<source>Show &In-game</source>
|
||||
<translation>在遊戲中顯示(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1426"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1497"/>
|
||||
<source>Hide &In-game</source>
|
||||
<translation>在遊戲中隱藏(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1433"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1504"/>
|
||||
<source>&Export</source>
|
||||
<translation>匯出(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1436"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1507"/>
|
||||
<source>&View</source>
|
||||
<translation>檢視(&V)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1439"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1510"/>
|
||||
<source>&Remove</source>
|
||||
<translation>移除(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1441"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1512"/>
|
||||
<source>&Select</source>
|
||||
<translation>選擇(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1442"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1513"/>
|
||||
<source>&Deselect</source>
|
||||
<translation>取消選擇(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1445"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1516"/>
|
||||
<source>Select &All</source>
|
||||
<translation>選擇全部(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1449"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1520"/>
|
||||
<source>&Deselect All</source>
|
||||
<translation>取消選擇全部(&D)</translation>
|
||||
</message>
|
||||
|
@ -2371,15 +2371,15 @@ Press 1 for Default View</source>
|
|||
<translation>更改玩家(&P)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1420"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>在遊戲中顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1454"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1468"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>在遊戲中隱藏</translation>
|
||||
|
|
Loading…
Reference in a new issue