Qt6 telemetry build fix, PictureDialog crash fix
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This commit is contained in:
		
							parent
							
								
									d4a6db068b
								
							
						
					
					
						commit
						2f7e4a154d
					
				
					 15 changed files with 1821 additions and 1839 deletions
				
			
		|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2017-2018 Syping | ||||
| * Copyright (C) 2017-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -212,7 +212,11 @@ bool JsonEditorDialog::saveJsonContent() | |||
|                 QJsonObject jsonObject; | ||||
|                 jsonObject["Type"] = "JSONEdited"; | ||||
|                 jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2016-2020 Syping | ||||
| * Copyright (C) 2016-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -457,7 +457,11 @@ void OptionsDialog::applySettings() | |||
|         QJsonDocument jsonDocument; | ||||
|         QJsonObject jsonObject; | ||||
|         jsonObject["Type"] = "SettingsUpdated"; | ||||
| #if QT_VERSION >= 0x060000 | ||||
|         jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|         jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|         jsonDocument.setObject(jsonObject); | ||||
|         Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|     } | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2016-2020 Syping | ||||
| * Copyright (C) 2016-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -148,12 +148,10 @@ void PictureDialog::setupPictureDialog() | |||
|     // Avatar area
 | ||||
|     qreal screenRatio = AppEnv::screenRatio(); | ||||
|     qreal screenRatioPR = AppEnv::screenRatioPR(); | ||||
|     if (screenRatio != 1 || screenRatioPR != 1) | ||||
|     { | ||||
|     if (screenRatio != 1 || screenRatioPR != 1) { | ||||
|         avatarAreaPicture = QImage(":/img/avatararea.png").scaledToHeight(snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::FastTransformation); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         avatarAreaPicture = QImage(":/img/avatararea.png"); | ||||
|     } | ||||
|     avatarLocX = 145; | ||||
|  | @ -189,17 +187,14 @@ void PictureDialog::setupPictureDialog() | |||
|     connect(ui->labJSON, SIGNAL(resized(QSize)), this, SLOT(adaptNewDialogSize(QSize))); | ||||
| 
 | ||||
|     // Set Icon for Close Button
 | ||||
|     if (QIcon::hasThemeIcon("dialog-close")) | ||||
|     { | ||||
|     if (QIcon::hasThemeIcon("dialog-close")) { | ||||
|         ui->cmdClose->setIcon(QIcon::fromTheme("dialog-close")); | ||||
|     } | ||||
|     else if (QIcon::hasThemeIcon("gtk-close")) | ||||
|     { | ||||
|     else if (QIcon::hasThemeIcon("gtk-close")) { | ||||
|         ui->cmdClose->setIcon(QIcon::fromTheme("gtk-close")); | ||||
|     } | ||||
| 
 | ||||
|     installEventFilter(this); | ||||
|     installEventFilter(ui->labPicture); | ||||
| 
 | ||||
|     // DPI calculation
 | ||||
|     ui->hlButtons->setSpacing(6 * screenRatio); | ||||
|  | @ -214,32 +209,6 @@ void PictureDialog::setupPictureDialog() | |||
| 
 | ||||
| PictureDialog::~PictureDialog() | ||||
| { | ||||
| #ifdef Q_OS_WIN | ||||
| #if QT_VERSION >= 0x050200 | ||||
|     if (naviEnabled) | ||||
|     { | ||||
|         for (QObject *obj : layout()->menuBar()->children()) | ||||
|         { | ||||
|             delete obj; | ||||
|         } | ||||
|         delete layout()->menuBar(); | ||||
|     } | ||||
| #endif | ||||
| #else | ||||
|     if (naviEnabled) | ||||
|     { | ||||
|         for (QObject *obj : layout()->menuBar()->children()) | ||||
|         { | ||||
|             delete obj; | ||||
|         } | ||||
|         delete layout()->menuBar(); | ||||
|     } | ||||
| #endif | ||||
|     for (QObject *obj : manageMenu->children()) | ||||
|     { | ||||
|         delete obj; | ||||
|     } | ||||
|     delete manageMenu; | ||||
|     delete ui; | ||||
| } | ||||
| 
 | ||||
|  | @ -247,9 +216,7 @@ void PictureDialog::closeEvent(QCloseEvent *ev) | |||
| { | ||||
|     Q_UNUSED(ev) | ||||
|     if (primaryWindow) | ||||
|     { | ||||
|         emit endDatabaseThread(); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| void PictureDialog::addPreviousNextButtons() | ||||
|  | @ -343,12 +310,10 @@ void PictureDialog::previousPictureRequestedSlot() | |||
| bool PictureDialog::eventFilter(QObject *obj, QEvent *ev) | ||||
| { | ||||
|     bool returnValue = false; | ||||
|     if (obj == this || obj == ui->labPicture) | ||||
|     { | ||||
|         if (ev->type() == QEvent::KeyPress) | ||||
|         { | ||||
|     if (obj == this || obj == ui->labPicture) { | ||||
|         if (ev->type() == QEvent::KeyPress) { | ||||
|             QKeyEvent *keyEvent = dynamic_cast<QKeyEvent*>(ev); | ||||
|             switch (keyEvent->key()){ | ||||
|             switch (keyEvent->key()) { | ||||
|             case Qt::Key_Left: | ||||
|                 emit previousPictureRequested(); | ||||
|                 returnValue = true; | ||||
|  | @ -358,25 +323,21 @@ bool PictureDialog::eventFilter(QObject *obj, QEvent *ev) | |||
|                 returnValue = true; | ||||
|                 break; | ||||
|             case Qt::Key_1: | ||||
|                 if (previewMode) | ||||
|                 { | ||||
|                 if (previewMode) { | ||||
|                     previewMode = false; | ||||
|                     renderPicture(); | ||||
|                 } | ||||
|                 else | ||||
|                 { | ||||
|                 else { | ||||
|                     previewMode = true; | ||||
|                     renderPicture(); | ||||
|                 } | ||||
|                 break; | ||||
|             case Qt::Key_2: | ||||
|                 if (overlayEnabled) | ||||
|                 { | ||||
|                 if (overlayEnabled) { | ||||
|                     overlayEnabled = false; | ||||
|                     if (!previewMode) renderPicture(); | ||||
|                 } | ||||
|                 else | ||||
|                 { | ||||
|                 else { | ||||
|                     overlayEnabled = true; | ||||
|                     if (!previewMode) renderPicture(); | ||||
|                 } | ||||
|  | @ -403,38 +364,28 @@ bool PictureDialog::eventFilter(QObject *obj, QEvent *ev) | |||
|         } | ||||
| #ifdef Q_OS_WIN | ||||
| #if QT_VERSION >= 0x050200 | ||||
|         if (obj != ui->labPicture && naviEnabled) | ||||
|         { | ||||
|             if (ev->type() == QEvent::MouseButtonPress) | ||||
|             { | ||||
|         if (obj != ui->labPicture && naviEnabled) { | ||||
|             if (ev->type() == QEvent::MouseButtonPress) { | ||||
|                 QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(ev); | ||||
|                 if (mouseEvent->pos().y() <= layout()->menuBar()->height()) | ||||
|                 { | ||||
|                     if (mouseEvent->button() == Qt::LeftButton) | ||||
|                     { | ||||
|                 if (mouseEvent->pos().y() <= layout()->menuBar()->height()) { | ||||
|                     if (mouseEvent->button() == Qt::LeftButton) { | ||||
|                         dragPosition = mouseEvent->pos(); | ||||
|                         dragStart = true; | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
|             if (ev->type() == QEvent::MouseButtonRelease) | ||||
|             { | ||||
|             if (ev->type() == QEvent::MouseButtonRelease) { | ||||
|                 QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(ev); | ||||
|                 if (mouseEvent->pos().y() <= layout()->menuBar()->height()) | ||||
|                 { | ||||
|                     if (mouseEvent->button() == Qt::LeftButton) | ||||
|                     { | ||||
|                 if (mouseEvent->pos().y() <= layout()->menuBar()->height()) { | ||||
|                     if (mouseEvent->button() == Qt::LeftButton) { | ||||
|                         dragStart = false; | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
|             if (ev->type() == QEvent::MouseMove && dragStart) | ||||
|             { | ||||
|             if (ev->type() == QEvent::MouseMove && dragStart) { | ||||
|                 QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(ev); | ||||
|                 if (mouseEvent->pos().y() <= layout()->menuBar()->height()) | ||||
|                 { | ||||
|                     if (mouseEvent->buttons() & Qt::LeftButton) | ||||
|                     { | ||||
|                 if (mouseEvent->pos().y() <= layout()->menuBar()->height()) { | ||||
|                     if (mouseEvent->buttons() & Qt::LeftButton) { | ||||
|                         QPoint diff = mouseEvent->pos() - dragPosition; | ||||
|                         move(QPoint(pos() + diff)); | ||||
|                         updateGeometry(); | ||||
|  | @ -493,14 +444,12 @@ void PictureDialog::renderOverlayPicture() | |||
|     QRect overlaySpace = fontMetrics.boundingRect(preferedRect, Qt::AlignLeft | Qt::AlignTop | Qt::TextDontClip | Qt::TextWordWrap, overlayText); | ||||
| 
 | ||||
|     int hOverlay = Qt::AlignTop; | ||||
|     if (overlaySpace.height() < 74 * screenRatio * screenRatioPR) | ||||
|     { | ||||
|     if (overlaySpace.height() < 74 * screenRatio * screenRatioPR) { | ||||
|         hOverlay = Qt::AlignVCenter; | ||||
|         preferedRect.setHeight(71 * screenRatio * screenRatioPR); | ||||
|         overlaySpace.setHeight(80 * screenRatio * screenRatioPR); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         overlaySpace.setHeight(overlaySpace.height() + 6 * screenRatio * screenRatioPR); | ||||
|     } | ||||
| 
 | ||||
|  | @ -513,12 +462,10 @@ void PictureDialog::renderOverlayPicture() | |||
|     overlayPainter.drawText(preferedRect, Qt::AlignLeft | hOverlay | Qt::TextDontClip | Qt::TextWordWrap, overlayText); | ||||
|     overlayPainter.end(); | ||||
| 
 | ||||
|     if (overlaySpace.width() < 194 * screenRatio * screenRatioPR) | ||||
|     { | ||||
|     if (overlaySpace.width() < 194 * screenRatio * screenRatioPR) { | ||||
|         overlaySpace.setWidth(200 * screenRatio * screenRatioPR); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         overlaySpace.setWidth(overlaySpace.width() + 6 * screenRatio * screenRatioPR); | ||||
|     } | ||||
| 
 | ||||
|  | @ -633,8 +580,7 @@ void PictureDialog::crewNameUpdated() | |||
| { | ||||
|     SnapmaticPicture *picture = smpic; // used by macro
 | ||||
|     QString crewIDStr = crewID; | ||||
|     if (crewIDStr == crewStr) | ||||
|     { | ||||
|     if (crewIDStr == crewStr) { | ||||
|         crewStr = crewDB->getCrewName(crewIDStr); | ||||
|         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created)); | ||||
|     } | ||||
|  | @ -643,8 +589,7 @@ void PictureDialog::crewNameUpdated() | |||
| void PictureDialog::playerNameUpdated() | ||||
| { | ||||
|     SnapmaticPicture *picture = smpic; // used by macro
 | ||||
|     if (plyrsList.count() >= 1) | ||||
|     { | ||||
|     if (plyrsList.count() >= 1) { | ||||
|         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created)); | ||||
|     } | ||||
| } | ||||
|  | @ -653,8 +598,7 @@ QString PictureDialog::generateCrewString() | |||
| { | ||||
|     SnapmaticPicture *picture = smpic; // used by macro
 | ||||
|     const QString crewIDStr = crewID; // save operation time
 | ||||
|     if (crewIDStr != "0" && !crewIDStr.isEmpty()) | ||||
|     { | ||||
|     if (crewIDStr != "0" && !crewIDStr.isEmpty()) { | ||||
|         if (crewIDStr != crewStr) { | ||||
|             return QString("<a href=\"https://socialclub.rockstargames.com/crew/" % QString(crewStr).replace(" ", "_") % "/" % crewIDStr % "\">" % crewStr % "</a>"); | ||||
|         } | ||||
|  | @ -769,12 +713,10 @@ void PictureDialog::openPreviewMap() | |||
| { | ||||
|     SnapmaticPicture *picture = smpic; | ||||
|     MapLocationDialog *mapLocDialog; | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) | ||||
|     { | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) { | ||||
|         mapLocDialog = new MapLocationDialog(picture->getSnapmaticProperties().location.x, picture->getSnapmaticProperties().location.y, fullscreenWidget); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         mapLocDialog = new MapLocationDialog(picture->getSnapmaticProperties().location.x, picture->getSnapmaticProperties().location.y, this); | ||||
|     } | ||||
|     mapLocDialog->setWindowIcon(windowIcon()); | ||||
|  | @ -785,8 +727,7 @@ void PictureDialog::openPreviewMap() | |||
|     mapLocDialog->showMaximized(); | ||||
| #endif | ||||
|     mapLocDialog->exec(); | ||||
|     if (mapLocDialog->propUpdated()) | ||||
|     { | ||||
|     if (mapLocDialog->propUpdated()) { | ||||
|         // Update Snapmatic Properties
 | ||||
|         SnapmaticProperties localSpJson = picture->getSnapmaticProperties(); | ||||
|         localSpJson.location.x = mapLocDialog->getXpos(); | ||||
|  | @ -797,33 +738,33 @@ void PictureDialog::openPreviewMap() | |||
|         QString currentFilePath = picture->getPictureFilePath(); | ||||
|         QString originalFilePath = picture->getOriginalPictureFilePath(); | ||||
|         QString backupFileName = originalFilePath % ".bak"; | ||||
|         if (!QFile::exists(backupFileName)) | ||||
|         { | ||||
|         if (!QFile::exists(backupFileName)) { | ||||
|             QFile::copy(currentFilePath, backupFileName); | ||||
|         } | ||||
|         SnapmaticProperties fallbackProperties = picture->getSnapmaticProperties(); | ||||
|         picture->setSnapmaticProperties(localSpJson); | ||||
|         if (!picture->exportPicture(currentFilePath)) | ||||
|         { | ||||
|         if (!picture->exportPicture(currentFilePath)) { | ||||
|             QMessageBox::warning(this, SnapmaticEditor::tr("Snapmatic Properties"), SnapmaticEditor::tr("Patching of Snapmatic Properties failed because of I/O Error")); | ||||
|             picture->setSnapmaticProperties(fallbackProperties); | ||||
|         } | ||||
|         else | ||||
|         { | ||||
|         else { | ||||
|             updated(); | ||||
| #ifdef GTA5SYNC_TELEMETRY | ||||
|             QSettings telemetrySettings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR); | ||||
|             telemetrySettings.beginGroup("Telemetry"); | ||||
|             bool pushUsageData = telemetrySettings.value("PushUsageData", false).toBool(); | ||||
|             telemetrySettings.endGroup(); | ||||
|             if (pushUsageData && Telemetry->canPush()) | ||||
|             { | ||||
|             if (pushUsageData && Telemetry->canPush()) { | ||||
|                 QJsonDocument jsonDocument; | ||||
|                 QJsonObject jsonObject; | ||||
|                 jsonObject["Type"] = "LocationEdited"; | ||||
|                 jsonObject["ExtraFlags"] = "Viewer"; | ||||
|                 jsonObject["EditedSize"] = QString::number(picture->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  | @ -837,12 +778,10 @@ void PictureDialog::editSnapmaticProperties() | |||
| { | ||||
|     SnapmaticPicture *picture = smpic; | ||||
|     SnapmaticEditor *snapmaticEditor; | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) | ||||
|     { | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) { | ||||
|         snapmaticEditor = new SnapmaticEditor(crewDB, profileDB, fullscreenWidget); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         snapmaticEditor = new SnapmaticEditor(crewDB, profileDB, this); | ||||
|     } | ||||
|     snapmaticEditor->setWindowIcon(windowIcon()); | ||||
|  | @ -861,12 +800,10 @@ void PictureDialog::editSnapmaticImage() | |||
| { | ||||
|     QImage *currentImage = new QImage(smpic->getImage()); | ||||
|     ImportDialog *importDialog; | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) | ||||
|     { | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) { | ||||
|         importDialog = new ImportDialog(profileName, fullscreenWidget); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         importDialog = new ImportDialog(profileName, this); | ||||
|     } | ||||
|     importDialog->setWindowIcon(windowIcon()); | ||||
|  | @ -874,21 +811,17 @@ void PictureDialog::editSnapmaticImage() | |||
|     importDialog->enableOverwriteMode(); | ||||
|     importDialog->setModal(true); | ||||
|     importDialog->exec(); | ||||
|     if (importDialog->isImportAgreed()) | ||||
|     { | ||||
|     if (importDialog->isImportAgreed()) { | ||||
|         const QByteArray previousPicture = smpic->getPictureStream(); | ||||
|         bool success = smpic->setImage(importDialog->image()); | ||||
|         if (success) | ||||
|         { | ||||
|         if (success) { | ||||
|             QString currentFilePath = smpic->getPictureFilePath(); | ||||
|             QString originalFilePath = smpic->getOriginalPictureFilePath(); | ||||
|             QString backupFileName = originalFilePath % ".bak"; | ||||
|             if (!QFile::exists(backupFileName)) | ||||
|             { | ||||
|             if (!QFile::exists(backupFileName)) { | ||||
|                 QFile::copy(currentFilePath, backupFileName); | ||||
|             } | ||||
|             if (!smpic->exportPicture(currentFilePath)) | ||||
|             { | ||||
|             if (!smpic->exportPicture(currentFilePath)) { | ||||
|                 smpic->setPictureStream(previousPicture); | ||||
|                 QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of I/O Error")); | ||||
|                 return; | ||||
|  | @ -899,21 +832,23 @@ void PictureDialog::editSnapmaticImage() | |||
|             telemetrySettings.beginGroup("Telemetry"); | ||||
|             bool pushUsageData = telemetrySettings.value("PushUsageData", false).toBool(); | ||||
|             telemetrySettings.endGroup(); | ||||
|             if (pushUsageData && Telemetry->canPush()) | ||||
|             { | ||||
|             if (pushUsageData && Telemetry->canPush()) { | ||||
|                 QJsonDocument jsonDocument; | ||||
|                 QJsonObject jsonObject; | ||||
|                 jsonObject["Type"] = "ImageEdited"; | ||||
|                 jsonObject["ExtraFlags"] = "Viewer"; | ||||
|                 jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
| #endif | ||||
|         } | ||||
|         else | ||||
|         { | ||||
|         else { | ||||
|             QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of Image Error")); | ||||
|             return; | ||||
|         } | ||||
|  | @ -925,12 +860,10 @@ void PictureDialog::editSnapmaticRawJson() | |||
| { | ||||
|     SnapmaticPicture *picture = smpic; | ||||
|     JsonEditorDialog *jsonEditor; | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) | ||||
|     { | ||||
|     if (rqFullscreen && fullscreenWidget != nullptr) { | ||||
|         jsonEditor = new JsonEditorDialog(picture, fullscreenWidget); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         jsonEditor = new JsonEditorDialog(picture, this); | ||||
|     } | ||||
|     jsonEditor->setWindowIcon(windowIcon()); | ||||
|  | @ -948,12 +881,10 @@ void PictureDialog::updated() | |||
| { | ||||
|     SnapmaticPicture *picture = smpic; // used by macro
 | ||||
|     crewStr = crewDB->getCrewName(crewID); | ||||
|     if (globalMap.contains(picArea)) | ||||
|     { | ||||
|     if (globalMap.contains(picArea)) { | ||||
|         picAreaStr = globalMap[picArea]; | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         picAreaStr = picArea; | ||||
|     } | ||||
|     setWindowTitle(windowTitleStr.arg(picTitl)); | ||||
|  | @ -963,8 +894,7 @@ void PictureDialog::updated() | |||
| void PictureDialog::customSignal(QString signal) | ||||
| { | ||||
|     SnapmaticPicture *picture = smpic; // used by macro
 | ||||
|     if (signal == "PictureUpdated") | ||||
|     { | ||||
|     if (signal == "PictureUpdated") { | ||||
|         snapmaticPicture = picture->getImage(); | ||||
|         renderPicture(); | ||||
|     } | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2016-2020 Syping | ||||
| * Copyright (C) 2016-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -625,7 +625,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | |||
|                         QJsonObject jsonObject; | ||||
|                         jsonObject["Type"] = "ImportSuccess"; | ||||
|                         jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                         jsonObject["ImportType"] = "Snapmatic"; | ||||
|                         jsonDocument.setObject(jsonObject); | ||||
|                         Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|  | @ -660,7 +664,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | |||
|                         QJsonDocument jsonDocument; | ||||
|                         QJsonObject jsonObject; | ||||
|                         jsonObject["Type"] = "ImportSuccess"; | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                         jsonObject["ImportType"] = "Savegame"; | ||||
|                         jsonDocument.setObject(jsonObject); | ||||
|                         Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|  | @ -851,7 +859,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | |||
|                                     jsonObject["Type"] = "ImportSuccess"; | ||||
|                                     jsonObject["ExtraFlag"] = "Dialog"; | ||||
|                                     jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                                     jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                                     jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                                     jsonObject["ImportType"] = "Image"; | ||||
|                                     jsonDocument.setObject(jsonObject); | ||||
|                                     Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|  | @ -898,7 +910,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | |||
|                         QJsonObject jsonObject; | ||||
|                         jsonObject["Type"] = "ImportSuccess"; | ||||
|                         jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                         jsonObject["ImportType"] = "Snapmatic"; | ||||
|                         jsonDocument.setObject(jsonObject); | ||||
|                         Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|  | @ -924,7 +940,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | |||
|                         QJsonDocument jsonDocument; | ||||
|                         QJsonObject jsonObject; | ||||
|                         jsonObject["Type"] = "ImportSuccess"; | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                         jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                         jsonObject["ImportType"] = "Savegame"; | ||||
|                         jsonDocument.setObject(jsonObject); | ||||
|                         Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2016-2018 Syping | ||||
| * Copyright (C) 2016-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -152,7 +152,11 @@ void SavegameWidget::on_cmdDelete_clicked() | |||
|                 QJsonObject jsonObject; | ||||
|                 jsonObject["Type"] = "DeleteSuccess"; | ||||
|                 jsonObject["ExtraFlags"] = "Savegame"; | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  | @ -171,7 +175,11 @@ void SavegameWidget::on_cmdDelete_clicked() | |||
|                 QJsonObject jsonObject; | ||||
|                 jsonObject["Type"] = "DeleteSuccess"; | ||||
|                 jsonObject["ExtraFlags"] = "Savegame"; | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2016-2018 Syping | ||||
| * Copyright (C) 2016-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -349,7 +349,11 @@ void SnapmaticEditor::on_cmdApply_clicked() | |||
|                 QJsonObject jsonObject; | ||||
|                 jsonObject["Type"] = "PropertyEdited"; | ||||
|                 jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2016-2020 Syping | ||||
| * Copyright (C) 2016-2021 Syping | ||||
| * | ||||
| * This program is free software: you can redistribute it and/or modify | ||||
| * it under the terms of the GNU General Public License as published by | ||||
|  | @ -197,7 +197,11 @@ bool SnapmaticWidget::deletePicture() | |||
|                 jsonObject["Type"] = "DeleteSuccess"; | ||||
|                 jsonObject["ExtraFlags"] = "Snapmatic"; | ||||
|                 jsonObject["DeletedSize"] = QString::number(smpic->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  | @ -403,7 +407,11 @@ void SnapmaticWidget::editSnapmaticImage() | |||
|                 jsonObject["Type"] = "ImageEdited"; | ||||
|                 jsonObject["ExtraFlags"] = "Interface"; | ||||
|                 jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  | @ -462,7 +470,11 @@ void SnapmaticWidget::openMapViewer() | |||
|                 jsonObject["Type"] = "LocationEdited"; | ||||
|                 jsonObject["ExtraFlags"] = "Interface"; | ||||
|                 jsonObject["EditedSize"] = QString::number(picture->getContentMaxLength()); | ||||
| #if QT_VERSION >= 0x060000 | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); | ||||
| #else | ||||
|                 jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); | ||||
| #endif | ||||
|                 jsonDocument.setObject(jsonObject); | ||||
|                 Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); | ||||
|             } | ||||
|  |  | |||
							
								
								
									
										426
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							
							
						
						
									
										426
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							|  | @ -192,22 +192,22 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -368,14 +368,14 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -722,26 +722,26 @@ Y: %2</source> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -762,7 +762,7 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -798,8 +798,8 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -917,62 +917,62 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1013,78 +1013,78 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <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="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1299,18 +1299,18 @@ Press 1 for Default View</source> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1342,14 +1342,14 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <source>Can't import %1 because file can't be open</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1398,7 +1398,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1417,136 +1417,136 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <source>Can't import %1 because file format can't be detected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <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="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Failed to import the Savegame, no Savegame slot is left</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>No Snapmatic pictures or Savegames files are selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1554,81 +1554,81 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1720,45 +1720,45 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1832,7 +1832,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1842,7 +1842,7 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1855,10 +1855,10 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1949,38 +1949,38 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2144,7 +2144,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2154,62 +2154,62 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2219,17 +2219,17 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2392,7 +2392,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2410,43 +2410,43 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -177,10 +177,10 @@ Snapmatic Bilder und Spielständen</translation> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Snapmatic Bild Editor</translation> | ||||
|     </message> | ||||
|  | @ -210,14 +210,14 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation>S&chließen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <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="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation> | ||||
|     </message> | ||||
|  | @ -392,14 +392,14 @@ Snapmatic Bilder und Spielständen</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>Eigenes Bild</translation> | ||||
|  | @ -750,26 +750,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Sprache: %1</translation> | ||||
|     </message> | ||||
|  | @ -790,7 +790,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>An %1 Benutzerstatistik teilnehmen</translation> | ||||
|     </message> | ||||
|  | @ -821,8 +821,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>Teilnahme ID: %1</translation> | ||||
|     </message> | ||||
|  | @ -916,7 +916,7 @@ Y: %2</translation> | |||
|         <translation>Abbre&chen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|  | @ -955,56 +955,56 @@ Y: %2</translation> | |||
|         <translation>%1 (Sprachenpriorität)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <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="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>%1 Benutzerstatistik Online ansehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Nicht registriert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Ja</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation>Nein</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>OS-defined</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Steam-definiert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Kein Profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Profil: %1</translation> | ||||
|     </message> | ||||
|  | @ -1054,37 +1054,37 @@ Y: %2</translation> | |||
|         <translation>Exportieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation>Als &Bild exportieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation>Als &Snapmatic exportieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation>Eigenschaften bearb&eiten...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation>Bild &überschreiben...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation>&Kartenansicht öffnen...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1093,37 +1093,37 @@ Taste 2 - Overlay umschalten | |||
| Pfeiltasten - Navigieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Snapmatic Bildansicht</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Fehlgeschlagen beim %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Keine Crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Keine Spieler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <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="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Unbekannter Standort</translation> | ||||
|     </message> | ||||
|  | @ -1225,8 +1225,8 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Keine gültige Datei wurde ausgewählt</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation>&JSON Editor öffnen...</translation> | ||||
|     </message> | ||||
|  | @ -1346,18 +1346,18 @@ Drücke 1 für Standardmodus</translation> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation>Importieren...</translation> | ||||
|     </message> | ||||
|  | @ -1419,13 +1419,13 @@ Drücke 1 für Standardmodus</translation> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Fehler beim Lesen vom Snapmatic Bild</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Fehler beim Lesen von Spielstanddatei</translation> | ||||
|  | @ -1433,40 +1433,40 @@ Drücke 1 für Standardmodus</translation> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <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="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <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="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <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="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>Initialisiere Export...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Keine gültige Datei wurde ausgewählt</translation> | ||||
|  | @ -1477,91 +1477,91 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Aktivierte Bilder: %1 von %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <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="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <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="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation>JPG Bilder und GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation>Nur JPG Bilder</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation>Nur GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation>Auswahl patchen...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation>Patche Datei %1 von %2 Dateien</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation>Als Avatar qualifizieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation>Keine Snapmatic Bilder sind ausgewählt</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <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="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1571,93 +1571,93 @@ Drücke 1 für Standardmodus</translation> | |||
| %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation>Bereite Inhalt für Import vor...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Qualifizieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation>Spieler ändern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Spieler ändern</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation>Crew ändern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <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="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Crew ändern</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation>Titel ändern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <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="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Titel ändern</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <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="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation>Auswahl löschen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <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="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation>Auswahl exportieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|  | @ -1791,48 +1791,48 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation>Savegame löschen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation>A&nsehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>Entfe&rnen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>Au&swählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>A&bwählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>&Alles auswählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>Alles a&bwählen</translation> | ||||
|     </message> | ||||
|  | @ -1847,9 +1847,9 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Spielstand kopieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Exportieren</translation> | ||||
|     </message> | ||||
|  | @ -1900,10 +1900,10 @@ Drücke 1 für Standardmodus</translation> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Snapmatic Eigenschaften</translation> | ||||
|     </message> | ||||
|  | @ -1943,8 +1943,8 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Meme</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Snapmatic Titel</translation> | ||||
|     </message> | ||||
|  | @ -2046,33 +2046,33 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen JSON Fehler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <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="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Neuer Snapmatic Titel:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Snapmatic Crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Neue Snapmatic Crew:</translation> | ||||
|     </message> | ||||
|  | @ -2179,7 +2179,7 @@ Drücke 1 für Standardmodus</translation> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>Bild löschen</translation> | ||||
|     </message> | ||||
|  | @ -2189,72 +2189,72 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation>Bearbei&ten</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Exportieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation>&Im Spiel anzeigen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation>&Im Spiel ausblenden</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation>A&nsehen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>Entfe&rnen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>Au&swählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>A&bwählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>Alles &auswählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>Alles a&bwählen</translation> | ||||
|     </message> | ||||
|  | @ -2274,7 +2274,7 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Bild exportieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>Fehlgeschlagen beim Löschen von %1 von deinen Snapmatic Bildern</translation> | ||||
|     </message> | ||||
|  | @ -2367,29 +2367,29 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation>&Titel ändern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation>Als Avatar &qualifizieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation>S&pieler ändern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation>&Crew ändern...</translation> | ||||
|     </message> | ||||
|  | @ -2464,7 +2464,7 @@ Drücke 1 für Standardmodus</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2512,16 +2512,16 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>&Neuladen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation>Im Spiel anzeigen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation>Im Spiel ausblenden</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -167,10 +167,10 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -200,14 +200,14 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -374,14 +374,14 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -722,26 +722,26 @@ Y: %2</source> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -757,7 +757,7 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -778,8 +778,8 @@ Y: %2</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -917,62 +917,62 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <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="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1013,72 +1013,72 @@ Y: %2</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <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="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1187,8 +1187,8 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1319,18 +1319,18 @@ Press 1 for Default View</source> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1384,7 +1384,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1403,13 +1403,13 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1417,147 +1417,147 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <source>Can't import %1 because file can't be open</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <source>Can't import %1 because file format can't be detected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <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="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Failed to import the Savegame, no Savegame slot is left</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>Initializing export...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>No Snapmatic pictures or Savegames files are selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1565,70 +1565,70 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1720,45 +1720,45 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1837,12 +1837,12 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1855,10 +1855,10 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1995,39 +1995,39 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2144,7 +2144,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2154,62 +2154,62 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2219,17 +2219,17 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2387,7 +2387,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2405,8 +2405,8 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2417,22 +2417,22 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -2467,16 +2467,16 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -178,10 +178,10 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Éditeur d'images Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -211,14 +211,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation>&Fermer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <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="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Échec du patch Snapmatic : Image Error</translation> | ||||
|     </message> | ||||
|  | @ -393,14 +393,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>Image personnalisé</translation> | ||||
|  | @ -751,26 +751,26 @@ Y : %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Langue : %1</translation> | ||||
|     </message> | ||||
|  | @ -791,7 +791,7 @@ Y : %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>Participer aux statistiques d'usage %1</translation> | ||||
|     </message> | ||||
|  | @ -822,8 +822,8 @@ Y : %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>ID de participation : %1</translation> | ||||
|     </message> | ||||
|  | @ -950,62 +950,62 @@ Y : %2</translation> | |||
|         <translation>%1 (Priorité de la langue)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <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="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Voir les statistiques d'usage %1 en ligne</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Pas enregistré</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Oui</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation>Non</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Défini par le système d'exploitation</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Défini par Steam</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Aucun profil</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Profil : %1</translation> | ||||
|     </message> | ||||
|  | @ -1135,37 +1135,37 @@ Y : %2</translation> | |||
|         <translation>Fichier invalide</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation>Exporter comme &image...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation>Exporter comme &Snapmatic...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation>&Remplacer l'image...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation>Modifier les &propriétés...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation>Ouvrir la &Visionneuse de Carte...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1174,37 +1174,37 @@ Touche 2 - Activer/désactiver l'overlay | |||
| Touches fléchées - Naviguer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Visionneuse de photo Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Echec de %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Aucun crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Aucun joueurs</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <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="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Emplacement inconnu</translation> | ||||
|     </message> | ||||
|  | @ -1226,8 +1226,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="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation>Ouvrir l'éditeur &JSON...</translation> | ||||
|     </message> | ||||
|  | @ -1358,18 +1358,18 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation>Importer...</translation> | ||||
|     </message> | ||||
|  | @ -1427,7 +1427,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Fichier invalide</translation> | ||||
|  | @ -1438,13 +1438,13 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Fichiers importables (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Impossible d'ouvrir la photo Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Impossible de lire le fichier de sauvegarde</translation> | ||||
|  | @ -1452,122 +1452,122 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <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="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <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="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <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="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <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="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <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="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation>Images JPG et GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation>Images JPG seulement</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation>GTA Snapmatic seulement</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation>Exporter la sélection...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>Initialisation de l'export...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation>Qualifier comme Avatar</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation>Aucun Snapmatic sélectionné</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation>Patcher la sélection...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation>Patch du fichier %1 sur %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1577,76 +1577,76 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
| %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <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="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation>Préparation du contenu pour l'import...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Qualifier</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation>Modifier les joueurs...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Modifier les joueurs</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation>Modifier le Crew...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation>Snapmatic Crew ID invalide</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Changer le Crew</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation>Changer le titre...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation>Titre Snapmatic invalide</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Changer le titre</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|  | @ -1655,20 +1655,20 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <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="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation>Supprimer la sélection</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation>Supprimer la sélection ?</translation> | ||||
|     </message> | ||||
|  | @ -1773,9 +1773,9 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Supprimer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Exporter</translation> | ||||
|     </message> | ||||
|  | @ -1856,48 +1856,48 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation>Supprimer la sauvegarde</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>Impossible de supprimer %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation>&Voir</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>&Supprimer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>&Sélectionner</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>&Déselectionner</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>Sélectionner to&ut</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>&Déselectionner tout</translation> | ||||
|     </message> | ||||
|  | @ -1910,10 +1910,10 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Propriétés Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -1953,8 +1953,8 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Meme</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Titre Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -2058,33 +2058,33 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Patch des propriétés Snapmatic échoué : %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation>Patch des propriétés Snapmatic échoué : erreur JSON</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <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="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Nouveau titre Snapmatic :</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Crew Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Nouveau crew Snapmatic :</translation> | ||||
|     </message> | ||||
|  | @ -2201,7 +2201,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>Supprimer la photo</translation> | ||||
|     </message> | ||||
|  | @ -2216,77 +2216,77 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Supprimer %1 ?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>Impossible de supprimer %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>%1 n'a pas pu être rendu invisible en jeu</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>%1 n'a pas pu être rendu visible en jeu</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation>Édi&ter</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation>&Visible en jeu</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation>&Invisible en jeu</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Exporter</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation>&Voir</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>S&upprimer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>&Sélectionner</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>&Déselectionner</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>Sélectionner &tout</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>&Déselectionner tout</translation> | ||||
|     </message> | ||||
|  | @ -2426,7 +2426,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2439,8 +2439,8 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation>Modifier les &joueurs...</translation> | ||||
|     </message> | ||||
|  | @ -2451,22 +2451,22 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation>Changer le &titre...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation>Changer le &Crew...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation>&Qualifier comme Avatar</translation> | ||||
|     </message> | ||||
|  | @ -2524,16 +2524,16 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>%1 - Nouvelles</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation>Visible en jeu</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation>Invisible en jeu</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -202,22 +202,22 @@ Pictures and Savegames</source> | |||
|         <translation>닫기(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>스냅매틱 이미지 편집기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation> | ||||
|     </message> | ||||
|  | @ -386,7 +386,7 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <source>Custom Avatar</source> | ||||
|         <comment>Custom Avatar Description in SC, don't use Special Character!</comment> | ||||
|         <translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment> | ||||
|  | @ -394,7 +394,7 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment> | ||||
|  | @ -757,26 +757,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>언어: %1</translation> | ||||
|     </message> | ||||
|  | @ -797,7 +797,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>사용자 통계 참가 %1</translation> | ||||
|     </message> | ||||
|  | @ -833,8 +833,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>참여 아이디: %1</translation> | ||||
|     </message> | ||||
|  | @ -961,64 +961,64 @@ Y: %2</translation> | |||
|         <translation>%1 (인터페이스와 가까운 언어)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translatorcomment>%1</translatorcomment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translatorcomment>프로필 없음 (기본값)</translatorcomment> | ||||
|         <translation>프로필 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>프로필: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>온라인 %1 사용자 통계 보기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>등록되지 않았습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>예</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation>아니요</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>OS 정의</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>스팀 정의</translation> | ||||
|     </message> | ||||
|  | @ -1062,43 +1062,43 @@ Y: %2</translation> | |||
|         <translation>닫기(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation>내 PC에 이미지로 내보내기(&P)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation>내 PC에 스냅매틱으로 내보내기(&S)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation>속성 편집(&E)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation>이미지 덮어쓰기(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation>지도 뷰어 열기(&M)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation>JSON 편집기 열기(&J)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1107,35 +1107,35 @@ Arrow Keys - Navigate</source> | |||
| 화살표키 - 이동</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>스냅매틱 이미지 뷰어</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>%1에서 실패했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>플레이어 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>조직 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>알 수 없는 위치</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>아바타 미리 보기 모드입니다. | ||||
|  | @ -1351,18 +1351,18 @@ Press 1 for Default View</source> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation>가져오기</translation> | ||||
|     </message> | ||||
|  | @ -1394,14 +1394,14 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <source>Can't import %1 because file can't be open</source> | ||||
|         <translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다.</translation> | ||||
|     </message> | ||||
|  | @ -1450,7 +1450,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>올바른 파일이 선택되지 않았습니다.</translation> | ||||
|  | @ -1471,91 +1471,91 @@ Press 1 for Default View</source> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>스냅매틱 이미지를 읽지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>세이브 파일을 읽지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <source>Can't import %1 because file format can't be detected</source> | ||||
|         <translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation>가져올 컨텐츠를 준비합니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation>스냅매틱 이미지를 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <source>Failed to import the Snapmatic picture, can't copy the file into profile</source> | ||||
|         <translation>스냅매틱 이미지를 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <source>Failed to import the Savegame, can't copy the file into profile</source> | ||||
|         <translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Failed to import the Savegame, no Savegame slot is left</source> | ||||
|         <translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation>내보내기를 선택했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation>JPG 이미지 및 GTA 스냅매틱</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation>JPG 이미지만</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation>GTA 스냅매틱만</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>내보내기를 초기화하는 중...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|  | @ -1564,45 +1564,45 @@ Press 1 for Default View</source> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>No Snapmatic pictures or Savegames files are selected</source> | ||||
|         <translation>스냅매틱 이미지 또는 세이브 파일이 선택되지 않았습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation>선택한 항목 삭제</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation>선택한 스냅매틱 이미지 및 세이브 파일을 삭제하시겠습니까?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||
|         <translation>선택한 모든 스냅매틱 이미지 및 세이브 파일을 삭제하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation>스냅매틱 이미지가 선택되지 않았습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1613,84 +1613,84 @@ Press 1 for Default View</source> | |||
| %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation>아바타 자격 부여</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation>패치가 선택됨...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation>%2 파일의 %1 패치 파일입니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> | ||||
|         <translation>자격 부여</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation>플레이어 변경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> | ||||
|         <translation>플레이어 변경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation>조직 변경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> | ||||
|         <translation>조직 변경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation>제목 변경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation>올바른 스냅매틱 제목을 입력하지 않았습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment> | ||||
|  | @ -1791,45 +1791,45 @@ Press 1 for Default View</source> | |||
|         <translation>삭제</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation>보기(&V)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>내보내기(&E)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>삭제(&R)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>선택(&S)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>선택 해제(&D)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>모두 선택(&A)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>모두 선택 해제(&D)</translation> | ||||
|     </message> | ||||
|  | @ -1905,7 +1905,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation>세이브 파일 삭제</translation> | ||||
|     </message> | ||||
|  | @ -1915,7 +1915,7 @@ Press 1 for Default View</source> | |||
|         <translation>%1을(를) 세이브 파일에서 삭제하시겠습니까?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>%1을(를) 세이브 파일에서 삭제하지 못했습니다.</translation> | ||||
|     </message> | ||||
|  | @ -1928,10 +1928,10 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>스냅매틱 속성</translation> | ||||
|     </message> | ||||
|  | @ -2022,38 +2022,38 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>조직 스냅매틱</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>새로운 조직 스냅매틱:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>스냅매틱 제목</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>새로운 스냅매틱 제목:</translation> | ||||
|     </message> | ||||
|  | @ -2222,7 +2222,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>이미지 삭제</translation> | ||||
|     </message> | ||||
|  | @ -2232,62 +2232,62 @@ Press 1 for Default View</source> | |||
|         <translation>삭제</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation>편집(&T)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation>인게임에서 보이기(&I)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation>인게임에서 숨기기(&I)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>내보내기(&E)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation>보기(&V)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>삭제(&R)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>선택(&S)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>선택 해제(&D)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>모두 선택(&A)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>모두 선택 해제(&D)</translation> | ||||
|     </message> | ||||
|  | @ -2297,17 +2297,17 @@ Press 1 for Default View</source> | |||
|         <translation>스냅매틱 이미지에서 %1을 삭제하시겠습니까?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>스냅매틱 이미지에서 %1을 삭제하지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>인게임 스냅매틱 이미지에서 %1 을 숨기지 못했습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>인게임 스냅매틱 이미지에서 %1 을 표시하지 못했습니다.</translation> | ||||
|     </message> | ||||
|  | @ -2471,7 +2471,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2489,43 +2489,43 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation>제목 변경(&T)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation>&조직 상징 변경(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation>아바타 자격 부여(&Q)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation>플레이어 변경(&P)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation>인게임 보이기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation>인게임 숨기기</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -181,10 +181,10 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Редактор картинок Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -214,14 +214,14 @@ Pictures and Savegames</source> | |||
|         <translation>&Закрыть</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation> | ||||
|     </message> | ||||
|  | @ -400,14 +400,14 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>Своя Картинка</translation> | ||||
|  | @ -757,26 +757,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Язык: %1</translation> | ||||
|     </message> | ||||
|  | @ -797,7 +797,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>Участвовать в пользовательской статистике %1</translation> | ||||
|     </message> | ||||
|  | @ -830,8 +830,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>Номер участника: %1</translation> | ||||
|     </message> | ||||
|  | @ -960,62 +960,62 @@ Y: %2</translation> | |||
|         <translation>%1 (Приоритетный язык)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Другая папка будет загружена после перезапуска %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Посмотреть пользовательскую статистику %1 онлайн</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Не зарегистрирован</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Да</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation>Нет</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Настройка от ОС</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Настройка от Steam</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Нет профиля</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Профиль: %1</translation> | ||||
|     </message> | ||||
|  | @ -1065,37 +1065,37 @@ Y: %2</translation> | |||
|         <translation>Экспортировать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation>Экспортировать как &картинку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation>Экспортировать как &Snapmatic...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation>&Перезаписать картинку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation>&Изменить свойства...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation>Открыть &карту...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1104,37 +1104,37 @@ Arrow Keys - Navigate</source> | |||
| Стрелки - Навигация</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Просмотрщик фотографий Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Ошибка при %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Вне банды</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Игроков нет</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>Режим просмотра аватарок | ||||
| Нажмите 1 для стандартного просмотра</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Неизвестное место</translation> | ||||
|     </message> | ||||
|  | @ -1236,8 +1236,8 @@ Press 1 for Default View</source> | |||
|         <translation>Картинки Snapmatic (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation>Открыть &редактор JSON...</translation> | ||||
|     </message> | ||||
|  | @ -1358,18 +1358,18 @@ Press 1 for Default View</source> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation>Импортировать...</translation> | ||||
|     </message> | ||||
|  | @ -1419,20 +1419,20 @@ Press 1 for Default View</source> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Не удалось загрузить картинку Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Не удалось загрузить файл сохранения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Выбранный файл неверен</translation> | ||||
|  | @ -1457,131 +1457,131 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <source>Can't import %1 because file can't be open</source> | ||||
|         <translation>Не удалось открыть %1, файл не может быть открыт</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <source>Can't import %1 because file format can't be detected</source> | ||||
|         <translation>Не получилось импортировать %1, не удалось определить формат файла</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <source>Failed to import the Savegame, can't copy the file into profile</source> | ||||
|         <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Failed to import the Savegame, no Savegame slot is left</source> | ||||
|         <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation>Картинки JPG и GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation>Только картинки JPG</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation>Только GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>Подготовка к экспорту...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>No Snapmatic pictures or Savegames files are selected</source> | ||||
|         <translation>Не выделены ни один Snapmatic или сохранение</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation>Снять выделение</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation>Подготовка данных к импорту...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation>Пометить как Аватар</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation>Не выделена ни одна картинка Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation>Пропатчить выделенные...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation>Изменяется файл %1 из %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1591,86 +1591,86 @@ Press 1 for Default View</source> | |||
| %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||
|         <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Помечание</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation>Изменить игроков...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Измение игроков</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation>Изменить банду...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation>Введённый идентификатор банды не верен</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Изменение банды</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation>Изменить заголовок...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation>Введённый заголовок не верен</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Изменение заголовка</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation>Экпортировать выделенное...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|  | @ -1811,48 +1811,48 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation>Удалить сохранение</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>Не удалось удалить сохранение %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation>&Просмотр</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>&Удалить</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>&Выбрать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>Сн&ять выбор</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>В&ыбрать все</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>Снять выбо&р со всех</translation> | ||||
|     </message> | ||||
|  | @ -1862,9 +1862,9 @@ Press 1 for Default View</source> | |||
|         <translation>Копировать сохранение</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Экспортировать</translation> | ||||
|     </message> | ||||
|  | @ -1915,10 +1915,10 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Свойства Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -1968,8 +1968,8 @@ Press 1 for Default View</source> | |||
|         <translation>Meme</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Заголовок Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -2061,33 +2061,33 @@ Press 1 for Default View</source> | |||
|         <translation>Не удалось изменить свойства Snapmatic из-за %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation>Не удалось измененить свойства Snapmatic из-за ошибки JSON</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Новый заголовок Snapmatic:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Банда на Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Новая банда на Snapmatic:</translation> | ||||
|     </message> | ||||
|  | @ -2199,7 +2199,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>Удалить картинку</translation> | ||||
|     </message> | ||||
|  | @ -2209,77 +2209,77 @@ Press 1 for Default View</source> | |||
|         <translation>Уверены, что хотите удалить %1 из коллекции картинок Snapmatic?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>Не удалось удалить %1 из колелкции картинок Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>Не удалось скрыть %1 из списка картинок Snapmatic в игре</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation>&Правка</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation>Показывать в &игре</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation>Ск&рыть в игре</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Экспорт</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation>По&казать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>У&далить</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>&Выделить</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>Сн&ять выделение</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>В&ыбрать все</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>Снять выбо&р со всех</translation> | ||||
|     </message> | ||||
|  | @ -2403,29 +2403,29 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation>&Изменить игрока...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation>Изменить &Заголовок...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation>Изменить &банду...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation>&Пометить как Аватар</translation> | ||||
|     </message> | ||||
|  | @ -2479,7 +2479,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2527,16 +2527,16 @@ Press 1 for Default View</source> | |||
|         <translation>Пере&загрузить</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation>Показывать в игре</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation>Скрыть в игре</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -205,22 +205,22 @@ Pictures and Savegames</source> | |||
|         <translation>&Закрити</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Редактор Snapmatic зображень</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <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="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation> | ||||
|     </message> | ||||
|  | @ -389,14 +389,14 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>Користувацьке Зображення</translation> | ||||
|  | @ -753,26 +753,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>Мова: %1</translation> | ||||
|     </message> | ||||
|  | @ -794,7 +794,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>Опитування %1 про устаткування ПК</translation> | ||||
|     </message> | ||||
|  | @ -830,8 +830,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>ID учасника : %1</translation> | ||||
|     </message> | ||||
|  | @ -953,62 +953,62 @@ Y: %2</translation> | |||
|         <translation>%1 (пріоритет мови)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>Жодного</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>Профіль: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>Переглянути користувацьку статистику %1 онлайн</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>Не зареєстрований</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>Так</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation>Ні</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>Визначається ОС</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Визначається Steam</translation> | ||||
|     </message> | ||||
|  | @ -1052,43 +1052,43 @@ Y: %2</translation> | |||
|         <translation>&Закрити</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation>Експортувати як &зображення...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation>Експортувати як &Snapmatic...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation>&Змінити властивості...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation>&Перезаписати зображення...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation>Відкрити &карту...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation>Відкрити редактор &JSON...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1097,35 +1097,35 @@ Arrow Keys - Navigate</source> | |||
| Стрілки - Навігація</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Переглядач фотографій Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>Помилка на%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>Гравців немає</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>Банди немає</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>Невідома локація</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>Режим для аватарок | ||||
|  | @ -1341,18 +1341,18 @@ Press 1 for Default View</source> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation>Імпортування...</translation> | ||||
|     </message> | ||||
|  | @ -1384,14 +1384,14 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <source>Can't import %1 because file can't be open</source> | ||||
|         <translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation> | ||||
|     </message> | ||||
|  | @ -1440,7 +1440,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>Вибрані недійсні файли</translation> | ||||
|  | @ -1461,81 +1461,81 @@ Press 1 for Default View</source> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>Не вдалося прочитати Snapmatic картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>Не вдалося прочитати файл збереження гри</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <source>Can't import %1 because file format can't be detected</source> | ||||
|         <translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <source>Failed to import the Savegame, can't copy the file into profile</source> | ||||
|         <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Failed to import the Savegame, no Savegame slot is left</source> | ||||
|         <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation>Експорт обраних...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation>JPG картинки і GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation>Тільки JPG картинки</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation>Тільки GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>Ініціалізація експорту...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|  | @ -1544,45 +1544,45 @@ Press 1 for Default View</source> | |||
| %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>No Snapmatic pictures or Savegames files are selected</source> | ||||
|         <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation>Видалити вибрані</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||
|         <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation>Не вибрано жодного Snapmatic зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1592,91 +1592,91 @@ Press 1 for Default View</source> | |||
| %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation>Підготувати контент для імпорту ...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation>Позначити як Аватар</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation>Вибір патчу...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation>Патч файлу %1 з %2 файлів</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Якість</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation>Зміна гравців...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Змінити гравців</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation>Зміна банди...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Змінити банду</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation>Зміна назви...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>Змінити назву</translation> | ||||
|  | @ -1776,45 +1776,45 @@ Press 1 for Default View</source> | |||
|         <translation>Видалити</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation>&Перегляд</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Експорт</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>&Видалення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>&Виділення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>&Зняти виділення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>Вибрати &усі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>&Зняти виділення усіх</translation> | ||||
|     </message> | ||||
|  | @ -1890,7 +1890,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation>Видалити файл збереження</translation> | ||||
|     </message> | ||||
|  | @ -1900,7 +1900,7 @@ Press 1 for Default View</source> | |||
|         <translation>Ви впевнені, що хочете видалити %1 зі своїх сейвів?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>Не вдалося видалити %1 із ваших збережених ігор</translation> | ||||
|     </message> | ||||
|  | @ -1913,10 +1913,10 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Властивості Snapmatic</translation> | ||||
|     </message> | ||||
|  | @ -2007,38 +2007,38 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>Snapmatic банда</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>Нова Snapmatic банда:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>Snapmatic назва</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>Новий Snapmatic заголовок:</translation> | ||||
|     </message> | ||||
|  | @ -2202,7 +2202,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>Видалити фото</translation> | ||||
|     </message> | ||||
|  | @ -2212,62 +2212,62 @@ Press 1 for Default View</source> | |||
|         <translation>Видалити</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation>Редагува&ти</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation>Показати &у грі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation>Сховати &у грі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>&Експортувати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation>&Переглянути</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>&Видалити</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>&Виділення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>&Зняти виділення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>Вибрати &усі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>&Зняти виділення усіх</translation> | ||||
|     </message> | ||||
|  | @ -2277,17 +2277,17 @@ Press 1 for Default View</source> | |||
|         <translation>Ви дійсно бажаєте видалити %1 з ваших Snapmatic фотографій?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>Не вдалося видалити%1 з ваших Snapmatic фотографій</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>Не вдалося сховати %1 Snapmatic у грі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>Не вдалося показати %1 Snapmatic у грі</translation> | ||||
|     </message> | ||||
|  | @ -2451,7 +2451,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2469,43 +2469,43 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation>Змінити &заголовок...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation>Змінити &банду...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation>Позначити як &аватар</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation>Змінити &гравців...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation>Показати у грі</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation>Сховати у грі</translation> | ||||
|     </message> | ||||
|  |  | |||
|  | @ -201,22 +201,22 @@ Pictures and Savegames</source> | |||
|         <translation>關閉(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Snapmatic Image Editor</source> | ||||
|         <translation>Snapmatic 圖片編輯器</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="893"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="390"/> | ||||
|         <location filename="../PictureDialog.cpp" line="826"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="394"/> | ||||
|         <source>Patching of Snapmatic Image failed because of I/O Error</source> | ||||
|         <translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="917"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="414"/> | ||||
|         <location filename="../PictureDialog.cpp" line="852"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="422"/> | ||||
|         <source>Patching of Snapmatic Image failed because of Image Error</source> | ||||
|         <translation>圖片錯誤,Snapmatic 圖片更新失敗</translation> | ||||
|     </message> | ||||
|  | @ -385,14 +385,14 @@ Pictures and Savegames</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="722"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <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="218"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>自訂圖片</translation> | ||||
|  | @ -748,26 +748,26 @@ Y: %2</translation> | |||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="399"/> | ||||
|         <location filename="../OptionsDialog.ui" line="422"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <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="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Language: %1</source> | ||||
|         <translation>語言: %1</translation> | ||||
|     </message> | ||||
|  | @ -788,7 +788,7 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="465"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="601"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="605"/> | ||||
|         <source>Participate in %1 User Statistics</source> | ||||
|         <translation>參與 %1 使用者統計</translation> | ||||
|     </message> | ||||
|  | @ -824,8 +824,8 @@ Y: %2</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.ui" line="554"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="617"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Participation ID: %1</source> | ||||
|         <translation>參與 ID: %1</translation> | ||||
|     </message> | ||||
|  | @ -947,62 +947,62 @@ Y: %2</translation> | |||
|         <translation>%1 (遊戲語言)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>%1</source> | ||||
|         <comment>%1</comment> | ||||
|         <translation>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="489"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="493"/> | ||||
|         <source>The new Custom Folder will initialise after you restart %1.</source> | ||||
|         <translation>自訂資料夾將在 %1 重新啟動後初始化.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="499"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="503"/> | ||||
|         <source>No Profile</source> | ||||
|         <comment>No Profile, as default</comment> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="507"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="511"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="513"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="515"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="517"/> | ||||
|         <source>Profile: %1</source> | ||||
|         <translation>設定檔: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="602"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="606"/> | ||||
|         <source>View %1 User Statistics Online</source> | ||||
|         <translation>檢視 %1 使用者統計資訊</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="621"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="625"/> | ||||
|         <source>Not registered</source> | ||||
|         <translation>未註冊參與</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="639"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="655"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="668"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="669"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="643"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="659"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="672"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="673"/> | ||||
|         <source>Yes</source> | ||||
|         <translation>是</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="640"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="654"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="644"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="658"/> | ||||
|         <source>No</source> | ||||
|         <translation>否</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="647"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="676"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="651"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="680"/> | ||||
|         <source>OS defined</source> | ||||
|         <translation>系統定義</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../OptionsDialog.cpp" line="663"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="684"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="667"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="688"/> | ||||
|         <source>Steam defined</source> | ||||
|         <translation>Steam 定義</translation> | ||||
|     </message> | ||||
|  | @ -1046,43 +1046,43 @@ Y: %2</translation> | |||
|         <translation>關閉(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="174"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1687"/> | ||||
|         <location filename="../PictureDialog.cpp" line="172"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1707"/> | ||||
|         <source>Export as &Picture...</source> | ||||
|         <translation>匯出成圖片(&P)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1688"/> | ||||
|         <location filename="../PictureDialog.cpp" line="173"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1708"/> | ||||
|         <source>Export as &Snapmatic...</source> | ||||
|         <translation>匯出成 Snapmatic(&S)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="177"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1681"/> | ||||
|         <location filename="../PictureDialog.cpp" line="175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1701"/> | ||||
|         <source>&Edit Properties...</source> | ||||
|         <translation>編輯屬性(&E) ...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1682"/> | ||||
|         <location filename="../PictureDialog.cpp" line="176"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||
|         <source>&Overwrite Image...</source> | ||||
|         <translation>修改圖片(&O)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1684"/> | ||||
|         <location filename="../PictureDialog.cpp" line="178"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1704"/> | ||||
|         <source>Open &Map Viewer...</source> | ||||
|         <translation>開啟地圖檢視器(&M)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="182"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1685"/> | ||||
|         <location filename="../PictureDialog.cpp" line="180"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1705"/> | ||||
|         <source>Open &JSON Editor...</source> | ||||
|         <translation>開啟 JSON 編輯器(&J)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="488"/> | ||||
|         <location filename="../PictureDialog.cpp" line="439"/> | ||||
|         <source>Key 1 - Avatar Preview Mode | ||||
| Key 2 - Toggle Overlay | ||||
| Arrow Keys - Navigate</source> | ||||
|  | @ -1091,35 +1091,35 @@ Arrow Keys - Navigate</source> | |||
| 方向鍵 - 導覽</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Snapmatic Picture Viewer</source> | ||||
|         <translation>Snapmatic 圖片檢視器</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="547"/> | ||||
|         <location filename="../PictureDialog.cpp" line="494"/> | ||||
|         <source>Failed at %1</source> | ||||
|         <translation>失敗: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="686"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="630"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="246"/> | ||||
|         <source>No Players</source> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="665"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <location filename="../PictureDialog.cpp" line="609"/> | ||||
|         <source>No Crew</source> | ||||
|         <translation>無</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <location filename="../PictureDialog.cpp" line="514"/> | ||||
|         <source>Unknown Location</source> | ||||
|         <translation>未知地點</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../PictureDialog.cpp" line="620"/> | ||||
|         <location filename="../PictureDialog.cpp" line="567"/> | ||||
|         <source>Avatar Preview Mode | ||||
| Press 1 for Default View</source> | ||||
|         <translation>大頭貼預覽模式 | ||||
|  | @ -1335,18 +1335,18 @@ Press 1 for Default View</source> | |||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="563"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="597"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="987"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1007"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Import...</source> | ||||
|         <translation>匯入...</translation> | ||||
|     </message> | ||||
|  | @ -1378,14 +1378,14 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="787"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="795"/> | ||||
|         <source>Can't import %1 because file can't be open</source> | ||||
|         <translation>無法匯入 %1,因為檔案無法開啟</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>無法匯入 %1,因為檔案無法正確解析</translation> | ||||
|     </message> | ||||
|  | @ -1434,7 +1434,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="949"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="969"/> | ||||
|         <location filename="../UserInterface.cpp" line="558"/> | ||||
|         <source>No valid file is selected</source> | ||||
|         <translation>沒有選擇有效的檔案</translation> | ||||
|  | @ -1453,126 +1453,126 @@ Press 1 for Default View</source> | |||
|         <translation>%1 匯入失敗</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="639"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="643"/> | ||||
|         <location filename="../UserInterface.cpp" line="510"/> | ||||
|         <source>Failed to read Snapmatic picture</source> | ||||
|         <translation>無法讀取 Snapmatic 圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="682"/> | ||||
|         <location filename="../UserInterface.cpp" line="526"/> | ||||
|         <source>Failed to read Savegame file</source> | ||||
|         <translation>無法讀取遊戲存檔</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="944"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="964"/> | ||||
|         <source>Can't import %1 because file format can't be detected</source> | ||||
|         <translation>無法匯入 %1,因為無法檢測該檔案格式</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1117"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1137"/> | ||||
|         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> | ||||
|         <translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1221"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1241"/> | ||||
|         <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="1258"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> | ||||
|         <source>Failed to import the Savegame, can't copy the file into profile</source> | ||||
|         <translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1284"/> | ||||
|         <source>Failed to import the Savegame, no Savegame slot is left</source> | ||||
|         <translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1411"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1348"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1431"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <source>Export selected...</source> | ||||
|         <translation>匯出所選...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1351"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1371"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1389"/> | ||||
|         <source>JPG pictures and GTA Snapmatic</source> | ||||
|         <translation>JPG 圖片和 GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1374"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1394"/> | ||||
|         <source>JPG pictures only</source> | ||||
|         <translation>只有 JPG 圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1353"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1378"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1373"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1398"/> | ||||
|         <source>GTA Snapmatic only</source> | ||||
|         <translation>只有 GTA Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1386"/> | ||||
|         <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="1412"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1432"/> | ||||
|         <source>Initialising export...</source> | ||||
|         <translation>初始化...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <source>Export failed with... | ||||
| 
 | ||||
| %1</source> | ||||
|         <translation>%1 匯出失敗</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1466"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1486"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>No Snapmatic pictures or Savegames files are selected</source> | ||||
|         <translation>未選擇 Snapmatic 圖片或遊戲存檔</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1528"/> | ||||
|         <source>Remove selected</source> | ||||
|         <translation>移除所選</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1474"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1494"/> | ||||
|         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source> | ||||
|         <translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1502"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1522"/> | ||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||
|         <translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <source>No Snapmatic pictures are selected</source> | ||||
|         <translation>未選擇 Snapmatic 圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>%1 failed with... | ||||
| 
 | ||||
| %2</source> | ||||
|  | @ -1582,91 +1582,91 @@ Press 1 for Default View</source> | |||
| %2</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1003"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1023"/> | ||||
|         <source>Prepare Content for Import...</source> | ||||
|         <translation>準備匯入內容...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1125"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1145"/> | ||||
|         <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="2110"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2130"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify as Avatar</source> | ||||
|         <translation>合格大頭貼</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2121"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2224"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2355"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2461"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <source>Patch selected...</source> | ||||
|         <translation>修改所選...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2122"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2141"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2225"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2244"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2356"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2375"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2462"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2481"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2142"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2161"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2245"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2264"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2376"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2395"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2482"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2501"/> | ||||
|         <source>Patch file %1 of %2 files</source> | ||||
|         <translation>修改檔案 %1 共 %2 個檔案</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2175"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2195"/> | ||||
|         <source>Qualify</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>合格</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2196"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2216"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players...</source> | ||||
|         <translation>更改玩家...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2274"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2294"/> | ||||
|         <source>Change Players</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>更改玩家</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2295"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2315"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew...</source> | ||||
|         <translation>更改幫會...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2332"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2352"/> | ||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||
|         <translation>輸入了無效的幫會 ID</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2405"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2425"/> | ||||
|         <source>Change Crew</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>更改幫會</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2426"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2446"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title...</source> | ||||
|         <translation>更改標題...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2443"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2463"/> | ||||
|         <source>Failed to enter a valid Snapmatic title</source> | ||||
|         <translation>輸入了無效的標題</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2508"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2528"/> | ||||
|         <source>Change Title</source> | ||||
|         <comment>%1 failed with...</comment> | ||||
|         <translation>更改標題</translation> | ||||
|  | @ -1758,45 +1758,45 @@ Press 1 for Default View</source> | |||
|         <translation>刪除</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1754"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> | ||||
|         <source>&View</source> | ||||
|         <translation>檢視(&V)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1755"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1740"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1775"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1805"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>匯出(&E)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1721"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1756"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1786"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1741"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1806"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>移除(&R)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1759"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1789"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1809"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>選擇(&S)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1762"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1791"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>取消選擇(&D)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1785"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1814"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>選擇全部(&A)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1768"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1817"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>取消選擇全部(&D)</translation> | ||||
|     </message> | ||||
|  | @ -1872,7 +1872,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="138"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Delete Savegame</source> | ||||
|         <translation>刪除存檔</translation> | ||||
|     </message> | ||||
|  | @ -1882,7 +1882,7 @@ Press 1 for Default View</source> | |||
|         <translation>你確定要刪除存檔 %1?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SavegameWidget.cpp" line="183"/> | ||||
|         <location filename="../SavegameWidget.cpp" line="191"/> | ||||
|         <source>Failed at deleting %1 from your savegames</source> | ||||
|         <translation>刪除存檔 %1 失敗</translation> | ||||
|     </message> | ||||
|  | @ -1895,10 +1895,10 @@ Press 1 for Default View</source> | |||
|         <location filename="../JsonEditorDialog.cpp" line="126"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="191"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Snapmatic Properties</source> | ||||
|         <translation>Snapmatic 屬性</translation> | ||||
|     </message> | ||||
|  | @ -1989,38 +1989,38 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="197"/> | ||||
|         <location filename="../PictureDialog.cpp" line="808"/> | ||||
|         <location filename="../PictureDialog.cpp" line="747"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="333"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="448"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="456"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of I/O Error</source> | ||||
|         <translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="226"/> | ||||
|         <location filename="../JsonEditorDialog.cpp" line="230"/> | ||||
|         <source>Patching of Snapmatic Properties failed because of JSON Error</source> | ||||
|         <translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>Snapmatic Crew</source> | ||||
|         <translation>幫會</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2323"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="442"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2343"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="446"/> | ||||
|         <source>New Snapmatic crew:</source> | ||||
|         <translation>輸入新的幫會:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>Snapmatic Title</source> | ||||
|         <translation>標題</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="2438"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="413"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="2458"/> | ||||
|         <location filename="../SnapmaticEditor.cpp" line="417"/> | ||||
|         <source>New Snapmatic title:</source> | ||||
|         <translation>輸入新的標題:</translation> | ||||
|     </message> | ||||
|  | @ -2184,7 +2184,7 @@ Press 1 for Default View</source> | |||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.ui" line="152"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="183"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Delete picture</source> | ||||
|         <translation>刪除圖片</translation> | ||||
|     </message> | ||||
|  | @ -2194,62 +2194,62 @@ Press 1 for Default View</source> | |||
|         <translation>刪除</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1674"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1711"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1776"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1694"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1731"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1796"/> | ||||
|         <source>Edi&t</source> | ||||
|         <translation>編輯(&E)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1782"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1696"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1737"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1802"/> | ||||
|         <source>Show &In-game</source> | ||||
|         <translation>在遊戲中顯示(&I)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1679"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1718"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1783"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1699"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1738"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1803"/> | ||||
|         <source>Hide &In-game</source> | ||||
|         <translation>在遊戲中隱藏(&I)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1686"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1706"/> | ||||
|         <source>&Export</source> | ||||
|         <translation>匯出(&E)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1689"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1709"/> | ||||
|         <source>&View</source> | ||||
|         <translation>檢視(&V)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1692"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <source>&Remove</source> | ||||
|         <translation>移除(&R)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1724"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1744"/> | ||||
|         <source>&Select</source> | ||||
|         <translation>選擇(&S)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1697"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1726"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1717"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> | ||||
|         <source>&Deselect</source> | ||||
|         <translation>取消選擇(&D)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1700"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1729"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1720"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1749"/> | ||||
|         <source>Select &All</source> | ||||
|         <translation>選擇全部(&A)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1703"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1723"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1752"/> | ||||
|         <source>&Deselect All</source> | ||||
|         <translation>取消選擇全部(&D)</translation> | ||||
|     </message> | ||||
|  | @ -2259,17 +2259,17 @@ Press 1 for Default View</source> | |||
|         <translation>你確定要刪除Snapmatic 圖片 %1 嗎?</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="209"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="213"/> | ||||
|         <source>Failed at deleting %1 from your Snapmatic pictures</source> | ||||
|         <translation>刪除 Snapmatic 圖片 %1 失敗</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Failed to hide %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>在遊戲中隱藏圖片 %1 失敗</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Failed to show %1 In-game from your Snapmatic pictures</source> | ||||
|         <translation>在遊戲中顯示圖片 %1 失敗</translation> | ||||
|     </message> | ||||
|  | @ -2432,7 +2432,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="322"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="748"/> | ||||
|         <location filename="../OptionsDialog.cpp" line="752"/> | ||||
|         <location filename="../UserInterface.cpp" line="194"/> | ||||
|         <location filename="../UserInterface.cpp" line="729"/> | ||||
|         <source>Select GTA V Folder...</source> | ||||
|  | @ -2450,43 +2450,43 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="346"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1715"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1780"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1735"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1800"/> | ||||
|         <source>Change &Title...</source> | ||||
|         <translation>更改標題(&T)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="354"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1779"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1734"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1799"/> | ||||
|         <source>Change &Crew...</source> | ||||
|         <translation>更改幫會(&C)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="362"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1712"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1777"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1732"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1797"/> | ||||
|         <source>&Qualify as Avatar</source> | ||||
|         <translation>符合大頭貼資格(&Q)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../UserInterface.ui" line="370"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1778"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1798"/> | ||||
|         <source>Change &Players...</source> | ||||
|         <translation>更改玩家(&P)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1604"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1618"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="343"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1624"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="347"/> | ||||
|         <source>Show In-game</source> | ||||
|         <translation>在遊戲中顯示</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ProfileInterface.cpp" line="1638"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1652"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="335"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1658"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="1672"/> | ||||
|         <location filename="../SnapmaticWidget.cpp" line="339"/> | ||||
|         <source>Hide In-game</source> | ||||
|         <translation>在遊戲中隱藏</translation> | ||||
|     </message> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue