RagePhoto: Add saving and fix few issues
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Syping 2020-11-11 07:04:39 +01:00
parent 2c725c796e
commit e34ee22ed9
18 changed files with 1713 additions and 1665 deletions

View File

@ -22,6 +22,13 @@
#include <QBuffer> #include <QBuffer>
#include <QFile> #include <QFile>
RagePhoto::RagePhoto()
{
p_photoFormat = PhotoFormat::Undefined;
p_isLoaded = false;
p_inputMode = -1;
}
RagePhoto::RagePhoto(const QByteArray &data) : p_fileData(data) RagePhoto::RagePhoto(const QByteArray &data) : p_fileData(data)
{ {
p_photoFormat = PhotoFormat::Undefined; p_photoFormat = PhotoFormat::Undefined;
@ -50,6 +57,9 @@ bool RagePhoto::isLoaded()
bool RagePhoto::load() bool RagePhoto::load()
{ {
if (p_inputMode == -1)
return false;
if (p_isLoaded) if (p_isLoaded)
clear(); clear();
@ -71,11 +81,11 @@ bool RagePhoto::load()
QBuffer dataBuffer(&p_fileData); QBuffer dataBuffer(&p_fileData);
dataBuffer.open(QIODevice::ReadOnly); dataBuffer.open(QIODevice::ReadOnly);
char formatHeader[4]; char uInt32Buffer[4];
qint64 size = dataBuffer.read(formatHeader, 4); qint64 size = dataBuffer.read(uInt32Buffer, 4);
if (size != 4) if (size != 4)
return false; return false;
quint32 format = charToUInt32LE(formatHeader); quint32 format = charToUInt32LE(uInt32Buffer);
if (format == static_cast<quint32>(PhotoFormat::GTA5)) { if (format == static_cast<quint32>(PhotoFormat::GTA5)) {
char photoHeader[256]; char photoHeader[256];
@ -88,54 +98,47 @@ bool RagePhoto::load()
p_photoString += photoChar; p_photoString += photoChar;
} }
char checksum[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(checksum, 4);
if (size != 4) if (size != 4)
return false; return false;
p_headerSum = charToUInt32LE(checksum); p_headerSum = charToUInt32LE(uInt32Buffer);
char endOfFile[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(endOfFile, 4);
if (size != 4) if (size != 4)
return false; return false;
p_endOfFile = charToUInt32LE(endOfFile); p_endOfFile = charToUInt32LE(uInt32Buffer);
char jsonOffset[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(jsonOffset, 4);
if (size != 4) if (size != 4)
return false; return false;
p_jsonOffset = charToUInt32LE(jsonOffset); p_jsonOffset = charToUInt32LE(uInt32Buffer);
char titleOffset[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(titleOffset, 4);
if (size != 4) if (size != 4)
return false; return false;
p_titlOffset = charToUInt32LE(titleOffset); p_titlOffset = charToUInt32LE(uInt32Buffer);
char descOffset[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(descOffset, 4);
if (size != 4) if (size != 4)
return false; return false;
p_descOffset = charToUInt32LE(descOffset); p_descOffset = charToUInt32LE(uInt32Buffer);
char jpegMarker[4]; char markerBuffer[4];
size = dataBuffer.read(jpegMarker, 4); size = dataBuffer.read(markerBuffer, 4);
if (size != 4) if (size != 4)
return false; return false;
if (strncmp(jpegMarker, "JPEG", 4) != 0) if (strncmp(markerBuffer, "JPEG", 4) != 0)
return false; return false;
char jpegBuffer[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(jpegBuffer, 4);
if (size != 4) if (size != 4)
return false; return false;
p_jpegBuffer = charToUInt32LE(jpegBuffer); p_photoBuffer = charToUInt32LE(uInt32Buffer);
char photoSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(photoSize, 4);
if (size != 4) if (size != 4)
return false; return false;
quint32 t_photoSize = charToUInt32LE(photoSize); quint32 t_photoSize = charToUInt32LE(uInt32Buffer);
char photoData[t_photoSize]; char photoData[t_photoSize];
size = dataBuffer.read(photoData, t_photoSize); size = dataBuffer.read(photoData, t_photoSize);
@ -144,24 +147,22 @@ bool RagePhoto::load()
p_photoData = QByteArray(photoData, t_photoSize); p_photoData = QByteArray(photoData, t_photoSize);
dataBuffer.seek(p_jsonOffset + 264); dataBuffer.seek(p_jsonOffset + 264);
char jsonMarker[4]; size = dataBuffer.read(markerBuffer, 4);
size = dataBuffer.read(jsonMarker, 4);
if (size != 4) if (size != 4)
return false; return false;
if (strncmp(jsonMarker, "JSON", 4) != 0) if (strncmp(markerBuffer, "JSON", 4) != 0)
return false; return false;
char jsonSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(jsonSize, 4);
if (size != 4) if (size != 4)
return false; return false;
p_jsonSize = charToUInt32LE(jsonSize); p_jsonBuffer = charToUInt32LE(uInt32Buffer);
char jsonBytes[p_jsonSize]; char jsonBytes[p_jsonBuffer];
size = dataBuffer.read(jsonBytes, p_jsonSize); size = dataBuffer.read(jsonBytes, p_jsonBuffer);
if (size != p_jsonSize) if (size != p_jsonBuffer)
return false; return false;
for (quint32 i = 0; i != p_jsonSize; i++) { for (quint32 i = 0; i != p_jsonBuffer; i++) {
if (jsonBytes[i] == '\x00') if (jsonBytes[i] == '\x00')
break; break;
p_jsonData += jsonBytes[i]; p_jsonData += jsonBytes[i];
@ -172,59 +173,54 @@ bool RagePhoto::load()
p_jsonObject = t_jsonDocument.object(); p_jsonObject = t_jsonDocument.object();
dataBuffer.seek(p_titlOffset + 264); dataBuffer.seek(p_titlOffset + 264);
char titlMarker[4]; size = dataBuffer.read(markerBuffer, 4);
size = dataBuffer.read(titlMarker, 4);
if (size != 4) if (size != 4)
return false; return false;
if (strncmp(titlMarker, "TITL", 4) != 0) if (strncmp(markerBuffer, "TITL", 4) != 0)
return false; return false;
char titlSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(titlSize, 4);
if (size != 4) if (size != 4)
return false; return false;
p_titlSize = charToUInt32LE(titlSize); p_titlBuffer = charToUInt32LE(uInt32Buffer);
char titlBytes[p_titlSize]; char titlBytes[p_titlBuffer];
size = dataBuffer.read(titlBytes, p_titlSize); size = dataBuffer.read(titlBytes, p_titlBuffer);
if (size != p_titlSize) if (size != p_titlBuffer)
return false; return false;
for (const QChar &titlChar : QString::fromUtf8(titlBytes, p_titlSize)) { for (const QChar &titlChar : QString::fromUtf8(titlBytes, p_titlBuffer)) {
if (titlChar.isNull()) if (titlChar.isNull())
break; break;
p_titleString += titlChar; p_titleString += titlChar;
} }
dataBuffer.seek(p_descOffset + 264); dataBuffer.seek(p_descOffset + 264);
char descMarker[4]; size = dataBuffer.read(markerBuffer, 4);
size = dataBuffer.read(descMarker, 4);
if (size != 4) if (size != 4)
return false; return false;
if (strncmp(descMarker, "DESC", 4) != 0) if (strncmp(markerBuffer, "DESC", 4) != 0)
return false; return false;
char descSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(descSize, 4);
if (size != 4) if (size != 4)
return false; return false;
p_descSize = charToUInt32LE(descSize); p_descBuffer = charToUInt32LE(uInt32Buffer);
char descBytes[p_descSize]; char descBytes[p_descBuffer];
size = dataBuffer.read(descBytes, p_descSize); size = dataBuffer.read(descBytes, p_descBuffer);
if (size != p_descSize) if (size != p_descBuffer)
return false; return false;
for (const QChar &descChar : QString::fromUtf8(descBytes, p_descSize)) { for (const QChar &descChar : QString::fromUtf8(descBytes, p_descBuffer)) {
if (descChar.isNull()) if (descChar.isNull())
break; break;
p_descriptionString += descChar; p_descriptionString += descChar;
} }
dataBuffer.seek(p_endOfFile + 260); dataBuffer.seek(p_endOfFile + 260);
char jendMarker[4]; size = dataBuffer.read(markerBuffer, 4);
size = dataBuffer.read(jendMarker, 4);
if (size != 4) if (size != 4)
return false; return false;
if (strncmp(jendMarker, "JEND", 4) != 0) if (strncmp(markerBuffer, "JEND", 4) != 0)
return false; return false;
if (p_photoFormat != PhotoFormat::G5EX) if (p_photoFormat != PhotoFormat::G5EX)
@ -235,119 +231,126 @@ bool RagePhoto::load()
return true; return true;
} }
else if (format == static_cast<quint32>(PhotoFormat::G5EX)) { else if (format == static_cast<quint32>(PhotoFormat::G5EX)) {
char formatHeader[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(formatHeader, 4);
if (size != 4) if (size != 4)
return false; return false;
quint32 format = charToUInt32LE(formatHeader); format = charToUInt32LE(uInt32Buffer);
if (format == static_cast<quint32>(ExportFormat::G5E3P)) { if (format == static_cast<quint32>(ExportFormat::G5E3P)) {
char photoHeaderSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.peek(photoHeaderSize, 4);
if (size != 4) if (size != 4)
return false; return false;
quint32 i_photoHeaderSize = charToUInt32BE(photoHeaderSize) + 4; quint32 compressedSize = charToUInt32LE(uInt32Buffer);
char compressedPhotoHeader[i_photoHeaderSize]; char compressedPhotoHeader[compressedSize];
size = dataBuffer.read(compressedPhotoHeader, i_photoHeaderSize); size = dataBuffer.read(compressedPhotoHeader, compressedSize);
if (size != i_photoHeaderSize) if (size != compressedSize)
return false; return false;
QByteArray t_photoHeaderBytes = QByteArray::fromRawData(compressedPhotoHeader, i_photoHeaderSize); QByteArray t_photoHeader = QByteArray::fromRawData(compressedPhotoHeader, compressedSize);
t_photoHeaderBytes = qUncompress(t_photoHeaderBytes); t_photoHeader = qUncompress(t_photoHeader);
p_photoString = QString::fromUtf8(t_photoHeaderBytes); if (t_photoHeader.isEmpty())
return false;
p_photoString = QString::fromUtf8(t_photoHeader);
char checksum[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(checksum, 4);
if (size != 4) if (size != 4)
return false; return false;
p_headerSum = charToUInt32LE(checksum); p_headerSum = charToUInt32LE(uInt32Buffer);
char jpegBuffer[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(jpegBuffer, 4);
if (size != 4) if (size != 4)
return false; return false;
p_jpegBuffer = charToUInt32LE(jpegBuffer); p_photoBuffer = charToUInt32LE(uInt32Buffer);
char photoSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.peek(photoSize, 4);
if (size != 4) if (size != 4)
return false; return false;
quint32 i_photoSize = charToUInt32BE(photoSize) + 4; compressedSize = charToUInt32LE(uInt32Buffer);
char compressedPhoto[i_photoSize]; char compressedPhoto[compressedSize];
size = dataBuffer.read(compressedPhoto, i_photoSize); size = dataBuffer.read(compressedPhoto, compressedSize);
if (size != i_photoSize) if (size != compressedSize)
return false; return false;
QByteArray t_photoData = QByteArray::fromRawData(compressedPhoto, i_photoSize); QByteArray t_photoData = QByteArray::fromRawData(compressedPhoto, compressedSize);
p_photoData = qUncompress(t_photoData); p_photoData = qUncompress(t_photoData);
char jsonOffset[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(jsonOffset, 4);
if (size != 4) if (size != 4)
return false; return false;
p_jsonOffset = charToUInt32LE(jsonOffset); p_jsonOffset = charToUInt32LE(uInt32Buffer);
char jsonSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.peek(jsonSize, 4);
if (size != 4) if (size != 4)
return false; return false;
p_jsonSize = charToUInt32BE(jsonSize) + 4; p_jsonBuffer = charToUInt32LE(uInt32Buffer);
char compressedJson[p_jsonSize]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(compressedJson, p_jsonSize); if (size != 4)
if (size != p_jsonSize)
return false; return false;
QByteArray t_jsonBytes = QByteArray::fromRawData(compressedJson, p_jsonSize); compressedSize = charToUInt32LE(uInt32Buffer);
char compressedJson[compressedSize];
size = dataBuffer.read(compressedJson, compressedSize);
if (size != compressedSize)
return false;
QByteArray t_jsonBytes = QByteArray::fromRawData(compressedJson, compressedSize);
p_jsonData = qUncompress(t_jsonBytes); p_jsonData = qUncompress(t_jsonBytes);
if (p_jsonData.isEmpty())
return false;
QJsonDocument t_jsonDocument = QJsonDocument::fromJson(p_jsonData); QJsonDocument t_jsonDocument = QJsonDocument::fromJson(p_jsonData);
if (t_jsonDocument.isNull()) if (t_jsonDocument.isNull())
return false; return false;
p_jsonObject = t_jsonDocument.object(); p_jsonObject = t_jsonDocument.object();
char titleOffset[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(titleOffset, 4);
if (size != 4) if (size != 4)
return false; return false;
p_titlOffset = charToUInt32LE(titleOffset); p_titlOffset = charToUInt32LE(uInt32Buffer);
char titlSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.peek(titlSize, 4);
if (size != 4) if (size != 4)
return false; return false;
p_titlSize = charToUInt32BE(titlSize) + 4; p_titlBuffer = charToUInt32LE(uInt32Buffer);
char compressedTitl[p_titlSize]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(compressedTitl, p_titlSize); if (size != 4)
if (size != p_titlSize)
return false; return false;
QByteArray t_titlBytes = QByteArray::fromRawData(compressedTitl, p_titlSize); compressedSize = charToUInt32LE(uInt32Buffer);
char compressedTitl[compressedSize];
size = dataBuffer.read(compressedTitl, compressedSize);
if (size != compressedSize)
return false;
QByteArray t_titlBytes = QByteArray::fromRawData(compressedTitl, compressedSize);
t_titlBytes = qUncompress(t_titlBytes); t_titlBytes = qUncompress(t_titlBytes);
p_titleString = QString::fromUtf8(t_titlBytes); p_titleString = QString::fromUtf8(t_titlBytes);
char descOffset[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(descOffset, 4);
if (size != 4) if (size != 4)
return false; return false;
p_descOffset = charToUInt32LE(descOffset); p_descOffset = charToUInt32LE(uInt32Buffer);
char descSize[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.peek(descSize, 4);
if (size != 4) if (size != 4)
return false; return false;
p_descSize = charToUInt32BE(descSize) + 4; p_descBuffer = charToUInt32LE(uInt32Buffer);
char compressedDesc[p_descSize]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(compressedDesc, p_descSize); if (size != 4)
if (size != p_descSize)
return false; return false;
QByteArray t_descBytes = QByteArray::fromRawData(compressedDesc, p_descSize); compressedSize = charToUInt32LE(uInt32Buffer);
char compressedDesc[compressedSize];
size = dataBuffer.read(compressedDesc, compressedSize);
if (size != compressedSize)
return false;
QByteArray t_descBytes = QByteArray::fromRawData(compressedDesc, compressedSize);
t_descBytes = qUncompress(t_descBytes); t_descBytes = qUncompress(t_descBytes);
p_descriptionString = QString::fromUtf8(t_descBytes); p_descriptionString = QString::fromUtf8(t_descBytes);
char endOfFile[4]; size = dataBuffer.read(uInt32Buffer, 4);
size = dataBuffer.read(endOfFile, 4);
if (size != 4) if (size != 4)
return false; return false;
p_endOfFile = charToUInt32LE(endOfFile); p_endOfFile = charToUInt32LE(uInt32Buffer);
p_photoFormat = PhotoFormat::G5EX; p_photoFormat = PhotoFormat::G5EX;
@ -358,6 +361,8 @@ bool RagePhoto::load()
else if (format == static_cast<quint32>(ExportFormat::G5E2P)) { else if (format == static_cast<quint32>(ExportFormat::G5E2P)) {
p_photoFormat = PhotoFormat::G5EX; p_photoFormat = PhotoFormat::G5EX;
p_fileData = qUncompress(dataBuffer.readAll()); p_fileData = qUncompress(dataBuffer.readAll());
if (p_fileData.isEmpty())
return false;
p_inputMode = 0; p_inputMode = 0;
return load(); return load();
} }
@ -378,6 +383,8 @@ bool RagePhoto::load()
p_photoFormat = PhotoFormat::G5EX; p_photoFormat = PhotoFormat::G5EX;
p_fileData = qUncompress(dataBuffer.readAll()); p_fileData = qUncompress(dataBuffer.readAll());
if (p_fileData.isEmpty())
return false;
p_inputMode = 0; p_inputMode = 0;
return load(); return load();
} }
@ -431,15 +438,15 @@ bool RagePhoto::setJsonData(const QByteArray &data)
QJsonDocument t_jsonDocument = QJsonDocument::fromJson(data); QJsonDocument t_jsonDocument = QJsonDocument::fromJson(data);
if (t_jsonDocument.isNull()) if (t_jsonDocument.isNull())
return false; return false;
p_jsonData = t_jsonDocument.toJson(QJsonDocument::Compact);
p_jsonObject = t_jsonDocument.object(); p_jsonObject = t_jsonDocument.object();
p_jsonData = data;
return true; return true;
} }
bool RagePhoto::setPhotoData(const QByteArray &data) bool RagePhoto::setPhotoData(const QByteArray &data)
{ {
quint32 size = data.size(); quint32 size = data.size();
if (size > p_jpegBuffer) if (size > p_photoBuffer)
return false; return false;
p_photoData = data; p_photoData = data;
return true; return true;
@ -447,7 +454,7 @@ bool RagePhoto::setPhotoData(const QByteArray &data)
bool RagePhoto::setPhotoData(const char *data, int size) bool RagePhoto::setPhotoData(const char *data, int size)
{ {
if ((quint32)size > p_jpegBuffer) if ((quint32)size > p_photoBuffer)
return false; return false;
p_photoData = QByteArray(data, size); p_photoData = QByteArray(data, size);
return true; return true;
@ -463,9 +470,17 @@ void RagePhoto::setTitle(const QString &title)
p_titleString = title; p_titleString = title;
} }
const QByteArray RagePhoto::jsonData() const QByteArray RagePhoto::jsonData(JsonFormat jsonFormat)
{ {
return p_jsonData; if (jsonFormat == JsonFormat::Compact) {
return QJsonDocument(p_jsonObject).toJson(QJsonDocument::Compact);
}
else if (jsonFormat == JsonFormat::Indented) {
return QJsonDocument(p_jsonObject).toJson(QJsonDocument::Indented);
}
else {
return p_jsonData;
}
} }
const QJsonObject RagePhoto::jsonObject() const QJsonObject RagePhoto::jsonObject()
@ -495,7 +510,7 @@ const QString RagePhoto::title()
quint32 RagePhoto::photoBuffer() quint32 RagePhoto::photoBuffer()
{ {
return p_jpegBuffer; return p_photoBuffer;
} }
quint32 RagePhoto::photoSize() quint32 RagePhoto::photoSize()
@ -519,11 +534,79 @@ QByteArray RagePhoto::save(PhotoFormat photoFormat)
void RagePhoto::save(QIODevice *ioDevice, PhotoFormat photoFormat) void RagePhoto::save(QIODevice *ioDevice, PhotoFormat photoFormat)
{ {
if (photoFormat == PhotoFormat::GTA5) { if (photoFormat == PhotoFormat::G5EX) {
char formatHeader[4]; char uInt32Buffer[4];
quint32 format = (quint32)PhotoFormat::GTA5; quint32 format = static_cast<quint32>(PhotoFormat::G5EX);
uInt32ToCharLE(&format, formatHeader); uInt32ToCharLE(&format, uInt32Buffer);
ioDevice->write(formatHeader, 4); ioDevice->write(uInt32Buffer, 4);
format = static_cast<quint32>(ExportFormat::G5E3P);
uInt32ToCharLE(&format, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
QByteArray compressedData = qCompress(p_photoString.toUtf8(), 9);
quint32 compressedSize = compressedData.size();
uInt32ToCharLE(&compressedSize, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
ioDevice->write(compressedData);
uInt32ToCharLE(&p_headerSum, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
uInt32ToCharLE(&p_photoBuffer, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
compressedData = qCompress(p_photoData, 9);
compressedSize = compressedData.size();
uInt32ToCharLE(&compressedSize, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
ioDevice->write(compressedData);
uInt32ToCharLE(&p_jsonOffset, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
uInt32ToCharLE(&p_jsonBuffer, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
compressedData = qCompress(p_jsonData, 9);
compressedSize = compressedData.size();
uInt32ToCharLE(&compressedSize, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
ioDevice->write(compressedData);
uInt32ToCharLE(&p_titlOffset, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
uInt32ToCharLE(&p_titlBuffer, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
compressedData = qCompress(p_titleString.toUtf8(), 9);
compressedSize = compressedData.size();
uInt32ToCharLE(&compressedSize, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
ioDevice->write(compressedData);
uInt32ToCharLE(&p_descOffset, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
uInt32ToCharLE(&p_descBuffer, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
compressedData = qCompress(p_descriptionString.toUtf8(), 9);
compressedSize = compressedData.size();
uInt32ToCharLE(&compressedSize, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
ioDevice->write(compressedData);
uInt32ToCharLE(&p_endOfFile, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
ioDevice->aboutToClose();
}
else if (photoFormat == PhotoFormat::GTA5) {
char uInt32Buffer[4];
quint32 format = static_cast<quint32>(PhotoFormat::GTA5);
uInt32ToCharLE(&format, uInt32Buffer);
ioDevice->write(uInt32Buffer, 4);
QByteArray photoHeader = QTextCodec::codecForName("UTF-16LE")->fromUnicode(p_photoString); QByteArray photoHeader = QTextCodec::codecForName("UTF-16LE")->fromUnicode(p_photoString);
if (photoHeader.left(2) == "\xFF\xFE") { if (photoHeader.left(2) == "\xFF\xFE") {
@ -539,85 +622,75 @@ void RagePhoto::save(QIODevice *ioDevice, PhotoFormat photoFormat)
ioDevice->write("\x00", 1); ioDevice->write("\x00", 1);
} }
char checksum[4]; uInt32ToCharLE(&p_headerSum, uInt32Buffer);
uInt32ToCharLE(&p_headerSum, checksum); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(checksum, 4);
char endOfFile[4]; uInt32ToCharLE(&p_endOfFile, uInt32Buffer);
uInt32ToCharLE(&p_endOfFile, endOfFile); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(endOfFile, 4);
char jsonOffset[4]; uInt32ToCharLE(&p_jsonOffset, uInt32Buffer);
uInt32ToCharLE(&p_jsonOffset, jsonOffset); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(jsonOffset, 4);
char titlOffset[4]; uInt32ToCharLE(&p_titlOffset, uInt32Buffer);
uInt32ToCharLE(&p_titlOffset, titlOffset); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(titlOffset, 4);
char descOffset[4]; uInt32ToCharLE(&p_descOffset, uInt32Buffer);
uInt32ToCharLE(&p_descOffset, descOffset); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(descOffset, 4);
ioDevice->write("JPEG"); ioDevice->write("JPEG", 4);
char jpegBuffer[4]; uInt32ToCharLE(&p_photoBuffer, uInt32Buffer);
uInt32ToCharLE(&p_jpegBuffer, jpegBuffer); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(jpegBuffer, 4);
quint32 t_photoSize = p_photoData.size(); quint32 t_photoSize = p_photoData.size();
char photoSize[4]; uInt32ToCharLE(&t_photoSize, uInt32Buffer);
uInt32ToCharLE(&t_photoSize, photoSize); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(photoSize, 4);
ioDevice->write(p_photoData); ioDevice->write(p_photoData);
for (qint64 size = t_photoSize; size < p_jpegBuffer; size++) { for (qint64 size = t_photoSize; size < p_photoBuffer; size++) {
ioDevice->write("\x00", 1); ioDevice->write("\x00", 1);
} }
ioDevice->seek(p_jsonOffset + 264); ioDevice->seek(p_jsonOffset + 264);
ioDevice->write("JSON"); ioDevice->write("JSON", 4);
char jsonSize[4]; uInt32ToCharLE(&p_jsonBuffer, uInt32Buffer);
uInt32ToCharLE(&p_jsonSize, jsonSize); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(jsonSize, 4);
qint64 dataSize = p_jsonData.size(); qint64 dataSize = p_jsonData.size();
ioDevice->write(p_jsonData); ioDevice->write(p_jsonData);
for (qint64 size = dataSize; size < p_jsonSize; size++) { for (qint64 size = dataSize; size < p_jsonBuffer; size++) {
ioDevice->write("\x00", 1); ioDevice->write("\x00", 1);
} }
ioDevice->seek(p_titlOffset + 264); ioDevice->seek(p_titlOffset + 264);
ioDevice->write("TITL"); ioDevice->write("TITL", 4);
char titlSize[4]; uInt32ToCharLE(&p_titlBuffer, uInt32Buffer);
uInt32ToCharLE(&p_titlSize, titlSize); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(titlSize, 4);
QByteArray data = p_titleString.toUtf8(); QByteArray data = p_titleString.toUtf8();
dataSize = data.size(); dataSize = data.size();
ioDevice->write(data); ioDevice->write(data);
for (qint64 size = dataSize; size < p_titlSize; size++) { for (qint64 size = dataSize; size < p_titlBuffer; size++) {
ioDevice->write("\x00", 1); ioDevice->write("\x00", 1);
} }
ioDevice->seek(p_descOffset + 264); ioDevice->seek(p_descOffset + 264);
ioDevice->write("DESC"); ioDevice->write("DESC", 4);
char descSize[4]; uInt32ToCharLE(&p_descBuffer, uInt32Buffer);
uInt32ToCharLE(&p_descSize, descSize); ioDevice->write(uInt32Buffer, 4);
ioDevice->write(descSize, 4);
data = p_descriptionString.toUtf8(); data = p_descriptionString.toUtf8();
dataSize = data.size(); dataSize = data.size();
ioDevice->write(data); ioDevice->write(data);
for (qint64 size = dataSize; size < p_descSize; size++) { for (qint64 size = dataSize; size < p_descBuffer; size++) {
ioDevice->write("\x00", 1); ioDevice->write("\x00", 1);
} }
ioDevice->seek(p_endOfFile + 260); ioDevice->seek(p_endOfFile + 260);
ioDevice->write("JEND"); ioDevice->write("JEND", 4);
ioDevice->aboutToClose(); ioDevice->aboutToClose();
} }
} }

View File

@ -27,6 +27,11 @@ class RagePhoto : public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
enum class JsonFormat : quint8 {
Original = 0,
Compact = 1,
Indented = 2,
};
enum class ExportFormat : quint32 { enum class ExportFormat : quint32 {
G5E1P = 0x454C0010U, G5E1P = 0x454C0010U,
G5E2P = 0x01000032U, G5E2P = 0x01000032U,
@ -41,8 +46,9 @@ public:
RDR2 = 0x04000000U, RDR2 = 0x04000000U,
Undefined = 0, Undefined = 0,
}; };
explicit RagePhoto();
explicit RagePhoto(const QByteArray &data); explicit RagePhoto(const QByteArray &data);
explicit RagePhoto(const QString &filePath = QString()); explicit RagePhoto(const QString &filePath);
explicit RagePhoto(QIODevice *ioDevice); explicit RagePhoto(QIODevice *ioDevice);
bool isLoaded(); bool isLoaded();
bool load(); bool load();
@ -57,7 +63,7 @@ public:
void setPhotoFormat(PhotoFormat photoFormat); void setPhotoFormat(PhotoFormat photoFormat);
void setTitle(const QString &title); void setTitle(const QString &title);
const QJsonObject jsonObject(); const QJsonObject jsonObject();
const QByteArray jsonData(); const QByteArray jsonData(JsonFormat jsonFormat = JsonFormat::Original);
const QByteArray photoData(); const QByteArray photoData();
const QString description(); const QString description();
const QString photoString(); const QString photoString();
@ -84,15 +90,15 @@ private:
QString p_filePath; QString p_filePath;
QString p_photoString; QString p_photoString;
QString p_titleString; QString p_titleString;
quint32 p_descBuffer;
quint32 p_descOffset; quint32 p_descOffset;
quint32 p_descSize;
quint32 p_endOfFile; quint32 p_endOfFile;
quint32 p_headerSum; quint32 p_headerSum;
quint32 p_jpegBuffer; quint32 p_jsonBuffer;
quint32 p_jsonOffset; quint32 p_jsonOffset;
quint32 p_jsonSize; quint32 p_photoBuffer;
quint32 p_titlBuffer;
quint32 p_titlOffset; quint32 p_titlOffset;
quint32 p_titlSize;
bool p_isLoaded; bool p_isLoaded;
int p_inputMode; int p_inputMode;
}; };

View File

@ -188,9 +188,8 @@ bool SnapmaticPicture::setImage(const QImage &picture)
picStreamT.open(QIODevice::WriteOnly); picStreamT.open(QIODevice::WriteOnly);
saveSuccess = picture.save(&picStreamT, "JPEG", comLvl); saveSuccess = picture.save(&picStreamT, "JPEG", comLvl);
picStreamT.close(); picStreamT.close();
if (saveSuccess) if (saveSuccess) {
{ if (static_cast<quint32>(picByteArrayT.length()) > jpegPicStreamLength) {
if ((quint32)picByteArrayT.length() > jpegPicStreamLength) {
comLvl--; comLvl--;
saveSuccess = false; saveSuccess = false;
} }
@ -207,15 +206,27 @@ bool SnapmaticPicture::setImage(const QImage &picture)
bool SnapmaticPicture::setPictureStream(const QByteArray &streamArray) // clean method bool SnapmaticPicture::setPictureStream(const QByteArray &streamArray) // clean method
{ {
bool success = ragePhoto.setPhotoData(streamArray); bool success = ragePhoto.setPhotoData(streamArray);
// SAVE HERE if (success) {
return false; if (cacheEnabled) {
QImage replacedPicture;
replacedPicture.loadFromData(streamArray);
cachePicture = replacedPicture;
}
return true;
}
else {
return false;
}
} }
bool SnapmaticPicture::setPictureTitl(const QString &newTitle_) bool SnapmaticPicture::setPictureTitl(const QString &newTitle_)
{ {
ragePhoto.setTitle(newTitle_); QString newTitle = newTitle_;
// SAVE HERE if (newTitle.length() > 39) {
return false; newTitle = newTitle.left(39);
}
ragePhoto.setTitle(newTitle);
return true;
} }
int SnapmaticPicture::getContentMaxLength() int SnapmaticPicture::getContentMaxLength()
@ -591,7 +602,6 @@ bool SnapmaticPicture::setSnapmaticProperties(SnapmaticProperties properties)
bool SnapmaticPicture::setJsonStr(const QString &newJsonStr, bool updateProperties) bool SnapmaticPicture::setJsonStr(const QString &newJsonStr, bool updateProperties)
{ {
if (ragePhoto.setJsonData(newJsonStr.toUtf8())) { if (ragePhoto.setJsonData(newJsonStr.toUtf8())) {
// SAVE HERE
if (updateProperties) if (updateProperties)
parseJsonContent(); parseJsonContent();
return true; return true;
@ -605,129 +615,88 @@ bool SnapmaticPicture::setJsonStr(const QString &newJsonStr, bool updateProperti
bool SnapmaticPicture::exportPicture(const QString &fileName, SnapmaticFormat format_) bool SnapmaticPicture::exportPicture(const QString &fileName, SnapmaticFormat format_)
{ {
// // Keep current format when Auto_Format is used // Keep current format when Auto_Format is used
// SnapmaticFormat format = format_; SnapmaticFormat format = format_;
// if (format_ == SnapmaticFormat::Auto_Format) if (format_ == SnapmaticFormat::Auto_Format)
// { {
// if (ragePhoto.photoFormat() == RagePhoto::PhotoFormat::G5EX) if (ragePhoto.photoFormat() == RagePhoto::PhotoFormat::G5EX)
// { {
// format = SnapmaticFormat::G5E_Format; format = SnapmaticFormat::G5E_Format;
// } }
// else else
// { {
// format = SnapmaticFormat::PGTA_Format; format = SnapmaticFormat::PGTA_Format;
// } }
// } }
// bool saveSuccess = false; bool saveSuccess = false;
// bool writeFailure = false; #if QT_VERSION >= 0x050000
//#if QT_VERSION >= 0x050000 QSaveFile *picFile = new QSaveFile(fileName);
// QSaveFile *picFile = new QSaveFile(fileName); #else
//#else QFile *picFile = new QFile(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
// QFile *picFile = new QFile(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp"); #endif
//#endif if (picFile->open(QIODevice::WriteOnly))
// if (picFile->open(QIODevice::WriteOnly)) {
// { if (format == SnapmaticFormat::G5E_Format)
// if (format == SnapmaticFormat::G5E_Format) {
// { ragePhoto.save(picFile, RagePhoto::PhotoFormat::G5EX);
// // Modern compressed export (v2) #if QT_VERSION >= 0x050000
// QByteArray g5eHeader; saveSuccess = picFile->commit();
// g5eHeader.reserve(10); #else
// g5eHeader += '\x00'; // First Null Byte saveSuccess = true;
// g5eHeader += QByteArray("G5E"); // GTA 5 Export picFile->close();
// g5eHeader += '\x32'; g5eHeader += '\x00'; // 2 byte GTA 5 Export Version #endif
// g5eHeader += '\x00'; g5eHeader += '\x01'; // 2 byte GTA 5 Export Type delete picFile;
// if (picFile->write(g5eHeader) == -1) { writeFailure = true; } }
// if (!lowRamMode) else if (format == SnapmaticFormat::JPEG_Format)
// { {
// if (picFile->write(qCompress(rawPicContent, 9)) == -1) { writeFailure = true; } // Compressed Snapmatic picFile->write(ragePhoto.photoData());
// } #if QT_VERSION >= 0x050000
// else saveSuccess = picFile->commit();
// { #else
// if (picFile->write(rawPicContent) == -1) { writeFailure = true; } saveSuccess = true;
// } picFile->close();
//#if QT_VERSION >= 0x050000 #endif
// if (writeFailure) { picFile->cancelWriting(); } delete picFile;
// else { saveSuccess = picFile->commit(); } }
//#else else
// if (!writeFailure) { saveSuccess = true; } {
// picFile->close(); ragePhoto.save(picFile, RagePhoto::PhotoFormat::GTA5);
//#endif #if QT_VERSION >= 0x050000
// delete picFile; saveSuccess = picFile->commit();
// } #else
// else if (format == SnapmaticFormat::JPEG_Format) saveSuccess = true;
// { picFile->close();
// // JPEG export #endif
// QBuffer snapmaticStream(&rawPicContent); delete picFile;
// snapmaticStream.open(QIODevice::ReadOnly); }
// if (snapmaticStream.seek(jpegStreamEditorBegin)) #if QT_VERSION <= 0x050000
// { if (saveSuccess) {
// QByteArray jpegRawContent = snapmaticStream.read(jpegPicStreamLength); bool tempBakCreated = false;
// if (jpegRawContentSizeE != 0) if (QFile::exists(fileName)) {
// { if (!QFile::rename(fileName, fileName % ".tmp")) {
// jpegRawContent = jpegRawContent.left(jpegRawContentSizeE); QFile::remove(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
// } return false;
// if (picFile->write(jpegRawContent) == -1) { writeFailure = true; } }
//#if QT_VERSION >= 0x050000 tempBakCreated = true;
// if (writeFailure) { picFile->cancelWriting(); } }
// else { saveSuccess = picFile->commit(); } if (!QFile::rename(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp", fileName)) {
//#else QFile::remove(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
// if (!writeFailure) { saveSuccess = true; } if (tempBakCreated)
// picFile->close(); QFile::rename(fileName % ".tmp", fileName);
//#endif return false;
// } }
// delete picFile; if (tempBakCreated)
// } QFile::remove(fileName % ".tmp");
// else }
// { #endif
// // Classic straight export return saveSuccess;
// if (!lowRamMode) }
// { else
// if (picFile->write(rawPicContent) == -1) { writeFailure = true; } {
// } delete picFile;
// else return saveSuccess;
// { }
// if (picFile->write(qUncompress(rawPicContent)) == -1) { writeFailure = true; }
// }
//#if QT_VERSION >= 0x050000
// if (writeFailure) { picFile->cancelWriting(); }
// else { saveSuccess = picFile->commit(); }
//#else
// if (!writeFailure) { saveSuccess = true; }
// picFile->close();
//#endif
// delete picFile;
// }
//#if QT_VERSION <= 0x050000
// if (saveSuccess)
// {
// bool tempBakCreated = false;
// if (QFile::exists(fileName))
// {
// if (!QFile::rename(fileName, fileName % ".tmp"))
// {
// QFile::remove(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
// return false;
// }
// tempBakCreated = true;
// }
// if (!QFile::rename(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp", fileName))
// {
// QFile::remove(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
// if (tempBakCreated) { QFile::rename(fileName % ".tmp", fileName); }
// return false;
// }
// if (tempBakCreated) { QFile::remove(fileName % ".tmp"); }
// }
//#endif
// return saveSuccess;
// }
// else
// {
// delete picFile;
// return saveSuccess;
// }
return false;
} }
void SnapmaticPicture::setPicFileName(const QString &picFileName_) void SnapmaticPicture::setPicFileName(const QString &picFileName_)

View File

@ -343,14 +343,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -992,37 +992,37 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1274,23 +1274,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1307,226 +1307,226 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1534,87 +1534,87 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1700,37 +1700,37 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1933,25 +1933,25 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2008,64 +2008,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2126,52 +2126,52 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2255,7 +2255,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2292,7 +2292,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2348,15 +2348,15 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2391,46 +2391,46 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>

Binary file not shown.

View File

@ -359,14 +359,14 @@ Snapmatic Bilder und Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation> <translation>Eigener Avatar</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigenes Bild</translation> <translation>Eigenes Bild</translation>
@ -1013,31 +1013,31 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation> <translation>Als &amp;Bild exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation> <translation>Als &amp;Snapmatic exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation> <translation>Eigenschaften bearb&amp;eiten...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation> <translation>Bild &amp;überschreiben...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation> <translation>&amp;Kartenansicht öffnen...</translation>
</message> </message>
@ -1186,7 +1186,7 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation> <translation>&amp;JSON Editor öffnen...</translation>
</message> </message>
@ -1284,40 +1284,40 @@ Drücke 1 für Standardmodus</translation>
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Lade...</translation> <translation>Lade...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Lader</translation> <translation>Snapmatic Lader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation>Importieren...</translation> <translation>Importieren...</translation>
</message> </message>
@ -1332,45 +1332,45 @@ Drücke 1 für Standardmodus</translation>
<translation>Importieren</translation> <translation>Importieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Spielstanddateien (SGTA*)</translation> <translation>Spielstanddateien (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation> <translation>Snapmatic Bilder (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Importfähige Dateien (%1)</translation> <translation>Importfähige Dateien (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Alle Bilddateien (%1)</translation> <translation>Alle Bilddateien (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Alle Dateien (**)</translation> <translation>Alle Dateien (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Importiere Datei %1 von %2 Dateien</translation> <translation>Importiere Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1379,149 +1379,149 @@ Drücke 1 für Standardmodus</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Fehler beim Lesen vom Snapmatic Bild</translation> <translation>Fehler beim Lesen vom Snapmatic Bild</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Fehler beim Lesen von Spielstanddatei</translation> <translation>Fehler beim Lesen von Spielstanddatei</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation> <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation> <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation> <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisiere Export...</translation> <translation>Initialisiere Export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation> <translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation> <translation>Keine gültige Datei wurde ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Aktivierte Bilder: %1 von %2</translation> <translation>Aktivierte Bilder: %1 von %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation> <translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation> <translation>JPG Bilder und GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation> <translation>Nur JPG Bilder</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation> <translation>Nur GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Auswahl patchen...</translation> <translation>Auswahl patchen...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation> <translation>Patche Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation> <translation>Als Avatar qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation> <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation> <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1531,93 +1531,93 @@ Drücke 1 für Standardmodus</translation>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Bereite Inhalt für Import vor...</translation> <translation>Bereite Inhalt für Import vor...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Qualifizieren</translation> <translation>Qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Spieler ändern...</translation> <translation>Spieler ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Spieler ändern</translation> <translation>Spieler ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Crew ändern...</translation> <translation>Crew ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation> <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Crew ändern</translation> <translation>Crew ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Titel ändern...</translation> <translation>Titel ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation> <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Titel ändern</translation> <translation>Titel ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation> <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Auswahl löschen</translation> <translation>Auswahl löschen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation> <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Auswahl exportieren...</translation> <translation>Auswahl exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1631,13 +1631,13 @@ Drücke 1 für Standardmodus</translation>
<translation>Exportiere Datei %1 von %2 Dateien</translation> <translation>Exportiere Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
@ -1769,32 +1769,32 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation> <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>A&amp;nsehen</translation> <translation>A&amp;nsehen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation> <translation>Entfe&amp;rnen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>Au&amp;swählen</translation> <translation>Au&amp;swählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation> <translation>A&amp;bwählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation> <translation>&amp;Alles auswählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation> <translation>Alles a&amp;bwählen</translation>
</message> </message>
@ -1809,7 +1809,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation> <translation>Spielstand kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
@ -1903,7 +1903,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Snapmatic Titel</translation> <translation>Snapmatic Titel</translation>
@ -2019,19 +2019,19 @@ Drücke 1 für Standardmodus</translation>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation> <translation>Neuer Snapmatic Titel:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation> <translation>Snapmatic Crew</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation> <translation>Neue Snapmatic Crew:</translation>
@ -2040,66 +2040,66 @@ Drücke 1 für Standardmodus</translation>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>FOTO - %1</translation> <translation>FOTO - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>Datei öffnen %1</translation> <translation>Datei öffnen %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation>Header nicht existiert</translation> <translation>Header nicht existiert</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>Header fehlerhaft ist</translation> <translation>Header fehlerhaft ist</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>Bild nicht existiert (%1)</translation> <translation>Bild nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON nicht existiert (%1)</translation> <translation>JSON nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>Titel nicht existiert (%1)</translation> <translation>Titel nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>Beschreibung nicht existiert (%1)</translation> <translation>Beschreibung nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>Datei lesen von %1 weil %2</translation> <translation>Datei lesen von %1 weil %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON ist unvollständig und Fehlerhaft</translation> <translation>JSON ist unvollständig und Fehlerhaft</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON ist unvollständig</translation> <translation>JSON ist unvollständig</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON ist Fehlerhaft</translation> <translation>JSON ist Fehlerhaft</translation>
</message> </message>
@ -2159,52 +2159,52 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation> <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation> <translation>Bearbei&amp;ten</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation> <translation>&amp;Im Spiel anzeigen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation> <translation>&amp;Im Spiel ausblenden</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>A&amp;nsehen</translation> <translation>A&amp;nsehen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation> <translation>Entfe&amp;rnen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>Au&amp;swählen</translation> <translation>Au&amp;swählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation> <translation>A&amp;bwählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation> <translation>Alles &amp;auswählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation> <translation>Alles a&amp;bwählen</translation>
</message> </message>
@ -2347,7 +2347,7 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation>Wähle &amp;GTA V Ordner...</translation> <translation>Wähle &amp;GTA V Ordner...</translation>
</message> </message>
@ -2363,7 +2363,7 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
@ -2399,21 +2399,21 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation>Profil auswählen</translation> <translation>Profil auswählen</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation>Wähle GTA V Ordner...</translation> <translation>Wähle GTA V Ordner...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation>Datei öffnen...</translation> <translation>Datei öffnen...</translation>
</message> </message>
@ -2426,25 +2426,25 @@ Drücke 1 für Standardmodus</translation>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation>&amp;Über %1</translation> <translation>&amp;Über %1</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation>Datei öffnen</translation> <translation>Datei öffnen</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation>Kann nicht %1 öffnen weil Dateiformat nicht gültig ist</translation> <translation>Kann nicht %1 öffnen weil Dateiformat nicht gültig ist</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation>%1 - Nachrichten</translation> <translation>%1 - Nachrichten</translation>
</message> </message>
@ -2454,15 +2454,15 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation> <translation>&amp;Neuladen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Im Spiel anzeigen</translation> <translation>Im Spiel anzeigen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation> <translation>Im Spiel ausblenden</translation>

Binary file not shown.

View File

@ -349,14 +349,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -992,31 +992,31 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1168,7 +1168,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1272,45 +1272,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1325,219 +1325,219 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initializing export...</translation> <translation>Initializing export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1545,76 +1545,76 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1700,37 +1700,37 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1980,25 +1980,25 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2007,66 +2007,66 @@ Press 1 for Default View</source>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2126,52 +2126,52 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2255,7 +2255,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2287,7 +2287,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2343,15 +2343,15 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2392,44 +2392,44 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>

Binary file not shown.

View File

@ -359,14 +359,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Avatar personnalisé</translation> <translation>Avatar personnalisé</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Image personnalisé</translation> <translation>Image personnalisé</translation>
@ -1093,31 +1093,31 @@ Y : %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation> <translation>Exporter comme &amp;image...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation> <translation>Exporter comme &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation> <translation>&amp;Remplacer l&apos;image...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation> <translation>Modifier les &amp;propriétés...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation> <translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message> </message>
@ -1186,7 +1186,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation> <translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message> </message>
@ -1290,45 +1290,45 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Copie du fichier %1 sur %2</translation> <translation>Copie du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Photos activées : %1 sur %2</translation> <translation>Photos activées : %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Chargement...</translation> <translation>Chargement...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation> <translation>Snapmatic Loader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation>Importer...</translation> <translation>Importer...</translation>
</message> </message>
@ -1343,40 +1343,40 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Importer</translation> <translation>Importer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation> <translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Photos Snapmatic (PGTA*)</translation> <translation>Photos Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Toutes les images (%1)</translation> <translation>Toutes les images (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Tous les fichiers (**)</translation> <translation>Tous les fichiers (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Importation du fichier %1 sur %2</translation> <translation>Importation du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1385,148 +1385,148 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Fichier invalide</translation> <translation>Fichier invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Fichiers importables (%1)</translation> <translation>Fichiers importables (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Impossible d&apos;ouvrir la photo Snapmatic</translation> <translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Impossible de lire le fichier de sauvegarde</translation> <translation>Impossible de lire le fichier de sauvegarde</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation> <translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation> <translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation> <translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation> <translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation> <translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation> <translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation> <translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation> <translation>Images JPG et GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Images JPG seulement</translation> <translation>Images JPG seulement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation> <translation>GTA Snapmatic seulement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation> <translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Exporter la sélection...</translation> <translation>Exporter la sélection...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation> <translation>Initialisation de l&apos;export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation> <translation>Qualifier comme Avatar</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation> <translation>Aucun Snapmatic sélectionné</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Patcher la sélection...</translation> <translation>Patcher la sélection...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation> <translation>Patch du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1536,76 +1536,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation> <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Préparation du contenu pour l&apos;import...</translation> <translation>Préparation du contenu pour l&apos;import...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation> <translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Qualifier</translation> <translation>Qualifier</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Modifier les joueurs...</translation> <translation>Modifier les joueurs...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation> <translation>Modifier les joueurs</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Modifier le Crew...</translation> <translation>Modifier le Crew...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation> <translation>Snapmatic Crew ID invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Changer le Crew</translation> <translation>Changer le Crew</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Changer le titre...</translation> <translation>Changer le titre...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation> <translation>Titre Snapmatic invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Changer le titre</translation> <translation>Changer le titre</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1614,31 +1614,31 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation> <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Supprimer la sélection</translation> <translation>Supprimer la sélection</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Supprimer la sélection ?</translation> <translation>Supprimer la sélection ?</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation> <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
@ -1732,7 +1732,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation> <translation>Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
@ -1823,32 +1823,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation> <translation>Impossible de supprimer %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Voir</translation> <translation>&amp;Voir</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Supprimer</translation> <translation>&amp;Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Sélectionner</translation> <translation>&amp;Sélectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation> <translation>&amp;Déselectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation> <translation>Sélectionner to&amp;ut</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -1904,7 +1904,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Titre Snapmatic</translation> <translation>Titre Snapmatic</translation>
@ -2022,19 +2022,19 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation> <translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation> <translation>Nouveau titre Snapmatic :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation> <translation>Crew Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation> <translation>Nouveau crew Snapmatic :</translation>
@ -2043,66 +2043,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>PHOTO - %1</translation> <translation>PHOTO - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>ouverture du fichier %1</translation> <translation>ouverture du fichier %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation>les headers n&apos;existent pas</translation> <translation>les headers n&apos;existent pas</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>les headers sont incorrects</translation> <translation>les headers sont incorrects</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>l&apos;image n&apos;existe pas (%1)</translation> <translation>l&apos;image n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>le JSON n&apos;existe pas (%1)</translation> <translation>le JSON n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>le titre n&apos;existe pas (%1)</translation> <translation>le titre n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>la description n&apos;existe pas (%1)</translation> <translation>la description n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>lecture du fichier %1 : %2</translation> <translation>lecture du fichier %1 : %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON incomplet ou incorrect</translation> <translation>JSON incomplet ou incorrect</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON incomplet</translation> <translation>JSON incomplet</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON incorrect</translation> <translation>JSON incorrect</translation>
</message> </message>
@ -2182,52 +2182,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation> <translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation> <translation>Édi&amp;ter</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation> <translation>&amp;Visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation> <translation>&amp;Invisible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Voir</translation> <translation>&amp;Voir</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>S&amp;upprimer</translation> <translation>S&amp;upprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Sélectionner</translation> <translation>&amp;Sélectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation> <translation>&amp;Déselectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation> <translation>Sélectionner &amp;tout</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -2285,7 +2285,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>Fer&amp;mer</translation> <translation>Fer&amp;mer</translation>
</message> </message>
@ -2361,15 +2361,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation>Modifier l&apos;emplacement de &amp;GTA V...</translation> <translation>Modifier l&apos;emplacement de &amp;GTA V...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation>Modifier l&apos;emplacement de GTA V...</translation> <translation>Modifier l&apos;emplacement de GTA V...</translation>
</message> </message>
@ -2422,50 +2422,50 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation>&amp;À propos de %1</translation> <translation>&amp;À propos de %1</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation>Sélectionner un profil</translation> <translation>Sélectionner un profil</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation>Ouvrir...</translation> <translation>Ouvrir...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation>Ouvrir</translation> <translation>Ouvrir</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation>Impossible d&apos;ouvrir %1, format invalide</translation> <translation>Impossible d&apos;ouvrir %1, format invalide</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation>%1 - Nouvelles</translation> <translation>%1 - Nouvelles</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Visible en jeu</translation> <translation>Visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Invisible en jeu</translation> <translation>Invisible en jeu</translation>

Binary file not shown.

View File

@ -353,7 +353,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment> <translatorcomment> . !</translatorcomment>
@ -361,7 +361,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment> <translatorcomment> . !</translatorcomment>
@ -1021,37 +1021,37 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation> (&amp;P)...</translation> <translation> (&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation> (&amp;S)...</translation> <translation> (&amp;S)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation> (&amp;E)...</translation> <translation> (&amp;E)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation> (&amp;O)...</translation> <translation> (&amp;O)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation> (&amp;M)...</translation> <translation> (&amp;M)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>JSON (&amp;J)...</translation> <translation>JSON (&amp;J)...</translation>
</message> </message>
@ -1306,23 +1306,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
@ -1339,90 +1339,90 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation> (**)</translation> <translation> (**)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation> : %2 %1</translation> <translation> : %2 %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; &lt;/h4&gt;%1</translation> <translation>&lt;h4&gt; &lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V로 (*.g5e)</translation> <translation>GTA V로 (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation> <translation> (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation> (PGTA*)</translation> <translation> (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>%2 %1 </translation> <translation>%2 %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1431,91 +1431,91 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> . PGTA로 .g5e로 </translation> <translation> . PGTA로 .g5e로 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>uid %1() . uid ?</translation> <translation>uid %1() . uid ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> . </translation> <translation> . </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation> . </translation> <translation> . </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation> . </translation> <translation> . </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA </translation> <translation>JPG GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>JPG </translation> <translation>JPG </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>GTA </translation> <translation>GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 %2 &lt;br&gt;&lt;br&gt;JPG &lt;br&gt;GTA </translation> <translation>%1 %2 &lt;br&gt;&lt;br&gt;JPG &lt;br&gt;GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1524,45 +1524,45 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> ?</translation> <translation> ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1573,91 +1573,91 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>%2 %1 </translation> <translation>%2 %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation> (*.g5e SGTA* PGTA*)</translation> <translation> (*.g5e SGTA* PGTA*)</translation>
</message> </message>
@ -1751,37 +1751,37 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation> (&amp;A)</translation> <translation> (&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
@ -1986,25 +1986,25 @@ Press 1 for Default View</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation> :</translation> <translation> :</translation>
@ -2065,64 +2065,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON이 </translation> <translation>JSON이 </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON이 </translation> <translation>JSON이 </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation> JSON </translation> <translation> JSON </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON이 . (%1)</translation> <translation>JSON이 . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translatorcomment>%2 : JSON이 </translatorcomment> <translatorcomment>%2 : JSON이 </translatorcomment>
@ -2184,52 +2184,52 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>(&amp;T)</translation> <translation>(&amp;T)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation> (&amp;I)</translation> <translation> (&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation> (&amp;I)</translation> <translation> (&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation> (&amp;A)</translation> <translation> (&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
@ -2314,7 +2314,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
@ -2351,7 +2351,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation>%1 (&amp;A)</translation> <translation>%1 (&amp;A)</translation>
</message> </message>
@ -2407,15 +2407,15 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation>GTA V (&amp;G)...</translation> <translation>GTA V (&amp;G)...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation>GTA V ...</translation> <translation>GTA V ...</translation>
</message> </message>
@ -2450,46 +2450,46 @@ Press 1 for Default View</source>
<translation> (&amp;P)...</translation> <translation> (&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation>%1 - </translation> <translation>%1 - </translation>
</message> </message>

Binary file not shown.

View File

@ -367,14 +367,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Свой Аватар</translation> <translation>Свой Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Своя Картинка</translation> <translation>Своя Картинка</translation>
@ -1024,31 +1024,31 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation> <translation>Экспортировать как &amp;картинку...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation> <translation>Экспортировать как &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation> <translation>&amp;Перезаписать картинку...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation> <translation>&amp;Изменить свойства...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation> <translation>Открыть &amp;карту...</translation>
</message> </message>
@ -1197,7 +1197,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation> <translation>Открыть &amp;редактор JSON...</translation>
</message> </message>
@ -1294,17 +1294,17 @@ Press 1 for Default View</source>
<translation>&amp;Закрыть</translation> <translation>&amp;Закрыть</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Загрузка...</translation> <translation>Загрузка...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Загрузчик Snapmatic</translation> <translation>Загрузчик Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line <translatorcomment>Change wording if the %1 is not a multiline beginning at new line
</translatorcomment> </translatorcomment>
@ -1313,23 +1313,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation>Импортировать...</translation> <translation>Импортировать...</translation>
</message> </message>
@ -1344,33 +1344,33 @@ Press 1 for Default View</source>
<translation>Импортировать</translation> <translation>Импортировать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Файлы сохранения (SGTA*)</translation> <translation>Файлы сохранения (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Картинка Snapmatic (PGTA*)</translation> <translation>Картинка Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Все файлы (**)</translation> <translation>Все файлы (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Импортируются файлы %1 из %2</translation> <translation>Импортируются файлы %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1379,169 +1379,169 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Не удалось загрузить картинку Snapmatic</translation> <translation>Не удалось загрузить картинку Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation> <translation>Не удалось загрузить файл сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation> <translation>Выбранный файл неверен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Включенные картинки: %1 из %2</translation> <translation>Включенные картинки: %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Файлы для импорта (%1)</translation> <translation>Файлы для импорта (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation> <translation>Все файлы изображений (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation> <translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation> <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation> <translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation> <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation> <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation> <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation> <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation> <translation>Картинки JPG и GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Только картинки JPG</translation> <translation>Только картинки JPG</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation> <translation>Только GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation> <translation>Подготовка к экспорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не выделены ни один Snapmatic или сохранение</translation> <translation>Не выделены ни один Snapmatic или сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Снять выделение</translation> <translation>Снять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation> <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Подготовка данных к импорту...</translation> <translation>Подготовка данных к импорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation> <translation>Пометить как Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation> <translation>Не выделена ни одна картинка Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation> <translation>Пропатчить выделенные...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation> <translation>Изменяется файл %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1551,86 +1551,86 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment> <translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation> <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Помечание</translation> <translation>Помечание</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Изменить игроков...</translation> <translation>Изменить игроков...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Измение игроков</translation> <translation>Измение игроков</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Изменить банду...</translation> <translation>Изменить банду...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation> <translation>Введённый идентификатор банды не верен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Изменение банды</translation> <translation>Изменение банды</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Изменить заголовок...</translation> <translation>Изменить заголовок...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation> <translation>Введённый заголовок не верен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation> <translation>Изменение заголовка</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation> <translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Экпортировать выделенное...</translation> <translation>Экпортировать выделенное...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1646,13 +1646,13 @@ Press 1 for Default View</source>
<translation>Экспортируется файл %1 из %2</translation> <translation>Экспортируется файл %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
@ -1789,32 +1789,32 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation> <translation>Не удалось удалить сохранение %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Просмотр</translation> <translation>&amp;Просмотр</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Удалить</translation> <translation>&amp;Удалить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выбрать</translation> <translation>&amp;Выбрать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation> <translation>Сн&amp;ять выбор</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation> <translation>В&amp;ыбрать все</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -1824,7 +1824,7 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation> <translation>Копировать сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспортировать</translation> <translation>&amp;Экспортировать</translation>
</message> </message>
@ -1928,7 +1928,7 @@ Press 1 for Default View</source>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation> <translation>Заголовок Snapmatic</translation>
@ -2034,19 +2034,19 @@ Press 1 for Default View</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation> <translation>Новый заголовок Snapmatic:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation> <translation>Банда на Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation> <translation>Новая банда на Snapmatic:</translation>
@ -2055,66 +2055,66 @@ Press 1 for Default View</source>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>Открыть файл %1</translation> <translation>Открыть файл %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation>Отсутствует шапка (header)</translation> <translation>Отсутствует шапка (header)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>Шапка (header) повреждена</translation> <translation>Шапка (header) повреждена</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>Картинки не существует (%1)</translation> <translation>Картинки не существует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON не существует (%1)</translation> <translation>JSON не существует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>Заголовок отсутствует (%1)</translation> <translation>Заголовок отсутствует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>Описание отсутствует (%1)</translation> <translation>Описание отсутствует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>Чтение из файла %1 из-за %2</translation> <translation>Чтение из файла %1 из-за %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON не полный и повреждён</translation> <translation>JSON не полный и повреждён</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON частично отсутствует</translation> <translation>JSON частично отсутствует</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON повреждён</translation> <translation>JSON повреждён</translation>
</message> </message>
@ -2184,52 +2184,52 @@ Press 1 for Default View</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>&amp;Правка</translation> <translation>&amp;Правка</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation> <translation>Показывать в &amp;игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation> <translation>Ск&amp;рыть в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспорт</translation> <translation>&amp;Экспорт</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>По&amp;казать</translation> <translation>По&amp;казать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>У&amp;далить</translation> <translation>У&amp;далить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выделить</translation> <translation>&amp;Выделить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation> <translation>Сн&amp;ять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation> <translation>В&amp;ыбрать все</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -2337,7 +2337,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation>Выбрать &amp;папку GTA V...</translation> <translation>Выбрать &amp;папку GTA V...</translation>
</message> </message>
@ -2373,7 +2373,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>&amp;Закрыть</translation> <translation>&amp;Закрыть</translation>
</message> </message>
@ -2414,16 +2414,16 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation>Выбор профиля</translation> <translation>Выбор профиля</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation>Выбрать папку GTA V...</translation> <translation>Выбрать папку GTA V...</translation>
</message> </message>
@ -2436,30 +2436,30 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation>&amp;О программе %1</translation> <translation>&amp;О программе %1</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation>Открыть файл...</translation> <translation>Открыть файл...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation>Открыть файл</translation> <translation>Открыть файл</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation>Не удалось открыть %1 из-за неверного формата файла</translation> <translation>Не удалось открыть %1 из-за неверного формата файла</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation>%1 - Новости</translation> <translation>%1 - Новости</translation>
</message> </message>
@ -2469,15 +2469,15 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation> <translation>Пере&amp;загрузить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Показывать в игре</translation> <translation>Показывать в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Скрыть в игре</translation> <translation>Скрыть в игре</translation>

Binary file not shown.

View File

@ -356,14 +356,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацький Аватар</translation> <translation>Користувацький Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацьке Зображення</translation> <translation>Користувацьке Зображення</translation>
@ -1011,37 +1011,37 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation> <translation>Експортувати як &amp;зображення...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation> <translation>Експортувати як &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation> <translation>&amp;Змінити властивості...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation> <translation>&amp;Перезаписати зображення...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation> <translation>Відкрити &amp;карту...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation> <translation>Відкрити редактор &amp;JSON...</translation>
</message> </message>
@ -1296,23 +1296,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation>Імпортування...</translation> <translation>Імпортування...</translation>
</message> </message>
@ -1329,90 +1329,90 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Файли зображень (%1)</translation> <translation>Файли зображень (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Усі файли (**)</translation> <translation>Усі файли (**)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation> <translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation> <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Увімкнено фотографії:%1 з%2</translation> <translation>Увімкнено фотографії:%1 з%2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Завантаження...</translation> <translation>Завантаження...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation> <translation>Snapmatic Loader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Імпортуються файли (%1)</translation> <translation>Імпортуються файли (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Файли збереження гри (SGTA*)</translation> <translation>Файли збереження гри (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic зображення (PGTA*)</translation> <translation>Snapmatic зображення (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Вибрані недійсні файли</translation> <translation>Вибрані недійсні файли</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Імпортується файл %1 з %2 файлів</translation> <translation>Імпортується файл %1 з %2 файлів</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1421,81 +1421,81 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Не вдалося прочитати Snapmatic картинку</translation> <translation>Не вдалося прочитати Snapmatic картинку</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не вдалося прочитати файл збереження гри</translation> <translation>Не вдалося прочитати файл збереження гри</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation> <translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation> <translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation> <translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation> <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation> <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Експорт обраних...</translation> <translation>Експорт обраних...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation> <translation>JPG картинки і GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation> <translation>Тільки JPG картинки</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation> <translation>Тільки GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation> <translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation> <translation>Ініціалізація експорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1504,45 +1504,45 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation> <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Видалити вибрані</translation> <translation>Видалити вибрані</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation> <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation> <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation> <translation>Не вибрано жодного Snapmatic зображення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1552,97 +1552,97 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Підготувати контент для імпорту ...</translation> <translation>Підготувати контент для імпорту ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation> <translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation> <translation>Позначити як Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Вибір патчу...</translation> <translation>Вибір патчу...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation> <translation>Патч файлу %1 з %2 файлів</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Якість</translation> <translation>Якість</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Зміна гравців...</translation> <translation>Зміна гравців...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити гравців</translation> <translation>Змінити гравців</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Зміна банди...</translation> <translation>Зміна банди...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити банду</translation> <translation>Змінити банду</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Зміна назви...</translation> <translation>Зміна назви...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити назву</translation> <translation>Змінити назву</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation>Усі файли зображень (*.g5e SGTA* PGTA*)</translation> <translation>Усі файли зображень (*.g5e SGTA* PGTA*)</translation>
</message> </message>
@ -1736,37 +1736,37 @@ Press 1 for Default View</source>
<translation>Видалити</translation> <translation>Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Перегляд</translation> <translation>&amp;Перегляд</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Експорт</translation> <translation>&amp;Експорт</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Видалення</translation> <translation>&amp;Видалення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Виділення</translation> <translation>&amp;Виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation> <translation>&amp;Зняти виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation> <translation>Вибрати &amp;усі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation> <translation>&amp;Зняти виділення усіх</translation>
</message> </message>
@ -1971,25 +1971,25 @@ Press 1 for Default View</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation> <translation>Snapmatic банда</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation> <translation>Нова Snapmatic банда:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Snapmatic назва</translation> <translation>Snapmatic назва</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation> <translation>Новий Snapmatic заголовок:</translation>
@ -2046,64 +2046,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON неповний та неправильний</translation> <translation>JSON неповний та неправильний</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON неповний</translation> <translation>JSON неповний</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON неправильний</translation> <translation>JSON неправильний</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>відкрити файл%1</translation> <translation>відкрити файл%1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation>заголовок не існує</translation> <translation>заголовок не існує</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>заголовок неправильний</translation> <translation>заголовок неправильний</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>зображення не існує (%1)</translation> <translation>зображення не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON не існує (%1)</translation> <translation>JSON не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>заголовок не існує (%1)</translation> <translation>заголовок не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>опис не існує (%1)</translation> <translation>опис не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>читання файлу %1 тому що %2</translation> <translation>читання файлу %1 тому що %2</translation>
@ -2164,52 +2164,52 @@ Press 1 for Default View</source>
<translation>Видалити</translation> <translation>Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation> <translation>Редагува&amp;ти</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation> <translation>Показати &amp;у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation> <translation>Сховати &amp;у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Експортувати</translation> <translation>&amp;Експортувати</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Переглянути</translation> <translation>&amp;Переглянути</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Видалити</translation> <translation>&amp;Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Виділення</translation> <translation>&amp;Виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation> <translation>&amp;Зняти виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation> <translation>Вибрати &amp;усі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation> <translation>&amp;Зняти виділення усіх</translation>
</message> </message>
@ -2294,7 +2294,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>&amp;Закрити</translation> <translation>&amp;Закрити</translation>
</message> </message>
@ -2331,7 +2331,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation>&amp;Про %1</translation> <translation>&amp;Про %1</translation>
</message> </message>
@ -2387,15 +2387,15 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation>Вибрати &amp;GTA V теку...</translation> <translation>Вибрати &amp;GTA V теку...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation>Вибрати GTA V теку...</translation> <translation>Вибрати GTA V теку...</translation>
</message> </message>
@ -2430,46 +2430,46 @@ Press 1 for Default View</source>
<translation>Змінити &amp;гравців...</translation> <translation>Змінити &amp;гравців...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Показати у грі</translation> <translation>Показати у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Сховати у грі</translation> <translation>Сховати у грі</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation>Вибрати профіль</translation> <translation>Вибрати профіль</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation>Відкрити файл...</translation> <translation>Відкрити файл...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation>Відкрити файл</translation> <translation>Відкрити файл</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation>Неможливо відкрити %1 через невідомий формат файлу</translation> <translation>Неможливо відкрити %1 через невідомий формат файлу</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation>%1 - Новини</translation> <translation>%1 - Новини</translation>
</message> </message>

Binary file not shown.

View File

@ -352,14 +352,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="720"/> <location filename="../ProfileInterface.cpp" line="721"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="739"/> <location filename="../ProfileInterface.cpp" line="740"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation> <translation></translation>
@ -1005,37 +1005,37 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="174"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation> <translation>(&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation> <translation> Snapmatic(&amp;S)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="177"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation> <translation>(&amp;E) ...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="178"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation> <translation>(&amp;O)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="180"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1634"/> <location filename="../ProfileInterface.cpp" line="1655"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation> <translation>(&amp;M)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="182"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation> <translation> JSON (&amp;J)...</translation>
</message> </message>
@ -1290,23 +1290,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="497"/>
<location filename="../ProfileInterface.cpp" line="561"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="596"/>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="786"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="943"/>
<location filename="../ProfileInterface.cpp" line="977"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1263"/>
<source>Import...</source> <source>Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
@ -1323,216 +1323,216 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="516"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="516"/> <location filename="../ProfileInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="477"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation> (**)</translation> <translation> (**)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="781"/> <location filename="../ProfileInterface.cpp" line="786"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="791"/> <location filename="../ProfileInterface.cpp" line="796"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="84"/> <location filename="../ProfileInterface.cpp" line="85"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation> %1 %2</translation> <translation> %1 %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="184"/> <location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source> <source>Loading...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic </translation> <translation>Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="422"/> <location filename="../ProfileInterface.cpp" line="423"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation> <translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="511"/> <location filename="../ProfileInterface.cpp" line="512"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="512"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="474"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="513"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="475"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation> <translation> (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="514"/> <location filename="../ProfileInterface.cpp" line="515"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="476"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic (PGTA*)</translation> <translation>Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="540"/> <location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="948"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="562"/> <location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="579"/> <location filename="../ProfileInterface.cpp" line="580"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation> %1 %2 </translation> <translation> %1 %2 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="596"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="638"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="672"/> <location filename="../ProfileInterface.cpp" line="673"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="943"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1103"/> <location filename="../ProfileInterface.cpp" line="1116"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> Snapmatic PGTA .g5e</translation> <translation> Snapmatic PGTA .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1199"/> <location filename="../ProfileInterface.cpp" line="1220"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1236"/> <location filename="../ProfileInterface.cpp" line="1257"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1242"/> <location filename="../ProfileInterface.cpp" line="1263"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1306"/> <location filename="../ProfileInterface.cpp" line="1327"/>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<location filename="../ProfileInterface.cpp" line="1389"/> <location filename="../ProfileInterface.cpp" line="1410"/>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1329"/> <location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1347"/> <location filename="../ProfileInterface.cpp" line="1368"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation> <translation>JPG GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1330"/> <location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1352"/> <location filename="../ProfileInterface.cpp" line="1373"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation> JPG </translation> <translation> JPG </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1331"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1377"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation> <translation> GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1344"/> <location filename="../ProfileInterface.cpp" line="1365"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation> <translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1390"/> <location filename="../ProfileInterface.cpp" line="1411"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1424"/> <location filename="../ProfileInterface.cpp" line="1445"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1444"/> <location filename="../ProfileInterface.cpp" line="1465"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<location filename="../ProfileInterface.cpp" line="1486"/> <location filename="../ProfileInterface.cpp" line="1507"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1452"/> <location filename="../ProfileInterface.cpp" line="1473"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> Snapmatic /?</translation> <translation> Snapmatic /?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1480"/> <location filename="../ProfileInterface.cpp" line="1501"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> Snapmatic /</translation> <translation> Snapmatic /</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1542,97 +1542,97 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="993"/> <location filename="../ProfileInterface.cpp" line="1002"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1111"/> <location filename="../ProfileInterface.cpp" line="1124"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation> uid %1 Snapmatic uid ?</translation> <translation> uid %1 Snapmatic uid ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1997"/> <location filename="../ProfileInterface.cpp" line="2018"/>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2008"/> <location filename="../ProfileInterface.cpp" line="2029"/>
<location filename="../ProfileInterface.cpp" line="2111"/> <location filename="../ProfileInterface.cpp" line="2132"/>
<location filename="../ProfileInterface.cpp" line="2242"/> <location filename="../ProfileInterface.cpp" line="2263"/>
<location filename="../ProfileInterface.cpp" line="2348"/> <location filename="../ProfileInterface.cpp" line="2369"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2009"/> <location filename="../ProfileInterface.cpp" line="2030"/>
<location filename="../ProfileInterface.cpp" line="2028"/> <location filename="../ProfileInterface.cpp" line="2049"/>
<location filename="../ProfileInterface.cpp" line="2112"/> <location filename="../ProfileInterface.cpp" line="2133"/>
<location filename="../ProfileInterface.cpp" line="2131"/> <location filename="../ProfileInterface.cpp" line="2152"/>
<location filename="../ProfileInterface.cpp" line="2243"/> <location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2262"/> <location filename="../ProfileInterface.cpp" line="2283"/>
<location filename="../ProfileInterface.cpp" line="2349"/> <location filename="../ProfileInterface.cpp" line="2370"/>
<location filename="../ProfileInterface.cpp" line="2368"/> <location filename="../ProfileInterface.cpp" line="2389"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation> <translation> %1 %2 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2062"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2083"/> <location filename="../ProfileInterface.cpp" line="2104"/>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2161"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2182"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2219"/> <location filename="../ProfileInterface.cpp" line="2240"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation> <translation> ID</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2292"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2313"/> <location filename="../ProfileInterface.cpp" line="2334"/>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2330"/> <location filename="../ProfileInterface.cpp" line="2351"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2395"/> <location filename="../ProfileInterface.cpp" line="2416"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="470"/> <location filename="../UserInterface.cpp" line="473"/>
<source>All profile files (*.g5e SGTA* PGTA*)</source> <source>All profile files (*.g5e SGTA* PGTA*)</source>
<translation> (*.g5e SGTA* PGTA*)</translation> <translation> (*.g5e SGTA* PGTA*)</translation>
</message> </message>
@ -1726,37 +1726,37 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1695"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1698"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>(&amp;A)</translation> <translation>(&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1685"/> <location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
@ -1961,25 +1961,25 @@ Press 1 for Default View</source>
<translation>JSON Snapmatic </translation> <translation>JSON Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2210"/> <location filename="../ProfileInterface.cpp" line="2231"/>
<location filename="../SnapmaticEditor.cpp" line="442"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2325"/> <location filename="../ProfileInterface.cpp" line="2346"/>
<location filename="../SnapmaticEditor.cpp" line="413"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>:</translation> <translation>:</translation>
@ -2036,64 +2036,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="733"/> <location filename="../SnapmaticPicture.cpp" line="354"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="737"/> <location filename="../SnapmaticPicture.cpp" line="358"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="741"/> <location filename="../SnapmaticPicture.cpp" line="362"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="467"/> <location filename="../SnapmaticPicture.cpp" line="159"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="693"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="709"/> <location filename="../SnapmaticPicture.cpp" line="330"/>
<source>header not exists</source> <source>header not exists</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="713"/> <location filename="../SnapmaticPicture.cpp" line="334"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="717"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="721"/> <location filename="../SnapmaticPicture.cpp" line="342"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON (%1)</translation> <translation>JSON (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="725"/> <location filename="../SnapmaticPicture.cpp" line="346"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="729"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="743"/> <location filename="../SnapmaticPicture.cpp" line="364"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation> %1 %2</translation> <translation> %1 %2</translation>
@ -2154,52 +2154,52 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>(&amp;I)</translation> <translation>(&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation> <translation>(&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1636"/> <location filename="../ProfileInterface.cpp" line="1657"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1639"/> <location filename="../ProfileInterface.cpp" line="1660"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1642"/> <location filename="../ProfileInterface.cpp" line="1663"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1644"/> <location filename="../ProfileInterface.cpp" line="1665"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1666"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1648"/> <location filename="../ProfileInterface.cpp" line="1669"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>(&amp;A)</translation> <translation>(&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1652"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
@ -2283,7 +2283,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="153"/> <location filename="../UserInterface.ui" line="153"/>
<location filename="../UserInterface.cpp" line="676"/> <location filename="../UserInterface.cpp" line="679"/>
<source>&amp;Close</source> <source>&amp;Close</source>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
@ -2320,7 +2320,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.ui" line="236"/> <location filename="../UserInterface.ui" line="236"/>
<location filename="../UserInterface.cpp" line="66"/> <location filename="../UserInterface.cpp" line="66"/>
<location filename="../UserInterface.cpp" line="765"/> <location filename="../UserInterface.cpp" line="768"/>
<source>&amp;About %1</source> <source>&amp;About %1</source>
<translation> %1(&amp;A)</translation> <translation> %1(&amp;A)</translation>
</message> </message>
@ -2376,15 +2376,15 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="319"/> <location filename="../UserInterface.ui" line="319"/>
<location filename="../UserInterface.cpp" line="254"/> <location filename="../UserInterface.cpp" line="257"/>
<source>Select &amp;GTA V Folder...</source> <source>Select &amp;GTA V Folder...</source>
<translation> GTA V (&amp;G)...</translation> <translation> GTA V (&amp;G)...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="322"/> <location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="744"/> <location filename="../OptionsDialog.cpp" line="744"/>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="197"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="735"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation> GTA V ...</translation> <translation> GTA V ...</translation>
</message> </message>
@ -2419,46 +2419,46 @@ Press 1 for Default View</source>
<translation>(&amp;P)...</translation> <translation>(&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1552"/> <location filename="../ProfileInterface.cpp" line="1573"/>
<location filename="../ProfileInterface.cpp" line="1566"/> <location filename="../ProfileInterface.cpp" line="1587"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1607"/>
<location filename="../ProfileInterface.cpp" line="1600"/> <location filename="../ProfileInterface.cpp" line="1621"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="70"/> <location filename="../UserInterface.cpp" line="70"/>
<location filename="../UserInterface.cpp" line="320"/> <location filename="../UserInterface.cpp" line="323"/>
<location filename="../UserInterface.cpp" line="779"/> <location filename="../UserInterface.cpp" line="782"/>
<source>Select Profile</source> <source>Select Profile</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="467"/> <location filename="../UserInterface.cpp" line="470"/>
<source>Open File...</source> <source>Open File...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="517"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="533"/>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="565"/>
<source>Open File</source> <source>Open File</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="557"/> <location filename="../UserInterface.cpp" line="560"/>
<source>Can&apos;t open %1 because of not valid file format</source> <source>Can&apos;t open %1 because of not valid file format</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="648"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation>%1 - </translation> <translation>%1 - </translation>
</message> </message>