diff --git a/ImportDialog.cpp b/ImportDialog.cpp index 7a48c8c..213eb4e 100644 --- a/ImportDialog.cpp +++ b/ImportDialog.cpp @@ -16,10 +16,11 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. *****************************************************************************/ -#include "ImportDialog.h" #include "ui_ImportDialog.h" +#include "SnapmaticPicture.h" #include "SidebarGenerator.h" #include "StandardPaths.h" +#include "ImportDialog.h" #include "imagecropper.h" #include "AppEnv.h" #include "config.h" @@ -39,8 +40,6 @@ #include <QRgb> // IMAGES VALUES -#define snapmaticResolutionW 960 -#define snapmaticResolutionH 536 #define snapmaticAvatarResolution 470 #define snapmaticAvatarPlacementW 145 #define snapmaticAvatarPlacementH 66 @@ -139,7 +138,8 @@ void ImportDialog::processImage() { if (workImage.isNull()) return; QImage snapmaticImage = workImage; - QPixmap snapmaticPixmap(snapmaticResolutionW, snapmaticResolutionH); + QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); + QPixmap snapmaticPixmap(snapmaticResolution); snapmaticPixmap.fill(selectedColour); QPainter snapmaticPainter(&snapmaticPixmap); qreal screenRatioPR = AppEnv::screenRatioPR(); @@ -149,21 +149,21 @@ void ImportDialog::processImage() { int diffWidth = 0; int diffHeight = 0; - if (backImage.width() != snapmaticResolutionW) + if (backImage.width() != snapmaticResolution.width()) { - diffWidth = snapmaticResolutionW - backImage.width(); + diffWidth = snapmaticResolution.width() - backImage.width(); diffWidth = diffWidth / 2; } - else if (backImage.height() != snapmaticResolutionH) + else if (backImage.height() != snapmaticResolution.height()) { - diffHeight = snapmaticResolutionH - backImage.height(); + diffHeight = snapmaticResolution.height() - backImage.height(); diffHeight = diffHeight / 2; } snapmaticPainter.drawImage(0 + diffWidth, 0 + diffHeight, backImage); } else { - snapmaticPainter.drawImage(0, 0, QImage(backImage).scaled(snapmaticResolutionW, snapmaticResolutionH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); + snapmaticPainter.drawImage(0, 0, QImage(backImage).scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); } if (ui->cbAvatar->isChecked() && ui->cbForceAvatarColour->isChecked()) { @@ -204,21 +204,21 @@ void ImportDialog::processImage() int diffHeight = 0; if (!ui->cbIgnore->isChecked()) { - snapmaticImage = snapmaticImage.scaled(snapmaticResolutionW, snapmaticResolutionH, Qt::KeepAspectRatio, Qt::SmoothTransformation); - if (snapmaticImage.width() != snapmaticResolutionW) + snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::KeepAspectRatio, Qt::SmoothTransformation); + if (snapmaticImage.width() != snapmaticResolution.width()) { - diffWidth = snapmaticResolutionW - snapmaticImage.width(); + diffWidth = snapmaticResolution.width() - snapmaticImage.width(); diffWidth = diffWidth / 2; } - else if (snapmaticImage.height() != snapmaticResolutionH) + else if (snapmaticImage.height() != snapmaticResolution.height()) { - diffHeight = snapmaticResolutionH - snapmaticImage.height(); + diffHeight = snapmaticResolution.height() - snapmaticImage.height(); diffHeight = diffHeight / 2; } } else { - snapmaticImage = snapmaticImage.scaled(snapmaticResolutionW, snapmaticResolutionH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); + snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); } snapmaticPainter.drawImage(0 + diffWidth, 0 + diffHeight, snapmaticImage); if (ui->cbWatermark->isChecked()) { processWatermark(&snapmaticPainter); } @@ -575,15 +575,16 @@ QImage ImportDialog::image() void ImportDialog::setImage(QImage *image_) { + QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); origImage = *image_; workImage = QImage(); if (image_->width() == image_->height()) { insideAvatarZone = true; ui->cbAvatar->setChecked(true); - if (image_->height() > snapmaticResolutionH) + if (image_->height() > snapmaticResolution.height()) { - workImage = image_->scaled(snapmaticResolutionH, snapmaticResolutionH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); + workImage = image_->scaled(snapmaticResolution.height(), snapmaticResolution.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation); delete image_; } else @@ -592,18 +593,18 @@ void ImportDialog::setImage(QImage *image_) delete image_; } } - else if (image_->width() > snapmaticResolutionW && image_->width() > image_->height()) + else if (image_->width() > snapmaticResolution.width() && image_->width() > image_->height()) { insideAvatarZone = false; ui->cbAvatar->setChecked(false); - workImage = image_->scaledToWidth(snapmaticResolutionW, Qt::SmoothTransformation); + workImage = image_->scaledToWidth(snapmaticResolution.width(), Qt::SmoothTransformation); delete image_; } - else if (image_->height() > snapmaticResolutionH && image_->height() > image_->width()) + else if (image_->height() > snapmaticResolution.height() && image_->height() > image_->width()) { insideAvatarZone = false; ui->cbAvatar->setChecked(false); - workImage = image_->scaledToHeight(snapmaticResolutionH, Qt::SmoothTransformation); + workImage = image_->scaledToHeight(snapmaticResolution.height(), Qt::SmoothTransformation); delete image_; } else @@ -788,7 +789,7 @@ fileDialogPreOpen: QMessageBox::warning(this, QApplication::translate("ProfileInterface", "Import"), QApplication::translate("ProfileInterface", "Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\"")); goto fileDialogPreOpen; } - backImage = importImage.scaled(snapmaticResolutionW, snapmaticResolutionH, Qt::KeepAspectRatio, Qt::SmoothTransformation); + backImage = importImage.scaled(SnapmaticPicture::getSnapmaticResolution(), Qt::KeepAspectRatio, Qt::SmoothTransformation); backgroundPath = selectedFile; ui->labBackgroundImage->setText(tr("Background Image: %1").arg(tr("File", "Background Image: File"))); ui->cmdBackgroundWipe->setVisible(true); diff --git a/OptionsDialog.cpp b/OptionsDialog.cpp index 06992cc..c99b423 100644 --- a/OptionsDialog.cpp +++ b/OptionsDialog.cpp @@ -16,9 +16,10 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. *****************************************************************************/ -#include "OptionsDialog.h" #include "ui_OptionsDialog.h" #include "TranslationClass.h" +#include "SnapmaticPicture.h" +#include "OptionsDialog.h" #include "StandardPaths.h" #include "UserInterface.h" #include "AppEnv.h" @@ -74,7 +75,7 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) : int desktopSizeHeight = desktopResolution.height(); #endif aspectRatio = Qt::KeepAspectRatio; - defExportSize = QSize(960, 536); + defExportSize = SnapmaticPicture::getSnapmaticResolution(); cusExportSize = defExportSize; defaultQuality = 100; customQuality = 100; diff --git a/PictureDialog.cpp b/PictureDialog.cpp index f602be4..0866576 100644 --- a/PictureDialog.cpp +++ b/PictureDialog.cpp @@ -144,13 +144,14 @@ void PictureDialog::setupPictureDialog() // Get Snapmatic Resolution QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); + QSize windowResolution = QSize(snapmaticResolution.width() / 2, snapmaticResolution.height() / 2); // Avatar area qreal screenRatio = AppEnv::screenRatio(); qreal screenRatioPR = AppEnv::screenRatioPR(); if (screenRatio != 1 || screenRatioPR != 1) { - avatarAreaPicture = QImage(":/img/avatararea.png").scaledToHeight(snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::FastTransformation); + avatarAreaPicture = QImage(":/img/avatararea.png").scaledToHeight(windowResolution.height() * screenRatio * screenRatioPR, Qt::FastTransformation); } else { @@ -161,7 +162,7 @@ void PictureDialog::setupPictureDialog() avatarSize = 470; // DPI calculation (picture) - ui->labPicture->setFixedSize(snapmaticResolution.width() * screenRatio, snapmaticResolution.height() * screenRatio); + ui->labPicture->setFixedSize(windowResolution.width() * screenRatio, windowResolution.height() * screenRatio); ui->labPicture->setFocusPolicy(Qt::StrongFocus); ui->labPicture->setScaledContents(true); @@ -209,8 +210,8 @@ void PictureDialog::setupPictureDialog() ui->jsonLayout->setContentsMargins(4 * screenRatio, 10 * screenRatio, 4 * screenRatio, 4 * screenRatio); // Pre-adapt window for DPI - setFixedWidth(snapmaticResolution.width() * screenRatio); - setFixedHeight(snapmaticResolution.height() * screenRatio); + setFixedWidth(windowResolution.width() * screenRatio); + setFixedHeight(windowResolution.height() * screenRatio); } PictureDialog::~PictureDialog() @@ -287,7 +288,7 @@ void PictureDialog::adaptNewDialogSize(QSize newLabelSize) { Q_UNUSED(newLabelSize) #if QT_VERSION >= 0x050F00 - int newDialogHeight = SnapmaticPicture::getSnapmaticResolution().height(); + int newDialogHeight = SnapmaticPicture::getSnapmaticResolution().height() / 2; #else int newDialogHeight = (ui->labPicture->pixmap()->height() / AppEnv::screenRatioPR()); #endif @@ -609,10 +610,11 @@ void PictureDialog::renderPicture() if (overlayEnabled) { QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); - QPixmap shownImagePixmap(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR); + QSize windowResolution = QSize(snapmaticResolution.width() / 2, snapmaticResolution.height() / 2); + QPixmap shownImagePixmap(windowResolution.width() * screenRatio * screenRatioPR, windowResolution.height() * screenRatio * screenRatioPR); shownImagePixmap.fill(Qt::transparent); QPainter shownImagePainter(&shownImagePixmap); - shownImagePainter.drawImage(0, 0, snapmaticPicture.scaled(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); + shownImagePainter.drawImage(0, 0, snapmaticPicture.scaled(windowResolution.width() * screenRatio * screenRatioPR, windowResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); shownImagePainter.drawImage(3 * screenRatio * screenRatioPR, 3 * screenRatio * screenRatioPR, overlayTempImage); shownImagePainter.end(); #if QT_VERSION >= 0x050600 @@ -623,10 +625,11 @@ void PictureDialog::renderPicture() else { QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); - QPixmap shownImagePixmap(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR); + QSize windowResolution = QSize(snapmaticResolution.width() / 2, snapmaticResolution.height() / 2); + QPixmap shownImagePixmap(windowResolution.width() * screenRatio * screenRatioPR, windowResolution.height() * screenRatio * screenRatioPR); shownImagePixmap.fill(Qt::transparent); QPainter shownImagePainter(&shownImagePixmap); - shownImagePainter.drawImage(0, 0, snapmaticPicture.scaled(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); + shownImagePainter.drawImage(0, 0, snapmaticPicture.scaled(windowResolution.width() * screenRatio * screenRatioPR, windowResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); shownImagePainter.end(); #if QT_VERSION >= 0x050600 shownImagePixmap.setDevicePixelRatio(screenRatioPR); @@ -638,11 +641,12 @@ void PictureDialog::renderPicture() { // Generating Avatar Preview QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); - QPixmap avatarPixmap(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR); + QSize windowResolution = QSize(snapmaticResolution.width() / 2, snapmaticResolution.height() / 2); + QPixmap avatarPixmap(windowResolution.width() * screenRatio * screenRatioPR, windowResolution.height() * screenRatio * screenRatioPR); QPainter snapPainter(&avatarPixmap); QFont snapPainterFont; snapPainterFont.setPixelSize(12 * screenRatio * screenRatioPR); - snapPainter.drawImage(0, 0, snapmaticPicture.scaled(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); + snapPainter.drawImage(0, 0, snapmaticPicture.scaled(windowResolution.width() * screenRatio * screenRatioPR, windowResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); snapPainter.drawImage(0, 0, avatarAreaPicture); snapPainter.setPen(QColor::fromRgb(255, 255, 255, 255)); snapPainter.setFont(snapPainterFont); diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp index 841b3d7..eed207c 100644 --- a/ProfileInterface.cpp +++ b/ProfileInterface.cpp @@ -697,7 +697,8 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime return false; } QString customImageTitle; - QPixmap snapmaticPixmap(960, 536); + QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution(); + QPixmap snapmaticPixmap(snapmaticResolution); snapmaticPixmap.fill(Qt::black); QPainter snapmaticPainter(&snapmaticPixmap); if (snapmaticImage.height() == snapmaticImage.width()) @@ -724,15 +725,15 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime // Picture mode int diffWidth = 0; int diffHeight = 0; - snapmaticImage = snapmaticImage.scaled(960, 536, Qt::KeepAspectRatio, Qt::SmoothTransformation); - if (snapmaticImage.width() != 960) + snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::KeepAspectRatio, Qt::SmoothTransformation); + if (snapmaticImage.width() != snapmaticResolution.height()) { - diffWidth = 960 - snapmaticImage.width(); + diffWidth = snapmaticResolution.height() - snapmaticImage.width(); diffWidth = diffWidth / 2; } - else if (snapmaticImage.height() != 536) + else if (snapmaticImage.height() != snapmaticResolution.width()) { - diffHeight = 536 - snapmaticImage.height(); + diffHeight = snapmaticResolution.width() - snapmaticImage.height(); diffHeight = diffHeight / 2; } snapmaticPainter.drawImage(0 + diffWidth, 0 + diffHeight, snapmaticImage); diff --git a/README.md b/README.md index c4ad76c..ba89abc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ ## rdr2view -Red Dead Redemption 2 Savegame and Snapmatic viewer/editor +Red Dead Redemption 2 Savegame and Photo viewer/editor. -rdr2view is ported from [gta5view](https://gta5view.syping.de/). +rdr2view is a port from [gta5view](https://gta5view.syping.de/). + +**ATTENTION: rdr2view will not be developed anymore!** +**gta5view 1.11.0 will get support for RDR 2 as soon it's done.** \ No newline at end of file diff --git a/SnapmaticPicture.cpp b/SnapmaticPicture.cpp index 099efb8..66590d7 100644 --- a/SnapmaticPicture.cpp +++ b/SnapmaticPicture.cpp @@ -467,7 +467,7 @@ void SnapmaticPicture::updateStrings() pictureStr = tr("PHOTO - %1").arg(localProperties.createdDateTime.toString("MM/dd/yy HH:mm:ss")); sortStr = localProperties.createdDateTime.toString("yyMMddHHmmss") % QString::number(localProperties.uid); QString exportStr = localProperties.createdDateTime.toString("yyyyMMdd") % "-" % QString::number(localProperties.uid); - if (isModernFormat) { picFileName = "PRDR5" % QString::number(localProperties.uid); } + if (isModernFormat) { picFileName = "PRDR3" % QString::number(localProperties.uid); } picExportFileName = exportStr % "_" % cmpPicTitl; } @@ -519,7 +519,17 @@ bool SnapmaticPicture::setImage(const QImage &picture) } } } - if (saveSuccess) { return setPictureStream(picByteArray); } + if (saveSuccess) { + saveSuccess = setPictureStream(picByteArray); + if (saveSuccess) { + SnapmaticProperties properties = getSnapmaticProperties(); + properties.pictureSize = picture.size(); + if (!setSnapmaticProperties(properties)) { + qDebug() << "Failed to refresh Snapmatic properties!"; + } + } + return saveSuccess; + } } return false; } @@ -1041,6 +1051,12 @@ void SnapmaticPicture::parseJsonContent() else { jsonError = true; } } // else { jsonIncomplete = true; } // Game release Snapmatic pictures prior May 2015 left out rsedtr, so don't force exists on that one + // RDR 2 + if (jsonObject.contains("width") && jsonObject.contains("height")) { + if (jsonObject["width"].isDouble() && jsonObject["height"].isDouble()) { localProperties.pictureSize = QSize(jsonObject["width"].toInt(), jsonObject["height"].toInt()); } + else { jsonError = true; } + } + else { jsonIncomplete = true; } if (!jsonIncomplete && !jsonError) { @@ -1087,6 +1103,10 @@ bool SnapmaticPicture::setSnapmaticProperties(SnapmaticProperties properties) jsonObject["drctr"] = properties.isFromDirector; jsonObject["rsedtr"] = properties.isFromRSEditor; + // RDR 2 + jsonObject["width"] = properties.pictureSize.width(); + jsonObject["height"] = properties.pictureSize.height(); + jsonDocument.setObject(jsonObject); if (setJsonStr(QString::fromUtf8(jsonDocument.toJson(QJsonDocument::Compact)))) @@ -1346,8 +1366,7 @@ bool SnapmaticPicture::setPictureVisible() QSize SnapmaticPicture::getSnapmaticResolution() { - // keep old UI size for now - return QSize(960, 536); + return snapmaticResolution; } // SNAPMATIC DEFAULTS diff --git a/SnapmaticPicture.h b/SnapmaticPicture.h index 745c511..ea834b5 100644 --- a/SnapmaticPicture.h +++ b/SnapmaticPicture.h @@ -38,6 +38,7 @@ struct SnapmaticProperties { int size; int crewID; int streetID; + QSize pictureSize; QStringList playersList; uint createdTimestamp; QDateTime createdDateTime; diff --git a/config.h b/config.h index eaea9dc..de207ae 100644 --- a/config.h +++ b/config.h @@ -44,7 +44,7 @@ #endif #ifndef GTA5SYNC_APPVER -#define GTA5SYNC_APPVER "0.4.0" +#define GTA5SYNC_APPVER "0.5.0" #endif #if __cplusplus diff --git a/res/app.rc b/res/app.rc index 43d9d59..f3715fa 100644 --- a/res/app.rc +++ b/res/app.rc @@ -7,8 +7,8 @@ CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "rdr2view.exe.manifest" #include <windows.h> VS_VERSION_INFO VERSIONINFO -FILEVERSION 0, 4, 0, 0 -PRODUCTVERSION 0, 4, 0, 0 +FILEVERSION 0, 5, 0, 0 +PRODUCTVERSION 0, 5, 0, 0 FILEFLAGSMASK 0x3fL FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -25,12 +25,12 @@ BEGIN BEGIN VALUE "CompanyName", "Syping" VALUE "FileDescription", "rdr2view" - VALUE "FileVersion", "0.4.0" + VALUE "FileVersion", "0.5.0" VALUE "InternalName", "rdr2view" VALUE "LegalCopyright", "Copyright � 2016-2020 Syping" VALUE "OriginalFilename", "rdr2view.exe" VALUE "ProductName", "rdr2view" - VALUE "ProductVersion", "0.4.0" + VALUE "ProductVersion", "0.5.0" END END END diff --git a/res/gta5sync.ts b/res/gta5sync.ts index bf83118..f348566 100644 --- a/res/gta5sync.ts +++ b/res/gta5sync.ts @@ -166,46 +166,46 @@ Pictures and Savegames</source> <context> <name>ImageEditorDialog</name> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation type="unfinished"></translation> @@ -246,9 +246,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation type="unfinished"></translation> </message> @@ -265,9 +265,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation type="unfinished"></translation> </message> @@ -322,35 +322,35 @@ Pictures and Savegames</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation type="unfinished"></translation> @@ -427,24 +427,24 @@ Pictures and Savegames</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation type="unfinished"></translation> </message> @@ -455,7 +455,7 @@ When you want to use it as Avatar the image will be detached!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation type="unfinished"></translation> @@ -705,26 +705,26 @@ Y: %2</source> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation type="unfinished"></translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation type="unfinished"></translation> </message> @@ -745,7 +745,7 @@ Y: %2</source> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation type="unfinished"></translation> </message> @@ -781,8 +781,8 @@ Y: %2</source> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation type="unfinished"></translation> </message> @@ -804,8 +804,8 @@ Y: %2</source> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation type="unfinished"></translation> </message> @@ -862,95 +862,95 @@ Y: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation type="unfinished"></translation> </message> @@ -991,80 +991,80 @@ Y: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> - <source>&Edit Properties...</source> - <translation type="unfinished"></translation> - </message> <message> <location filename="../PictureDialog.cpp" line="178"/> <location filename="../ProfileInterface.cpp" line="1632"/> + <source>&Edit Properties...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation type="unfinished"></translation> @@ -1273,7 +1273,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1281,16 +1281,16 @@ Press 1 for Default View</source> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation type="unfinished"></translation> </message> @@ -1298,22 +1298,22 @@ Press 1 for Default View</source> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1321,15 +1321,15 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation type="unfinished"></translation> </message> @@ -1360,7 +1360,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation type="unfinished"></translation> @@ -1391,12 +1391,12 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation type="unfinished"></translation> </message> @@ -1419,114 +1419,114 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1534,81 +1534,81 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> @@ -1700,37 +1700,37 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation type="unfinished"></translation> </message> @@ -1828,7 +1828,7 @@ Press 1 for Default View</source> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1921,7 +1921,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> @@ -1933,25 +1933,25 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation type="unfinished"></translation> @@ -2008,19 +2008,19 @@ Press 1 for Default View</source> <name>SnapmaticPicture</name> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation type="unfinished"></translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation type="unfinished"></translation> </message> @@ -2030,42 +2030,42 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation type="unfinished"></translation> @@ -2126,52 +2126,52 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation type="unfinished"></translation> </message> @@ -2354,7 +2354,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2391,15 +2391,15 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation type="unfinished"></translation> diff --git a/res/gta5sync_de.ts b/res/gta5sync_de.ts index d59e876..a3bec08 100644 --- a/res/gta5sync_de.ts +++ b/res/gta5sync_de.ts @@ -176,46 +176,46 @@ Snapmatic Bilder und Spielständen</translation> <context> <name>ImageEditorDialog</name> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation>Snapmatic Bild Editor</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation>Bild überschreiben...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation>Änderungen übernehmen</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation>&Überschreiben</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation>Änderungen verwerfen</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation>S&chließen</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation> @@ -256,9 +256,9 @@ Snapmatic Bilder und Spielständen</translation> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>Hintergrundfarbe: <span style="color: %1">%1</span></translation> </message> @@ -285,7 +285,7 @@ Snapmatic Bilder und Spielständen</translation> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation>Hintergrundbild: %1</translation> </message> @@ -331,42 +331,42 @@ Snapmatic Bilder und Spielständen</translation> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation>Hintergrundbild:</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation>Neues Bild &importieren...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation>Bild zu&schneiden...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation>Einstellungen &laden...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation>Einstellungen &speichern...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation>Eigener Avatar</translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation>Eigenes Bild</translation> @@ -449,24 +449,24 @@ Snapmatic Bilder und Spielständen</translation> <translation>Einstellungen speichern...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation>Bist du sicher ein Quadrat Bild außerhalb der Avatar Zone zu verwenden? Wenn du es als Avatar verwenden möchtest wird es abgetrennt!</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation>Snapmatic Avatar Zone</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>Farbe auswählen...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation>Datei</translation> @@ -717,26 +717,26 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation>Gefunden: %1</translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation>Sprache: %1</translation> </message> @@ -757,7 +757,7 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation>An %1 Benutzerstatistik teilnehmen</translation> </message> @@ -788,8 +788,8 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation>Teilnahme ID: %1</translation> </message> @@ -846,8 +846,8 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation>Aktuell: %1</translation> </message> @@ -874,95 +874,95 @@ Y: %2</translation> <translation>Abbre&chen</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation>%1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation>System</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation>%1 (Spielsprache)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation>%1 (Näheste zur Oberfläche)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation>Automatisch</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation>%1 (Sprachenpriorität)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>Der eigene Ordner wird initialisiert sobald du %1 neugestartet hast.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation>%1 Benutzerstatistik Online ansehen</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation>Nicht registriert</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation>OS-defined</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation>Steam-definiert</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation>Kein Profil</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation>Profil: %1</translation> </message> @@ -1012,37 +1012,37 @@ Y: %2</translation> <translation>Exportieren</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation>Als &Bild exportieren...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation>Als &Snapmatic exportieren...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> + <location filename="../PictureDialog.cpp" line="178"/> + <location filename="../ProfileInterface.cpp" line="1632"/> <source>&Edit Properties...</source> <translation>Eigenschaften bearb&eiten...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="178"/> - <location filename="../ProfileInterface.cpp" line="1632"/> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation>Bild &überschreiben...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation>&Kartenansicht öffnen...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> @@ -1051,39 +1051,39 @@ Taste 2 - Overlay umschalten Pfeiltasten - Navigieren</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation>Snapmatic Bildansicht</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation>Fehlgeschlagen beim %1</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation>Keine Crew</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation>Keine Spieler</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation>Avatar Vorschaumodus Drücke 1 für Standardmodus</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation>Unbekannter Standort</translation> </message> @@ -1185,8 +1185,8 @@ Drücke 1 für Standardmodus</translation> <translation>Keine gültige Datei wurde ausgewählt</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation>&JSON Editor öffnen...</translation> </message> @@ -1300,7 +1300,7 @@ Drücke 1 für Standardmodus</translation> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1308,16 +1308,16 @@ Drücke 1 für Standardmodus</translation> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation>Importieren...</translation> </message> @@ -1325,9 +1325,9 @@ Drücke 1 für Standardmodus</translation> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation>Importieren</translation> </message> @@ -1350,14 +1350,14 @@ Drücke 1 für Standardmodus</translation> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation>Alle Bilddateien (%1)</translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1392,41 +1392,41 @@ Drücke 1 für Standardmodus</translation> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>Initialisiere Export...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PRDR oder endet mit .r5e</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation>Keine gültige Datei wurde ausgewählt</translation> @@ -1437,91 +1437,91 @@ Drücke 1 für Standardmodus</translation> <translation>Aktivierte Bilder: %1 von %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation>JPG Bilder und GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation>Nur JPG Bilder</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation>Nur GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation>Auswahl patchen...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation>Patche Datei %1 von %2 Dateien</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation>Als Avatar qualifizieren</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation>Keine Snapmatic Bilder sind ausgewählt</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1531,93 +1531,93 @@ Drücke 1 für Standardmodus</translation> %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation>Bereite Inhalt für Import vor...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation>Qualifizieren</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation>Spieler ändern...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation>Spieler ändern</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation>Crew ändern...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation>Crew ändern</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation>Titel ändern...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation>Titel ändern</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation>Auswahl löschen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation>Auswahl exportieren...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> @@ -1769,32 +1769,32 @@ Drücke 1 für Standardmodus</translation> <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation>A&nsehen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation>Entfe&rnen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation>Au&swählen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation>A&bwählen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation>&Alles auswählen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation>Alles a&bwählen</translation> </message> @@ -1809,7 +1809,7 @@ Drücke 1 für Standardmodus</translation> <translation>Spielstand kopieren</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation>&Exportieren</translation> </message> @@ -1861,7 +1861,7 @@ Drücke 1 für Standardmodus</translation> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1903,7 +1903,7 @@ Drücke 1 für Standardmodus</translation> <translation>Meme</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation>Snapmatic Titel</translation> @@ -2012,26 +2012,26 @@ Drücke 1 für Standardmodus</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation>Neuer Snapmatic Titel:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation>Snapmatic Crew</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation>Neue Snapmatic Crew:</translation> @@ -2045,61 +2045,61 @@ Drücke 1 für Standardmodus</translation> <translation>FOTO - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation>Datei öffnen %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation>Header nicht existiert</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation>Header fehlerhaft ist</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation>Bild nicht existiert (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation>JSON nicht existiert (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation>Titel nicht existiert (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation>Beschreibung nicht existiert (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation>Datei lesen von %1 weil %2</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation>JSON ist unvollständig und Fehlerhaft</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation>JSON ist unvollständig</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation>JSON ist Fehlerhaft</translation> </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> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation>Bearbei&ten</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation>&Exportieren</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation>&Im Spiel anzeigen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation>&Im Spiel ausblenden</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation>A&nsehen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation>Entfe&rnen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation>Au&swählen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation>A&bwählen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation>Alles &auswählen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation>Alles a&bwählen</translation> </message> @@ -2406,7 +2406,7 @@ Drücke 1 für Standardmodus</translation> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2454,15 +2454,15 @@ Drücke 1 für Standardmodus</translation> <translation>&Neuladen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation>Im Spiel anzeigen</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation>Im Spiel ausblenden</translation> diff --git a/res/gta5sync_en_US.ts b/res/gta5sync_en_US.ts index 8caf75a..262ed03 100644 --- a/res/gta5sync_en_US.ts +++ b/res/gta5sync_en_US.ts @@ -166,46 +166,46 @@ Pictures and Savegames</source> <context> <name>ImageEditorDialog</name> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation type="unfinished"></translation> @@ -220,9 +220,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>Background Color: <span style="color: %1">%1</span></translation> </message> @@ -265,7 +265,7 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation type="unfinished"></translation> </message> @@ -321,42 +321,42 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation type="unfinished"></translation> @@ -439,23 +439,23 @@ Pictures and Savegames</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>Select Color...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation type="unfinished"></translation> @@ -705,26 +705,26 @@ Y: %2</source> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation type="unfinished"></translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation type="unfinished"></translation> </message> @@ -740,7 +740,7 @@ Y: %2</source> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation type="unfinished"></translation> </message> @@ -761,8 +761,8 @@ Y: %2</source> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation type="unfinished"></translation> </message> @@ -829,8 +829,8 @@ Y: %2</source> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation type="unfinished"></translation> </message> @@ -862,95 +862,95 @@ Y: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>The new Custom Folder will initialize after you restart %1.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation type="unfinished"></translation> </message> @@ -991,74 +991,74 @@ Y: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> + <source>&Overwrite Image...</source> + <translation type="unfinished"></translation> + </message> <message> <location filename="../PictureDialog.cpp" line="178"/> <location filename="../ProfileInterface.cpp" line="1632"/> - <source>&Overwrite Image...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> <source>&Edit Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation type="unfinished"></translation> @@ -1167,8 +1167,8 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation type="unfinished"></translation> </message> @@ -1293,7 +1293,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1301,16 +1301,16 @@ Press 1 for Default View</source> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation type="unfinished"></translation> </message> @@ -1318,9 +1318,9 @@ Press 1 for Default View</source> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation type="unfinished"></translation> </message> @@ -1349,14 +1349,14 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1364,7 +1364,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation type="unfinished"></translation> @@ -1396,148 +1396,148 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>Initializing export...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1545,70 +1545,70 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation type="unfinished"></translation> @@ -1700,37 +1700,37 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation type="unfinished"></translation> </message> @@ -1828,7 +1828,7 @@ Press 1 for Default View</source> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1973,32 +1973,32 @@ Press 1 for Default View</source> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation type="unfinished"></translation> @@ -2012,61 +2012,61 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation type="unfinished"></translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation type="unfinished"></translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation type="unfinished"></translation> </message> @@ -2126,52 +2126,52 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation type="unfinished"></translation> </message> @@ -2349,7 +2349,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2421,15 +2421,15 @@ Press 1 for Default View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation type="unfinished"></translation> diff --git a/res/gta5sync_fr.ts b/res/gta5sync_fr.ts index 498246e..1f68819 100644 --- a/res/gta5sync_fr.ts +++ b/res/gta5sync_fr.ts @@ -176,46 +176,46 @@ et les fichiers de sauvegarde de Red Dead Redemption 2</translation> <context> <name>ImageEditorDialog</name> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation>Éditeur d'images Snapmatic</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation>Remplacer l'image...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation>Appliquer les modifications</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation>&Remplacer</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation>Annuler les modifications</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation>&Fermer</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation>Échec du patch Snapmatic : I/O Error</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation>Échec du patch Snapmatic : Image Error</translation> @@ -256,9 +256,9 @@ et les fichiers de sauvegarde de Red Dead Redemption 2</translation> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>Couleur de fond : <span style="color: %1">%1</span></translation> </message> @@ -285,7 +285,7 @@ et les fichiers de sauvegarde de Red Dead Redemption 2</translation> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation>Image de fond : %1</translation> </message> @@ -331,42 +331,42 @@ et les fichiers de sauvegarde de Red Dead Redemption 2</translation> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation>Image de fond :</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation>&Importer une nouvelle image...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation>&Rogner l'image...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation>&Charger les paramètres...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation>&Sauvegarder les paramètres...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation>Avatar personnalisé</translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation>Image personnalisé</translation> @@ -449,24 +449,24 @@ et les fichiers de sauvegarde de Red Dead Redemption 2</translation> <translation>Sauvegarder les paramètres...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation>Êtes-vous sûr d'utiliser une image carrée en dehors de la Zone d'Avatar ? Si vous l'utilisez comme Avatar, l'image sera détachée !</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation>Zone d'Avatar Snapmatic</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>Choisir une couleur...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation>Fichier</translation> @@ -717,26 +717,26 @@ Y : %2</translation> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation>Trouvé : %1</translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation>Langue : %1</translation> </message> @@ -757,7 +757,7 @@ Y : %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation>Participer aux statistiques d'usage %1</translation> </message> @@ -788,8 +788,8 @@ Y : %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation>ID de participation : %1</translation> </message> @@ -841,8 +841,8 @@ Y : %2</translation> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation>Actuel : %1</translation> </message> @@ -874,95 +874,95 @@ Y : %2</translation> <translation>&Annuler</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation>Système</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation>%1 (Langue du jeu)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation>%1 (Langage proche de l'interface)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation>Automatique</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation>%1 (Priorité de la langue)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation>%1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>Le nouveau Dossier personnalisé sera initialisé au redémarrage de %1.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation>Voir les statistiques d'usage %1 en ligne</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation>Pas enregistré</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation>Oui</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation>Non</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation>Défini par le système d'exploitation</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation>Défini par Steam</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation>Aucun profil</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation>Profil : %1</translation> </message> @@ -1092,37 +1092,37 @@ Y : %2</translation> <translation>Fichier invalide</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation>Exporter comme &image...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation>Exporter comme &Snapmatic...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="178"/> - <location filename="../ProfileInterface.cpp" line="1632"/> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation>&Remplacer l'image...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> + <location filename="../PictureDialog.cpp" line="178"/> + <location filename="../ProfileInterface.cpp" line="1632"/> <source>&Edit Properties...</source> <translation>Modifier les &propriétés...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation>Ouvrir la &Visionneuse de Carte...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> @@ -1131,39 +1131,39 @@ Touche 2 - Activer/désactiver l'overlay Touches fléchées - Naviguer</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation>Visionneuse de photo Snapmatic</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation>Echec de %1</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation>Aucun crew</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation>Aucun joueurs</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation>Mode Aperçu Avatar Appuyer sur 1 pour le mode par défaut</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation>Emplacement inconnu</translation> </message> @@ -1185,8 +1185,8 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>Échec de l'export de la photo Snapmatic</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation>Ouvrir l'éditeur &JSON...</translation> </message> @@ -1311,7 +1311,7 @@ Appuyer sur 1 pour le mode par défaut</translation> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1319,16 +1319,16 @@ Appuyer sur 1 pour le mode par défaut</translation> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation>Importer...</translation> </message> @@ -1336,9 +1336,9 @@ Appuyer sur 1 pour le mode par défaut</translation> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation>Importer</translation> </message> @@ -1350,14 +1350,14 @@ Appuyer sur 1 pour le mode par défaut</translation> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation>Toutes les images (%1)</translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1380,7 +1380,7 @@ Appuyer sur 1 pour le mode par défaut</translation> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation>Fichier invalide</translation> @@ -1404,123 +1404,123 @@ Appuyer sur 1 pour le mode par défaut</translation> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation>Impossible d'importer %1, le format du fichier n'est pas détecté</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PRDR*, *.r5e)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation>Images JPG et GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation>Images JPG seulement</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation>GTA Snapmatic seulement</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation>Exporter la sélection...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>Initialisation de l'export...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation>Qualifier comme Avatar</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation>Aucun Snapmatic sélectionné</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation>Patcher la sélection...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation>Patch du fichier %1 sur %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1530,12 +1530,12 @@ Appuyer sur 1 pour le mode par défaut</translation> %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation>Préparation du contenu pour l'import...</translation> </message> @@ -1546,66 +1546,66 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>Fichiers GTA Snapmatic (PRDR*)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <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> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation>Qualifier</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation>Modifier les joueurs...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation>Modifier les joueurs</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation>Modifier le Crew...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation>Snapmatic Crew ID invalide</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation>Changer le Crew</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation>Changer le titre...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation>Titre Snapmatic invalide</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation>Changer le titre</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> @@ -1614,20 +1614,20 @@ Appuyer sur 1 pour le mode par défaut</translation> %1</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation>Supprimer la sélection</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation>Supprimer la sélection ?</translation> </message> @@ -1732,7 +1732,7 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>Supprimer</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation>&Exporter</translation> </message> @@ -1823,32 +1823,32 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>Impossible de supprimer %1</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation>&Voir</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation>&Supprimer</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation>&Sélectionner</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation>&Déselectionner</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation>Sélectionner to&ut</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation>&Déselectionner tout</translation> </message> @@ -1862,7 +1862,7 @@ Appuyer sur 1 pour le mode par défaut</translation> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1904,7 +1904,7 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>Meme</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation>Titre Snapmatic</translation> @@ -2015,26 +2015,26 @@ Appuyer sur 1 pour le mode par défaut</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> <translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation>Nouveau titre Snapmatic :</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation>Crew Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation>Nouveau crew Snapmatic :</translation> @@ -2048,61 +2048,61 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>PHOTO - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation>ouverture du fichier %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation>les headers n'existent pas</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation>les headers sont incorrects</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation>l'image n'existe pas (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation>le JSON n'existe pas (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation>le titre n'existe pas (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation>la description n'existe pas (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation>lecture du fichier %1 : %2</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation>JSON incomplet ou incorrect</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation>JSON incomplet</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation>JSON incorrect</translation> </message> @@ -2182,52 +2182,52 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation>%1 n'a pas pu être rendu visible en jeu</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation>Édi&ter</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation>&Visible en jeu</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation>&Invisible en jeu</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation>&Exporter</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation>&Voir</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation>S&upprimer</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation>&Sélectionner</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation>&Déselectionner</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation>Sélectionner &tout</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation>&Déselectionner tout</translation> </message> @@ -2367,7 +2367,7 @@ Appuyer sur 1 pour le mode par défaut</translation> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2457,15 +2457,15 @@ Appuyer sur 1 pour le mode par défaut</translation> <translation type="unfinished"></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation>Visible en jeu</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation>Invisible en jeu</translation> diff --git a/res/gta5sync_ko.ts b/res/gta5sync_ko.ts index b9fe7a8..ee553a0 100644 --- a/res/gta5sync_ko.ts +++ b/res/gta5sync_ko.ts @@ -176,46 +176,46 @@ Pictures and Savegames</source> <context> <name>ImageEditorDialog</name> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation>이미지 덮어쓰기...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation>변경 사항 적용</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation>덮어쓰기(&O)</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation>변경 사항 무시</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation>닫기(&C)</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation>스냅매틱 이미지 편집기</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다</translation> @@ -256,9 +256,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>배경 색상: <span style="color: %1">%1</span></translation> </message> @@ -275,9 +275,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation>배경 이미지:</translation> </message> @@ -332,28 +332,28 @@ Pictures and Savegames</source> <translation>취소(&C)</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation>새로운 사진 가져오기(&I)...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation>사진 자르기(&C)...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation>설정 불러오기(&L)...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation>설정 저장(&S)...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment> @@ -361,7 +361,7 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment> @@ -369,7 +369,7 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation>배경 이미지: %1</translation> </message> @@ -454,24 +454,24 @@ Pictures and Savegames</source> <translation>설정 저장...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation>스낵매틱 아바타 영역</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation>아바타 구역 밖에서 네모난 이미지를 정말 사용합니까? 아바타로 사용하려는 경우 이미지가 분리됩니다!</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>색상 선택...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translatorcomment>배경 이미지: 파일</translatorcomment> @@ -724,26 +724,26 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation>찾음: %1</translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation>언어: %1</translation> </message> @@ -764,7 +764,7 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation>사용자 통계 참가 %1</translation> </message> @@ -800,8 +800,8 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation>참여 아이디: %1</translation> </message> @@ -823,8 +823,8 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation>현재: %1</translation> </message> @@ -883,100 +883,100 @@ Y: %2</translation> <translation>취소(&C)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation>%1 (우선 순위)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation>시스템</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translatorcomment>게임 설정과 가장 가까운 언어</translatorcomment> <translation>%1 (게임 언어)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translatorcomment>언어 자동 선택</translatorcomment> <translation>자동</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translatorcomment>인터페이스와 가장 가까운 언어</translatorcomment> <translation>%1 (인터페이스와 가까운 언어)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translatorcomment>%1</translatorcomment> <translation>%1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translatorcomment>프로필 없음 (기본값)</translatorcomment> <translation>프로필 없음</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation>프로필: %1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation>온라인 %1 사용자 통계 보기</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation>등록되지 않았습니다</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation>예</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation>아니요</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation>OS 정의</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation>스팀 정의</translation> </message> @@ -1020,43 +1020,43 @@ Y: %2</translation> <translation>닫기(&C)</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation>사진으로 내보내기(&P)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation>스낵매틱으로 내보내기(&S)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> + <location filename="../PictureDialog.cpp" line="178"/> + <location filename="../ProfileInterface.cpp" line="1632"/> <source>&Edit Properties...</source> <translation>속성 편집(&E)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="178"/> - <location filename="../ProfileInterface.cpp" line="1632"/> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation>이미지 덮어쓰기(&O)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation>지도 뷰어 열기(&M)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation>JSON 편집기 열기(&J)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> @@ -1065,37 +1065,37 @@ Arrow Keys - Navigate</source> 화살표키 - 이동</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation>스낵매틱 사진 뷰어</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation>%1에서 실패했습니다</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation>플레이어 없음</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation>조직 없음</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation>알 수 없는 위치</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation>아바타 미리 보기 모드입니다 @@ -1305,7 +1305,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1313,16 +1313,16 @@ Press 1 for Default View</source> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation>가져오기...</translation> </message> @@ -1330,22 +1330,22 @@ Press 1 for Default View</source> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation>가져오기</translation> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation>모든 이미지 파일 (%1)</translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1353,15 +1353,15 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다</translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다</translation> </message> @@ -1410,7 +1410,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation>올바른 파일이 선택되지 않았습니다</translation> @@ -1443,79 +1443,79 @@ Press 1 for Default View</source> <translation>세이브 파일을 읽지 못했습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation>가져올 컨텐츠를 준비합니다...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation>스냅매틱 사진을 가져오지 못했습니다. 파일이 PRDR로 시작되거나 .r5e로 끝나지 않습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <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> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation>스냅매틱 사진을 가져오지 못했습니다. 파일을 프로파일에 복사할 수 없습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation>내보내기를 선택했습니다...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation>JPG 사진 및 GTA 스냅매틱</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation>JPG 사진만</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation>GTA 스냅매틱만</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation>%1 스냅 사진 내보내기를 수행합니다%2 <br><br>JPG 사진을 사용하면 이미지 뷰어 로 사진을 열 수 있습니다<br>GTA 스냅매틱을 사용하면 다음과 같이 사진을 게임으로 가져올 수 있습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>내보내기를 초기화하는 중...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> @@ -1524,45 +1524,45 @@ Press 1 for Default View</source> %1</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation>스냅매틱 사진 또는 세이브 파일이 선택되지 않았습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation>선택한 항목 삭제</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation>선택한 스냅매틱 사진 및 세이브 파일을 삭제하시겠습니까?</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation>선택한 모든 스냅매틱 사진 및 세이브 파일을 삭제하지 못했습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation>스냅매틱 사진이 선택되지 않았습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1573,84 +1573,84 @@ Press 1 for Default View</source> %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation>아바타 자격 부여</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation>패치가 선택됨...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation>%2 파일의 %1 패치 파일입니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> <translation>자격 부여</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation>플레이어 변경...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> <translation>플레이어 변경</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation>조직 변경...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> <translation>조직 변경</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation>제목 변경...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation>올바른 스냅매틱 제목을 입력하지 못했습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> @@ -1751,37 +1751,37 @@ Press 1 for Default View</source> <translation>삭제</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation>보기(&V)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation>내보내기(&E)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation>삭제(&R)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation>선택(&S)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation>선택 해제(&D)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation>모두 선택(&A)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation>모두 선택 해제(&D)</translation> </message> @@ -1881,7 +1881,7 @@ Press 1 for Default View</source> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1974,7 +1974,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> @@ -1986,25 +1986,25 @@ Press 1 for Default View</source> <translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation>조직 스냅매틱</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation>새로운 조직 스냅매틱:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation>스냅매틱 제목</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation>새로운 스냅매틱 제목:</translation> @@ -2065,19 +2065,19 @@ Press 1 for Default View</source> <name>SnapmaticPicture</name> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation>JSON이 불안정하고 형식이 잘못되었습니다</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation>JSON이 불안정합니다</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation>잘못된 JSON 형식</translation> </message> @@ -2087,42 +2087,42 @@ Press 1 for Default View</source> <translation>사진 - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation>파일 열기 %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation>헤더가 존재하지 않습니다</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation>헤더의 형식이 잘못되었습니다</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation>사진이 존재하지 않습니다. (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation>JSON이 존재하지 않습니다. (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation>제목이 존재하지 않습니다. (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation>설명이 존재하지 않습니다. (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translatorcomment>%2의 예: JSON이 잘못된 형식입니다</translatorcomment> @@ -2184,52 +2184,52 @@ Press 1 for Default View</source> <translation>삭제</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation>편집(&T)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation>인게임에서 보이기(&I)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation>인게임에서 숨기기(&I)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation>내보내기(&E)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation>보기(&V)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation>삭제(&R)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation>선택(&S)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation>선택 해제(&D)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation>모두 선택(&A)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation>모두 선택 해제(&D)</translation> </message> @@ -2413,7 +2413,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2450,15 +2450,15 @@ Press 1 for Default View</source> <translation>플레이어 변경(&P)...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation>인게임 보이기</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation>인게임 숨기기</translation> diff --git a/res/gta5sync_ru.ts b/res/gta5sync_ru.ts index 70c07a5..ec44f9f 100644 --- a/res/gta5sync_ru.ts +++ b/res/gta5sync_ru.ts @@ -180,46 +180,46 @@ Pictures and Savegames</source> <context> <name>ImageEditorDialog</name> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation>Редактор картинок Snapmatic</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation>Перезаписать картинку...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation>Применить изменения</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation>&Перезаписать</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation>Отменить изменения</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation> @@ -260,9 +260,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>Цвет фона: <span style="color: %1">%1</span></translation> </message> @@ -289,7 +289,7 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation>Фоновая картинка: %1</translation> </message> @@ -339,42 +339,42 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation>Фоновая картинка:</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation>&Импортировать картинку...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation>Об&резать картинку...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation>&Загрузить настройки...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation>&Сохранить настройки...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation>Свой Аватар</translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation>Своя Картинка</translation> @@ -457,23 +457,23 @@ Pictures and Savegames</source> <translation>Сохранить настройки...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation>Ты точно хочешь использовать квадратное изображение вне зоны аватарки? Если это аватар, то изображение будет обрезано!</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation>Зона Snapmatic Аватарки</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>Выбрать цвет...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation>Файл</translation> @@ -724,26 +724,26 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation>Найдено: %1</translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation>Язык: %1</translation> </message> @@ -764,7 +764,7 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation>Участвовать в пользовательской статистике %1</translation> </message> @@ -797,8 +797,8 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation>Номер участника: %1</translation> </message> @@ -852,8 +852,8 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation>Сейчас: %1</translation> </message> @@ -885,95 +885,95 @@ Y: %2</translation> <translation>От&мена</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation>Система</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation>%1 (Язык игры)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation>%1 (Совпадает с интерфейсом)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation>Автоматически</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation>%1 (Приоритетный язык)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation>%1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>Другая папка будет загружена после перезапуска %1.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation>Посмотреть пользовательскую статистику %1 онлайн</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation>Не зарегистрирован</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation>Да</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation>Нет</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation>Настройка от ОС</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation>Настройка от Steam</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation>Нет профиля</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation>Профиль: %1</translation> </message> @@ -1023,37 +1023,37 @@ Y: %2</translation> <translation>Экспортировать</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation>Экспортировать как &картинку...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation>Экспортировать как &Snapmatic...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="178"/> - <location filename="../ProfileInterface.cpp" line="1632"/> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation>&Перезаписать картинку...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> + <location filename="../PictureDialog.cpp" line="178"/> + <location filename="../ProfileInterface.cpp" line="1632"/> <source>&Edit Properties...</source> <translation>&Изменить свойства...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation>Открыть &карту...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> @@ -1062,39 +1062,39 @@ Arrow Keys - Navigate</source> Стрелки - Навигация</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation>Просмотрщик фотографий Snapmatic</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation>Ошибка при %1</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation>Вне банды</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation>Игроков нет</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation>Режим просмотра аватарок Нажмите 1 для стандартного просмотра</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation>Неизвестное место</translation> </message> @@ -1196,8 +1196,8 @@ Press 1 for Default View</source> <translation>Картинки Snapmatic (PRDR*)</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation>Открыть &редактор JSON...</translation> </message> @@ -1312,7 +1312,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1320,16 +1320,16 @@ Press 1 for Default View</source> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation>Импортировать...</translation> </message> @@ -1337,9 +1337,9 @@ Press 1 for Default View</source> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation>Импортировать</translation> </message> @@ -1357,7 +1357,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1392,7 +1392,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation>Выбранный файл неверен</translation> @@ -1409,139 +1409,139 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation>Все файлы изображений (%1)</translation> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation>Не удалось открыть %1, файл не может быть открыт</translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation>Не получилось импортировать %1, не удалось определить формат файла</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PRDR или не заканчивается с .r5e</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation>Картинки JPG и GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation>Только картинки JPG</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation>Только GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>Подготовка к экспорту...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation>Не выделены ни один Snapmatic или сохранение</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation>Снять выделение</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation>Подготовка данных к импорту...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation>Пометить как Аватар</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation>Не выделена ни одна картинка Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation>Пропатчить выделенные...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation>Изменяется файл %1 из %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1551,86 +1551,86 @@ Press 1 for Default View</source> %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <translatorcomment>Можно использовать слово "приписать"</translatorcomment> <translation></translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation>Помечание</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation>Изменить игроков...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation>Измение игроков</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation>Изменить банду...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation>Введённый идентификатор банды не верен</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation>Изменение банды</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation>Изменить заголовок...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation>Введённый заголовок не верен</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation>Изменение заголовка</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation>Экпортировать выделенное...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> @@ -1789,32 +1789,32 @@ Press 1 for Default View</source> <translation>Не удалось удалить сохранение %1</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation>&Просмотр</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation>&Удалить</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation>&Выбрать</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation>Сн&ять выбор</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation>В&ыбрать все</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation>Снять выбо&р со всех</translation> </message> @@ -1824,7 +1824,7 @@ Press 1 for Default View</source> <translation>Копировать сохранение</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation>&Экспортировать</translation> </message> @@ -1876,7 +1876,7 @@ Press 1 for Default View</source> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1928,7 +1928,7 @@ Press 1 for Default View</source> <translation>Meme</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation>Заголовок Snapmatic</translation> @@ -2027,26 +2027,26 @@ Press 1 for Default View</source> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation>Новый заголовок Snapmatic:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation>Банда на Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation>Новая банда на Snapmatic:</translation> @@ -2060,61 +2060,61 @@ Press 1 for Default View</source> <translation>ФОТО - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation>Открыть файл %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation>Отсутствует шапка (header)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation>Шапка (header) повреждена</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation>Картинки не существует (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation>JSON не существует (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation>Заголовок отсутствует (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation>Описание отсутствует (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation>Чтение из файла %1 из-за %2</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation>JSON не полный и повреждён</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation>JSON частично отсутствует</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation>JSON повреждён</translation> </message> @@ -2184,52 +2184,52 @@ Press 1 for Default View</source> <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation>&Правка</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation>Показывать в &игре</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation>Ск&рыть в игре</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation>&Экспорт</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation>По&казать</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation>У&далить</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation>&Выделить</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation>Сн&ять выделение</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation>В&ыбрать все</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation>Снять выбо&р со всех</translation> </message> @@ -2421,7 +2421,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2469,15 +2469,15 @@ Press 1 for Default View</source> <translation>Пере&загрузить</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation>Показывать в игре</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation>Скрыть в игре</translation> diff --git a/res/gta5sync_uk.ts b/res/gta5sync_uk.ts index ef47d76..ff42b7b 100644 --- a/res/gta5sync_uk.ts +++ b/res/gta5sync_uk.ts @@ -179,46 +179,46 @@ Pictures and Savegames</source> <context> <name>ImageEditorDialog</name> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation>Перезаписати зображення...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation>Застосувати зміни</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation>&Перезаписати</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation>Скасувати зміни</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation>&Закрити</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation>Редактор Snapmatic зображень</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation> @@ -259,9 +259,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>Фоновий колір: <span style="color: %1">%1</span></translation> </message> @@ -278,9 +278,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation>Фонове зображення:</translation> </message> @@ -335,35 +335,35 @@ Pictures and Savegames</source> <translation>&Скасувати</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation>&Імпортувати нове зображення...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation>&Обрізати зображення...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation>&Завантажити параметри...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation>&Зберегти параметри...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation>Користувацький Аватар</translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation>Користувацьке Зображення</translation> @@ -440,25 +440,25 @@ Pictures and Savegames</source> <translation>Зберегти параметри...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation>Зона Snapmatic Аватару</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation>Ви впевнені, що будете використовувати квадратне зображення поза зоною аватара? Якщо ви хочете використовувати його як Аватар, зображення буде відокремлено!</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>Вибір кольору...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation>Фонове зображення: %1</translation> </message> @@ -469,7 +469,7 @@ When you want to use it as Avatar the image will be detached!</source> <translation>Будь ласка, виберіть свій профіль налаштувань</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation>Файл</translation> @@ -720,26 +720,26 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation>Знайдено:%1</translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation>Мова: %1</translation> </message> @@ -761,7 +761,7 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation>Опитування %1 про устаткування ПК</translation> </message> @@ -797,8 +797,8 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation>ID учасника : %1</translation> </message> @@ -820,8 +820,8 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation>Зараз: %1</translation> </message> @@ -878,95 +878,95 @@ Y: %2</translation> <translation>&Скасувати</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation>Як у системи</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation>%1 (Мова гри)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation>%1 (Співпадає з інтерфейсом)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation>Автоматично</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation>%1 (пріоритет мови)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation>%1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation>Жодного</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation>Профіль: %1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation>Переглянути користувацьку статистику %1 онлайн</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation>Не зареєстрований</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation>Так</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation>Ні</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation>Визначається ОС</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation>Визначається Steam</translation> </message> @@ -1010,43 +1010,43 @@ Y: %2</translation> <translation>&Закрити</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation>Експортувати як &зображення...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation>Експортувати як &Snapmatic...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> + <location filename="../PictureDialog.cpp" line="178"/> + <location filename="../ProfileInterface.cpp" line="1632"/> <source>&Edit Properties...</source> <translation>&Змінити властивості...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="178"/> - <location filename="../ProfileInterface.cpp" line="1632"/> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation>&Перезаписати зображення...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation>Відкрити &карту...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation>Відкрити редактор &JSON...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> @@ -1055,37 +1055,37 @@ Arrow Keys - Navigate</source> Стрілки - Навігація</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation>Переглядач фотографій Snapmatic</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation>Помилка на%1</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation>Гравців немає</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation>Банди немає</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation>Невідома локація</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation>Режим для аватарок @@ -1295,7 +1295,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1303,16 +1303,16 @@ Press 1 for Default View</source> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation>Імпортування...</translation> </message> @@ -1320,22 +1320,22 @@ Press 1 for Default View</source> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation>Імпорт</translation> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation>Файли зображень (%1)</translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1343,15 +1343,15 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation> </message> @@ -1400,7 +1400,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation>Вибрані недійсні файли</translation> @@ -1433,69 +1433,69 @@ Press 1 for Default View</source> <translation>Не вдалося прочитати файл збереження гри</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PRDR або закінчується .r5e</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation>Експорт обраних...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation>JPG картинки і GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation>Тільки JPG картинки</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation>Тільки GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation>%1 Експортувати Snapmatic фотографії %2 <br><br> Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень<br>GTA Snapmatic дає змогу імпортувати зображення в гру<br><br>Експортувати як:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>Ініціалізація експорту...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> @@ -1504,45 +1504,45 @@ Press 1 for Default View</source> %1</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation>Видалити вибрані</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation>Не вибрано жодного Snapmatic зображення</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1552,91 +1552,91 @@ Press 1 for Default View</source> %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation>Підготувати контент для імпорту ...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <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> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation>Позначити як Аватар</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation>Вибір патчу...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation>Патч файлу %1 з %2 файлів</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation>Якість</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation>Зміна гравців...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation>Змінити гравців</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation>Зміна банди...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation>Змінити банду</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation>Зміна назви...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation>Змінити назву</translation> @@ -1736,37 +1736,37 @@ Press 1 for Default View</source> <translation>Видалити</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation>&Перегляд</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation>&Експорт</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation>&Видалення</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation>&Виділення</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation>&Зняти виділення</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation>Вибрати &усі</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation>&Зняти виділення усіх</translation> </message> @@ -1866,7 +1866,7 @@ Press 1 for Default View</source> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1959,7 +1959,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> @@ -1971,25 +1971,25 @@ Press 1 for Default View</source> <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation>Snapmatic банда</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation>Нова Snapmatic банда:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation>Snapmatic назва</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation>Новий Snapmatic заголовок:</translation> @@ -2046,19 +2046,19 @@ Press 1 for Default View</source> <name>SnapmaticPicture</name> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation>JSON неповний та неправильний</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation>JSON неповний</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation>JSON неправильний</translation> </message> @@ -2068,42 +2068,42 @@ Press 1 for Default View</source> <translation>ФОТО - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation>відкрити файл%1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation>заголовок не існує</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation>заголовок неправильний</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation>зображення не існує (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation>JSON не існує (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation>заголовок не існує (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation>опис не існує (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation>читання файлу %1 тому що %2</translation> @@ -2164,52 +2164,52 @@ Press 1 for Default View</source> <translation>Видалити</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation>Редагува&ти</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation>Показати &у грі</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation>Сховати &у грі</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation>&Експортувати</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation>&Переглянути</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation>&Видалити</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation>&Виділення</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation>&Зняти виділення</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation>Вибрати &усі</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation>&Зняти виділення усіх</translation> </message> @@ -2393,7 +2393,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2430,15 +2430,15 @@ Press 1 for Default View</source> <translation>Змінити &гравців...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation>Показати у грі</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation>Сховати у грі</translation> diff --git a/res/gta5sync_zh_TW.ts b/res/gta5sync_zh_TW.ts index 2174d26..0831025 100644 --- a/res/gta5sync_zh_TW.ts +++ b/res/gta5sync_zh_TW.ts @@ -175,46 +175,46 @@ Pictures and Savegames</source> <context> <name>ImageEditorDialog</name> <message> - <location filename="../ImportDialog.cpp" line="640"/> + <location filename="../ImportDialog.cpp" line="641"/> <source>Overwrite Image...</source> <translation>修改圖片...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="642"/> + <location filename="../ImportDialog.cpp" line="643"/> <source>Apply changes</source> <translation>套用變更</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="641"/> + <location filename="../ImportDialog.cpp" line="642"/> <source>&Overwrite</source> <translation>修改(&O)</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="644"/> + <location filename="../ImportDialog.cpp" line="645"/> <source>Discard changes</source> <translation>捨棄變更</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="643"/> + <location filename="../ImportDialog.cpp" line="644"/> <source>&Close</source> <translation>關閉(&C)</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="931"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Snapmatic Image Editor</source> <translation>Snapmatic 圖片編輯器</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="927"/> + <location filename="../PictureDialog.cpp" line="931"/> <location filename="../SnapmaticWidget.cpp" line="375"/> <source>Patching of Snapmatic Image failed because of I/O Error</source> <translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="951"/> + <location filename="../PictureDialog.cpp" line="955"/> <location filename="../SnapmaticWidget.cpp" line="399"/> <source>Patching of Snapmatic Image failed because of Image Error</source> <translation>圖片錯誤,Snapmatic 圖片更新失敗</translation> @@ -255,9 +255,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="150"/> - <location filename="../ImportDialog.cpp" line="87"/> + <location filename="../ImportDialog.cpp" line="86"/> <location filename="../ImportDialog.cpp" line="315"/> - <location filename="../ImportDialog.cpp" line="728"/> + <location filename="../ImportDialog.cpp" line="729"/> <source>Background Colour: <span style="color: %1">%1</span></source> <translation>背景顏色: <span style="color: %1">%1</span></translation> </message> @@ -274,9 +274,9 @@ Pictures and Savegames</source> </message> <message> <location filename="../ImportDialog.ui" line="203"/> - <location filename="../ImportDialog.cpp" line="88"/> + <location filename="../ImportDialog.cpp" line="87"/> <location filename="../ImportDialog.cpp" line="323"/> - <location filename="../ImportDialog.cpp" line="808"/> + <location filename="../ImportDialog.cpp" line="809"/> <source>Background Image:</source> <translation>背景圖片:</translation> </message> @@ -331,35 +331,35 @@ Pictures and Savegames</source> <translation>取消(&C)</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="120"/> + <location filename="../ImportDialog.cpp" line="119"/> <source>&Import new Picture...</source> <translation>匯入新圖片(&I)...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="121"/> + <location filename="../ImportDialog.cpp" line="120"/> <source>&Crop Picture...</source> <translation>裁剪圖片(&C)...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="123"/> + <location filename="../ImportDialog.cpp" line="122"/> <source>&Load Settings...</source> <translation>載入設定(&L)...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="124"/> + <location filename="../ImportDialog.cpp" line="123"/> <source>&Save Settings...</source> <translation>儲存設定(&S)...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="198"/> - <location filename="../ProfileInterface.cpp" line="720"/> + <location filename="../ProfileInterface.cpp" line="721"/> <source>Custom Avatar</source> <comment>Custom Avatar Description in SC, don't use Special Character!</comment> <translation>自訂大頭貼</translation> </message> <message> <location filename="../ImportDialog.cpp" line="225"/> - <location filename="../ProfileInterface.cpp" line="739"/> + <location filename="../ProfileInterface.cpp" line="740"/> <source>Custom Picture</source> <comment>Custom Picture Description in SC, don't use Special Character!</comment> <translation>自訂圖片</translation> @@ -436,24 +436,24 @@ Pictures and Savegames</source> <translation>儲存設定...</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Snapmatic Avatar Zone</source> <translation>Snapmatic 大頭貼區域</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="675"/> + <location filename="../ImportDialog.cpp" line="676"/> <source>Are you sure to use a square image outside of the Avatar Zone? When you want to use it as Avatar the image will be detached!</source> <translation>你確定要在大頭貼區域以外的地方使用方形圖片嗎? 作為大頭貼的圖片將被分離!</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="724"/> + <location filename="../ImportDialog.cpp" line="725"/> <source>Select Colour...</source> <translation>選擇顏色...</translation> </message> <message> <location filename="../ImportDialog.cpp" line="318"/> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>Background Image: %1</source> <translation>背景圖片: %1</translation> </message> @@ -464,7 +464,7 @@ When you want to use it as Avatar the image will be detached!</source> <translation>請選擇設定檔</translation> </message> <message> - <location filename="../ImportDialog.cpp" line="793"/> + <location filename="../ImportDialog.cpp" line="794"/> <source>File</source> <comment>Background Image: File</comment> <translation>文件</translation> @@ -715,26 +715,26 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="399"/> <location filename="../OptionsDialog.ui" line="422"/> - <location filename="../OptionsDialog.cpp" line="635"/> <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Found: %1</source> <translation>找到: %1</translation> </message> <message> <location filename="../OptionsDialog.ui" line="406"/> <location filename="../OptionsDialog.ui" line="429"/> - <location filename="../OptionsDialog.cpp" line="639"/> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="655"/> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="668"/> - <location filename="../OptionsDialog.cpp" line="672"/> - <location filename="../OptionsDialog.cpp" line="676"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="640"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="656"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="669"/> + <location filename="../OptionsDialog.cpp" line="673"/> + <location filename="../OptionsDialog.cpp" line="677"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Language: %1</source> <translation>語言: %1</translation> </message> @@ -755,7 +755,7 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="465"/> - <location filename="../OptionsDialog.cpp" line="597"/> + <location filename="../OptionsDialog.cpp" line="598"/> <source>Participate in %1 User Statistics</source> <translation>參與 %1 使用者統計</translation> </message> @@ -791,8 +791,8 @@ Y: %2</translation> </message> <message> <location filename="../OptionsDialog.ui" line="554"/> - <location filename="../OptionsDialog.cpp" line="613"/> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="614"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Participation ID: %1</source> <translation>參與 ID: %1</translation> </message> @@ -814,8 +814,8 @@ Y: %2</translation> <message> <location filename="../OptionsDialog.ui" line="611"/> <location filename="../OptionsDialog.ui" line="633"/> - <location filename="../OptionsDialog.cpp" line="223"/> - <location filename="../OptionsDialog.cpp" line="272"/> + <location filename="../OptionsDialog.cpp" line="224"/> + <location filename="../OptionsDialog.cpp" line="273"/> <source>Current: %1</source> <translation>目前: %1</translation> </message> @@ -872,95 +872,95 @@ Y: %2</translation> <translation>取消(&C)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>System</source> <comment>System in context of System default</comment> <translation>系統</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>%1 (Closest to Interface)</source> <comment>Next closest language compared to the Interface</comment> <translation>%1 (與介面接近的語言)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> - <location filename="../OptionsDialog.cpp" line="185"/> - <location filename="../OptionsDialog.cpp" line="188"/> + <location filename="../OptionsDialog.cpp" line="182"/> + <location filename="../OptionsDialog.cpp" line="186"/> + <location filename="../OptionsDialog.cpp" line="189"/> <source>Auto</source> <comment>Automatic language choice.</comment> <translation>自動</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="175"/> + <location filename="../OptionsDialog.cpp" line="176"/> <source>%1 (Language priority)</source> <comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment> <translation>%1 (語言優先)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="181"/> + <location filename="../OptionsDialog.cpp" line="182"/> <source>%1 (Game language)</source> <comment>Next closest language compared to the Game settings</comment> <translation>%1 (遊戲語言)</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>%1</source> <comment>%1</comment> <translation>%1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="485"/> + <location filename="../OptionsDialog.cpp" line="486"/> <source>The new Custom Folder will initialise after you restart %1.</source> <translation>自訂資料夾將在 %1 重新啟動後初始化.</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="495"/> + <location filename="../OptionsDialog.cpp" line="496"/> <source>No Profile</source> <comment>No Profile, as default</comment> <translation>無</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="503"/> - <location filename="../OptionsDialog.cpp" line="507"/> - <location filename="../OptionsDialog.cpp" line="509"/> + <location filename="../OptionsDialog.cpp" line="504"/> + <location filename="../OptionsDialog.cpp" line="508"/> + <location filename="../OptionsDialog.cpp" line="510"/> <source>Profile: %1</source> <translation>設定檔: %1</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="598"/> + <location filename="../OptionsDialog.cpp" line="599"/> <source>View %1 User Statistics Online</source> <translation>檢視 %1 使用者統計資訊</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="617"/> + <location filename="../OptionsDialog.cpp" line="618"/> <source>Not registered</source> <translation>未註冊參與</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="635"/> - <location filename="../OptionsDialog.cpp" line="651"/> - <location filename="../OptionsDialog.cpp" line="664"/> + <location filename="../OptionsDialog.cpp" line="636"/> + <location filename="../OptionsDialog.cpp" line="652"/> <location filename="../OptionsDialog.cpp" line="665"/> + <location filename="../OptionsDialog.cpp" line="666"/> <source>Yes</source> <translation>是</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="636"/> - <location filename="../OptionsDialog.cpp" line="650"/> + <location filename="../OptionsDialog.cpp" line="637"/> + <location filename="../OptionsDialog.cpp" line="651"/> <source>No</source> <translation>否</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="643"/> - <location filename="../OptionsDialog.cpp" line="672"/> + <location filename="../OptionsDialog.cpp" line="644"/> + <location filename="../OptionsDialog.cpp" line="673"/> <source>OS defined</source> <translation>系統定義</translation> </message> <message> - <location filename="../OptionsDialog.cpp" line="659"/> - <location filename="../OptionsDialog.cpp" line="680"/> + <location filename="../OptionsDialog.cpp" line="660"/> + <location filename="../OptionsDialog.cpp" line="681"/> <source>Steam defined</source> <translation>Steam 定義</translation> </message> @@ -1004,43 +1004,43 @@ Y: %2</translation> <translation>關閉(&C)</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="174"/> - <location filename="../ProfileInterface.cpp" line="1638"/> + <location filename="../PictureDialog.cpp" line="175"/> + <location filename="../ProfileInterface.cpp" line="1639"/> <source>Export as &Picture...</source> <translation>匯出成圖片(&P)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="175"/> - <location filename="../ProfileInterface.cpp" line="1639"/> + <location filename="../PictureDialog.cpp" line="176"/> + <location filename="../ProfileInterface.cpp" line="1640"/> <source>Export as &Snapmatic...</source> <translation>匯出成 Snapmatic(&S)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="177"/> - <location filename="../ProfileInterface.cpp" line="1631"/> + <location filename="../PictureDialog.cpp" line="178"/> + <location filename="../ProfileInterface.cpp" line="1632"/> <source>&Edit Properties...</source> <translation>編輯屬性(&E) ...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="178"/> - <location filename="../ProfileInterface.cpp" line="1632"/> + <location filename="../PictureDialog.cpp" line="179"/> + <location filename="../ProfileInterface.cpp" line="1633"/> <source>&Overwrite Image...</source> <translation>修改圖片(&O)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="180"/> - <location filename="../ProfileInterface.cpp" line="1634"/> + <location filename="../PictureDialog.cpp" line="181"/> + <location filename="../ProfileInterface.cpp" line="1635"/> <source>Open &Map Viewer...</source> <translation>開啟地圖檢視器(&M)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="183"/> - <location filename="../ProfileInterface.cpp" line="1636"/> + <location filename="../PictureDialog.cpp" line="184"/> + <location filename="../ProfileInterface.cpp" line="1637"/> <source>Open &JSON Editor...</source> <translation>開啟 JSON 編輯器(&J)...</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="497"/> + <location filename="../PictureDialog.cpp" line="498"/> <source>Key 1 - Avatar Preview Mode Key 2 - Toggle Overlay Arrow Keys - Navigate</source> @@ -1049,37 +1049,37 @@ Arrow Keys - Navigate</source> 方向鍵 - 導覽</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Snapmatic Picture Viewer</source> <translation>Snapmatic 圖片檢視器</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="558"/> - <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="559"/> + <location filename="../PictureDialog.cpp" line="577"/> <source>Failed at %1</source> <translation>失敗: %1</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="715"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="719"/> <location filename="../SnapmaticEditor.cpp" line="246"/> <source>No Players</source> <translation>無</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> - <location filename="../PictureDialog.cpp" line="691"/> + <location filename="../PictureDialog.cpp" line="576"/> + <location filename="../PictureDialog.cpp" line="695"/> <source>No Crew</source> <translation>無</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="575"/> + <location filename="../PictureDialog.cpp" line="576"/> <source>Unknown Location</source> <translation>未知地點</translation> </message> <message> - <location filename="../PictureDialog.cpp" line="649"/> + <location filename="../PictureDialog.cpp" line="653"/> <source>Avatar Preview Mode Press 1 for Default View</source> <translation>大頭貼預覽模式 @@ -1289,7 +1289,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="426"/> - <location filename="../ImportDialog.cpp" line="747"/> + <location filename="../ImportDialog.cpp" line="748"/> <location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="496"/> <location filename="../ProfileInterface.cpp" line="540"/> @@ -1297,16 +1297,16 @@ Press 1 for Default View</source> <location filename="../ProfileInterface.cpp" line="595"/> <location filename="../ProfileInterface.cpp" line="637"/> <location filename="../ProfileInterface.cpp" line="672"/> - <location filename="../ProfileInterface.cpp" line="781"/> - <location filename="../ProfileInterface.cpp" line="791"/> - <location filename="../ProfileInterface.cpp" line="934"/> - <location filename="../ProfileInterface.cpp" line="939"/> - <location filename="../ProfileInterface.cpp" line="977"/> - <location filename="../ProfileInterface.cpp" line="1103"/> - <location filename="../ProfileInterface.cpp" line="1111"/> - <location filename="../ProfileInterface.cpp" line="1199"/> - <location filename="../ProfileInterface.cpp" line="1236"/> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="782"/> + <location filename="../ProfileInterface.cpp" line="792"/> + <location filename="../ProfileInterface.cpp" line="935"/> + <location filename="../ProfileInterface.cpp" line="940"/> + <location filename="../ProfileInterface.cpp" line="978"/> + <location filename="../ProfileInterface.cpp" line="1104"/> + <location filename="../ProfileInterface.cpp" line="1112"/> + <location filename="../ProfileInterface.cpp" line="1200"/> + <location filename="../ProfileInterface.cpp" line="1237"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Import...</source> <translation>匯入...</translation> </message> @@ -1314,22 +1314,22 @@ Press 1 for Default View</source> <location filename="../ImportDialog.cpp" line="427"/> <location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="748"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ImportDialog.cpp" line="788"/> + <location filename="../ImportDialog.cpp" line="749"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ImportDialog.cpp" line="789"/> <source>Import</source> <translation>匯入</translation> </message> <message> <location filename="../ImportDialog.cpp" line="437"/> - <location filename="../ImportDialog.cpp" line="758"/> + <location filename="../ImportDialog.cpp" line="759"/> <location filename="../ProfileInterface.cpp" line="515"/> <source>All image files (%1)</source> <translation>所有圖片 (%1)</translation> </message> <message> <location filename="../ImportDialog.cpp" line="438"/> - <location filename="../ImportDialog.cpp" line="759"/> + <location filename="../ImportDialog.cpp" line="760"/> <location filename="../ProfileInterface.cpp" line="516"/> <location filename="../UserInterface.cpp" line="474"/> <source>All files (**)</source> @@ -1337,15 +1337,15 @@ Press 1 for Default View</source> </message> <message> <location filename="../ImportDialog.cpp" line="458"/> - <location filename="../ImportDialog.cpp" line="779"/> - <location filename="../ProfileInterface.cpp" line="781"/> + <location filename="../ImportDialog.cpp" line="780"/> + <location filename="../ProfileInterface.cpp" line="782"/> <source>Can't import %1 because file can't be open</source> <translation>無法匯入 %1,因為檔案無法開啟</translation> </message> <message> <location filename="../ImportDialog.cpp" line="467"/> - <location filename="../ImportDialog.cpp" line="788"/> - <location filename="../ProfileInterface.cpp" line="791"/> + <location filename="../ImportDialog.cpp" line="789"/> + <location filename="../ProfileInterface.cpp" line="792"/> <source>Can't import %1 because file can't be parsed properly</source> <translation>無法匯入 %1,因為檔案無法正確解析</translation> </message> @@ -1394,7 +1394,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../ProfileInterface.cpp" line="540"/> - <location filename="../ProfileInterface.cpp" line="939"/> + <location filename="../ProfileInterface.cpp" line="940"/> <location filename="../UserInterface.cpp" line="562"/> <source>No valid file is selected</source> <translation>沒有選擇有效的檔案</translation> @@ -1425,114 +1425,114 @@ Press 1 for Default View</source> <translation>無法讀取遊戲存檔</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="934"/> + <location filename="../ProfileInterface.cpp" line="935"/> <source>Can't import %1 because file format can't be detected</source> <translation>無法匯入 %1,因為無法檢測該檔案格式</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1103"/> + <location filename="../ProfileInterface.cpp" line="1104"/> <source>Failed to import the Snapmatic picture, file not begin with PRDR or end with .r5e</source> <translation>匯入 Snapmatic 圖片失敗,檔案不是 PRDR 開頭或附檔名不是 .r5e</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1199"/> + <location filename="../ProfileInterface.cpp" line="1200"/> <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> <translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1236"/> + <location filename="../ProfileInterface.cpp" line="1237"/> <source>Failed to import the Savegame, can't copy the file into profile</source> <translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1242"/> + <location filename="../ProfileInterface.cpp" line="1243"/> <source>Failed to import the Savegame, no Savegame slot is left</source> <translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1306"/> - <location filename="../ProfileInterface.cpp" line="1344"/> - <location filename="../ProfileInterface.cpp" line="1389"/> - <location filename="../ProfileInterface.cpp" line="1424"/> - <location filename="../ProfileInterface.cpp" line="1444"/> + <location filename="../ProfileInterface.cpp" line="1307"/> + <location filename="../ProfileInterface.cpp" line="1345"/> + <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1425"/> + <location filename="../ProfileInterface.cpp" line="1445"/> <source>Export selected...</source> <translation>匯出所選...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1329"/> - <location filename="../ProfileInterface.cpp" line="1347"/> + <location filename="../ProfileInterface.cpp" line="1330"/> + <location filename="../ProfileInterface.cpp" line="1348"/> <source>JPG pictures and GTA Snapmatic</source> <translation>JPG 圖片和 GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1330"/> - <location filename="../ProfileInterface.cpp" line="1352"/> + <location filename="../ProfileInterface.cpp" line="1331"/> + <location filename="../ProfileInterface.cpp" line="1353"/> <source>JPG pictures only</source> <translation>只有 JPG 圖片</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1331"/> - <location filename="../ProfileInterface.cpp" line="1356"/> + <location filename="../ProfileInterface.cpp" line="1332"/> + <location filename="../ProfileInterface.cpp" line="1357"/> <source>GTA Snapmatic only</source> <translation>只有 GTA Snapmatic</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1344"/> + <location filename="../ProfileInterface.cpp" line="1345"/> <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source> <translation>%1 匯出 Snapmatic 圖片 %2<br><br>JPG 圖片可使用圖片檢視器開啟<br>GTA Snapmatic 可以匯入到遊戲中<br><br>匯出成:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1390"/> + <location filename="../ProfileInterface.cpp" line="1391"/> <source>Initialising export...</source> <translation>初始化...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1424"/> + <location filename="../ProfileInterface.cpp" line="1425"/> <source>Export failed with... %1</source> <translation>%1 匯出失敗</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1444"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1445"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>No Snapmatic pictures or Savegames files are selected</source> <translation>未選擇 Snapmatic 圖片或遊戲存檔</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> - <location filename="../ProfileInterface.cpp" line="1480"/> - <location filename="../ProfileInterface.cpp" line="1486"/> + <location filename="../ProfileInterface.cpp" line="1453"/> + <location filename="../ProfileInterface.cpp" line="1481"/> + <location filename="../ProfileInterface.cpp" line="1487"/> <source>Remove selected</source> <translation>移除所選</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1452"/> + <location filename="../ProfileInterface.cpp" line="1453"/> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1480"/> + <location filename="../ProfileInterface.cpp" line="1481"/> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2314"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2315"/> <source>No Snapmatic pictures are selected</source> <translation>未選擇 Snapmatic 圖片</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1566"/> - <location filename="../ProfileInterface.cpp" line="1600"/> - <location filename="../ProfileInterface.cpp" line="2063"/> - <location filename="../ProfileInterface.cpp" line="2162"/> - <location filename="../ProfileInterface.cpp" line="2293"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="1567"/> + <location filename="../ProfileInterface.cpp" line="1601"/> + <location filename="../ProfileInterface.cpp" line="2064"/> + <location filename="../ProfileInterface.cpp" line="2163"/> + <location filename="../ProfileInterface.cpp" line="2294"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>%1 failed with... %2</source> @@ -1542,91 +1542,91 @@ Press 1 for Default View</source> %2</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="993"/> + <location filename="../ProfileInterface.cpp" line="994"/> <source>Prepare Content for Import...</source> <translation>準備匯入內容...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1111"/> + <location filename="../ProfileInterface.cpp" line="1112"/> <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> </message> <message> - <location filename="../ProfileInterface.cpp" line="1998"/> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="1999"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify as Avatar</source> <translation>合格大頭貼</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2009"/> - <location filename="../ProfileInterface.cpp" line="2112"/> - <location filename="../ProfileInterface.cpp" line="2243"/> - <location filename="../ProfileInterface.cpp" line="2349"/> + <location filename="../ProfileInterface.cpp" line="2010"/> + <location filename="../ProfileInterface.cpp" line="2113"/> + <location filename="../ProfileInterface.cpp" line="2244"/> + <location filename="../ProfileInterface.cpp" line="2350"/> <source>Patch selected...</source> <translation>修改所選...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2010"/> - <location filename="../ProfileInterface.cpp" line="2029"/> - <location filename="../ProfileInterface.cpp" line="2113"/> - <location filename="../ProfileInterface.cpp" line="2132"/> - <location filename="../ProfileInterface.cpp" line="2244"/> - <location filename="../ProfileInterface.cpp" line="2263"/> - <location filename="../ProfileInterface.cpp" line="2350"/> - <location filename="../ProfileInterface.cpp" line="2369"/> + <location filename="../ProfileInterface.cpp" line="2011"/> + <location filename="../ProfileInterface.cpp" line="2030"/> + <location filename="../ProfileInterface.cpp" line="2114"/> + <location filename="../ProfileInterface.cpp" line="2133"/> + <location filename="../ProfileInterface.cpp" line="2245"/> + <location filename="../ProfileInterface.cpp" line="2264"/> + <location filename="../ProfileInterface.cpp" line="2351"/> + <location filename="../ProfileInterface.cpp" line="2370"/> <source>Patch file %1 of %2 files</source> <translation>修改檔案 %1 共 %2 個檔案</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2063"/> + <location filename="../ProfileInterface.cpp" line="2064"/> <source>Qualify</source> <comment>%1 failed with...</comment> <translation>合格</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2084"/> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2085"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players...</source> <translation>更改玩家...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2162"/> + <location filename="../ProfileInterface.cpp" line="2163"/> <source>Change Players</source> <comment>%1 failed with...</comment> <translation>更改玩家</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2183"/> - <location filename="../ProfileInterface.cpp" line="2220"/> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2184"/> + <location filename="../ProfileInterface.cpp" line="2221"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew...</source> <translation>更改幫會...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2220"/> + <location filename="../ProfileInterface.cpp" line="2221"/> <source>Failed to enter a valid Snapmatic Crew ID</source> <translation>輸入了無效的幫會 ID</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2293"/> + <location filename="../ProfileInterface.cpp" line="2294"/> <source>Change Crew</source> <comment>%1 failed with...</comment> <translation>更改幫會</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2314"/> - <location filename="../ProfileInterface.cpp" line="2331"/> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2315"/> + <location filename="../ProfileInterface.cpp" line="2332"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title...</source> <translation>更改標題...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2331"/> + <location filename="../ProfileInterface.cpp" line="2332"/> <source>Failed to enter a valid Snapmatic title</source> <translation>輸入了無效的標題</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2396"/> + <location filename="../ProfileInterface.cpp" line="2397"/> <source>Change Title</source> <comment>%1 failed with...</comment> <translation>更改標題</translation> @@ -1726,37 +1726,37 @@ Press 1 for Default View</source> <translation>刪除</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1674"/> + <location filename="../ProfileInterface.cpp" line="1675"/> <source>&View</source> <translation>檢視(&V)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1675"/> + <location filename="../ProfileInterface.cpp" line="1676"/> <source>&Export</source> <translation>匯出(&E)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1676"/> + <location filename="../ProfileInterface.cpp" line="1677"/> <source>&Remove</source> <translation>移除(&R)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1678"/> + <location filename="../ProfileInterface.cpp" line="1679"/> <source>&Select</source> <translation>選擇(&S)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1679"/> + <location filename="../ProfileInterface.cpp" line="1680"/> <source>&Deselect</source> <translation>取消選擇(&D)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1682"/> + <location filename="../ProfileInterface.cpp" line="1683"/> <source>Select &All</source> <translation>選擇全部(&A)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1686"/> + <location filename="../ProfileInterface.cpp" line="1687"/> <source>&Deselect All</source> <translation>取消選擇全部(&D)</translation> </message> @@ -1856,7 +1856,7 @@ Press 1 for Default View</source> <location filename="../JsonEditorDialog.cpp" line="191"/> <location filename="../JsonEditorDialog.cpp" line="197"/> <location filename="../JsonEditorDialog.cpp" line="226"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Snapmatic Properties</source> @@ -1949,7 +1949,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../JsonEditorDialog.cpp" line="197"/> - <location filename="../PictureDialog.cpp" line="842"/> + <location filename="../PictureDialog.cpp" line="846"/> <location filename="../SnapmaticEditor.cpp" line="333"/> <location filename="../SnapmaticWidget.cpp" line="433"/> <source>Patching of Snapmatic Properties failed because of I/O Error</source> @@ -1961,25 +1961,25 @@ Press 1 for Default View</source> <translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>Snapmatic Crew</source> <translation>幫會</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2211"/> + <location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../SnapmaticEditor.cpp" line="442"/> <source>New Snapmatic crew:</source> <translation>輸入新的幫會:</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>Snapmatic Title</source> <translation>標題</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="2326"/> + <location filename="../ProfileInterface.cpp" line="2327"/> <location filename="../SnapmaticEditor.cpp" line="413"/> <source>New Snapmatic title:</source> <translation>輸入新的標題:</translation> @@ -2036,19 +2036,19 @@ Press 1 for Default View</source> <name>SnapmaticPicture</name> <message> <location filename="../JsonEditorDialog.cpp" line="177"/> - <location filename="../SnapmaticPicture.cpp" line="738"/> + <location filename="../SnapmaticPicture.cpp" line="748"/> <source>JSON is incomplete and malformed</source> <translation>JSON 不完整和異常</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="181"/> - <location filename="../SnapmaticPicture.cpp" line="742"/> + <location filename="../SnapmaticPicture.cpp" line="752"/> <source>JSON is incomplete</source> <translation>JSON 不完整</translation> </message> <message> <location filename="../JsonEditorDialog.cpp" line="185"/> - <location filename="../SnapmaticPicture.cpp" line="746"/> + <location filename="../SnapmaticPicture.cpp" line="756"/> <source>JSON is malformed</source> <translation>JSON 異常</translation> </message> @@ -2058,42 +2058,42 @@ Press 1 for Default View</source> <translation>照片 - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="698"/> + <location filename="../SnapmaticPicture.cpp" line="708"/> <source>open file %1</source> <translation>開啟檔案 - %1</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="714"/> + <location filename="../SnapmaticPicture.cpp" line="724"/> <source>header not exists</source> <translation>標頭不存在</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="718"/> + <location filename="../SnapmaticPicture.cpp" line="728"/> <source>header is malformed</source> <translation>標頭異常</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="722"/> + <location filename="../SnapmaticPicture.cpp" line="732"/> <source>picture not exists (%1)</source> <translation>圖片不存在 (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="726"/> + <location filename="../SnapmaticPicture.cpp" line="736"/> <source>JSON not exists (%1)</source> <translation>JSON 不存在 (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="730"/> + <location filename="../SnapmaticPicture.cpp" line="740"/> <source>title not exists (%1)</source> <translation>標題不存在 (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="734"/> + <location filename="../SnapmaticPicture.cpp" line="744"/> <source>description not exists (%1)</source> <translation>描述不存在 (%1)</translation> </message> <message> - <location filename="../SnapmaticPicture.cpp" line="748"/> + <location filename="../SnapmaticPicture.cpp" line="758"/> <source>reading file %1 because of %2</source> <comment>Example for %2: JSON is malformed error</comment> <translation>讀取檔案 %1 失敗,因為 %2</translation> @@ -2154,52 +2154,52 @@ Press 1 for Default View</source> <translation>刪除</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1622"/> + <location filename="../ProfileInterface.cpp" line="1623"/> <source>Edi&t</source> <translation>編輯(&E)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1625"/> + <location filename="../ProfileInterface.cpp" line="1626"/> <source>Show &In-game</source> <translation>在遊戲中顯示(&I)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1629"/> + <location filename="../ProfileInterface.cpp" line="1630"/> <source>Hide &In-game</source> <translation>在遊戲中隱藏(&I)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1637"/> + <location filename="../ProfileInterface.cpp" line="1638"/> <source>&Export</source> <translation>匯出(&E)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1640"/> + <location filename="../ProfileInterface.cpp" line="1641"/> <source>&View</source> <translation>檢視(&V)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1643"/> + <location filename="../ProfileInterface.cpp" line="1644"/> <source>&Remove</source> <translation>移除(&R)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1645"/> + <location filename="../ProfileInterface.cpp" line="1646"/> <source>&Select</source> <translation>選擇(&S)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1646"/> + <location filename="../ProfileInterface.cpp" line="1647"/> <source>&Deselect</source> <translation>取消選擇(&D)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1649"/> + <location filename="../ProfileInterface.cpp" line="1650"/> <source>Select &All</source> <translation>選擇全部(&A)</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1653"/> + <location filename="../ProfileInterface.cpp" line="1654"/> <source>&Deselect All</source> <translation>取消選擇全部(&D)</translation> </message> @@ -2382,7 +2382,7 @@ Press 1 for Default View</source> </message> <message> <location filename="../UserInterface.ui" line="322"/> - <location filename="../OptionsDialog.cpp" line="744"/> + <location filename="../OptionsDialog.cpp" line="745"/> <location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="732"/> <source>Select RDR 2 Folder...</source> @@ -2419,15 +2419,15 @@ Press 1 for Default View</source> <translation>更改玩家(&P)...</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1552"/> - <location filename="../ProfileInterface.cpp" line="1566"/> + <location filename="../ProfileInterface.cpp" line="1553"/> + <location filename="../ProfileInterface.cpp" line="1567"/> <location filename="../SnapmaticWidget.cpp" line="328"/> <source>Show In-game</source> <translation>在遊戲中顯示</translation> </message> <message> - <location filename="../ProfileInterface.cpp" line="1586"/> - <location filename="../ProfileInterface.cpp" line="1600"/> + <location filename="../ProfileInterface.cpp" line="1587"/> + <location filename="../ProfileInterface.cpp" line="1601"/> <location filename="../SnapmaticWidget.cpp" line="320"/> <source>Hide In-game</source> <translation>在遊戲中隱藏</translation> diff --git a/res/template.r5e b/res/template.r5e index 24607fc..e1d51db 100644 Binary files a/res/template.r5e and b/res/template.r5e differ