Force Borderless mode added
	
		
			
	
		
	
	
		
	
		
			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
							
								
									5fd4b48538
								
							
						
					
					
						commit
						c1b0053ac8
					
				
					 13 changed files with 946 additions and 878 deletions
				
			
		|  | @ -67,9 +67,14 @@ QString GlobalString::getLanguageFile() | |||
| { | ||||
|     QString language = getLanguage(); | ||||
|     QString languageFile = ":/global/global." % language % ".ini"; | ||||
|     if (!QFileInfo::exists(languageFile)) { | ||||
| #if QT_VERSION >= 0x050200 | ||||
|     if (!QFileInfo::exists(languageFile)) | ||||
|         languageFile = ":/global/global.en.ini"; | ||||
|     } | ||||
| #else | ||||
|     if (!QFileInfo(languageFile).exists()) | ||||
|         languageFile = ":/global/global.en.ini"; | ||||
| #endif | ||||
| 
 | ||||
|     return languageFile; | ||||
| } | ||||
| 
 | ||||
|  |  | |||
							
								
								
									
										193
									
								
								ImportDialog.cpp
									
										
									
									
									
								
							
							
						
						
									
										193
									
								
								ImportDialog.cpp
									
										
									
									
									
								
							|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2017-2020 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 | ||||
|  | @ -63,22 +63,18 @@ ImportDialog::ImportDialog(QString profileName, QWidget *parent) : | |||
|     selectedColour = QColor::fromRgb(0, 0, 0, 255); | ||||
| 
 | ||||
|     // Set Icon for OK Button
 | ||||
|     if (QIcon::hasThemeIcon("dialog-ok")) | ||||
|     { | ||||
|     if (QIcon::hasThemeIcon("dialog-ok")) { | ||||
|         ui->cmdOK->setIcon(QIcon::fromTheme("dialog-ok")); | ||||
|     } | ||||
|     else if (QIcon::hasThemeIcon("gtk-ok")) | ||||
|     { | ||||
|     else if (QIcon::hasThemeIcon("gtk-ok")) { | ||||
|         ui->cmdOK->setIcon(QIcon::fromTheme("gtk-ok")); | ||||
|     } | ||||
| 
 | ||||
|     // Set Icon for Cancel Button
 | ||||
|     if (QIcon::hasThemeIcon("dialog-cancel")) | ||||
|     { | ||||
|     if (QIcon::hasThemeIcon("dialog-cancel")) { | ||||
|         ui->cmdCancel->setIcon(QIcon::fromTheme("dialog-cancel")); | ||||
|     } | ||||
|     else if (QIcon::hasThemeIcon("gtk-cancel")) | ||||
|     { | ||||
|     else if (QIcon::hasThemeIcon("gtk-cancel")) { | ||||
|         ui->cmdCancel->setIcon(QIcon::fromTheme("gtk-cancel")); | ||||
|     } | ||||
| 
 | ||||
|  | @ -112,12 +108,10 @@ ImportDialog::ImportDialog(QString profileName, QWidget *parent) : | |||
| #ifndef Q_OS_MAC | ||||
|     ui->vlButtom->setContentsMargins(9 * screenRatio, 6 * screenRatio, 9 * screenRatio, 9 * screenRatio); | ||||
| #else | ||||
|     if (QApplication::style()->objectName() == "macintosh") | ||||
|     { | ||||
|     if (QApplication::style()->objectName() == "macintosh") { | ||||
|         ui->vlButtom->setContentsMargins(9 * screenRatio, 9 * screenRatio, 9 * screenRatio, 9 * screenRatio); | ||||
|     } | ||||
|     else | ||||
|     { | ||||
|     else { | ||||
|         ui->vlButtom->setContentsMargins(9 * screenRatio, 6 * screenRatio, 9 * screenRatio, 9 * screenRatio); | ||||
|     } | ||||
| #endif | ||||
|  | @ -130,9 +124,9 @@ ImportDialog::ImportDialog(QString profileName, QWidget *parent) : | |||
|     optionsMenu.addAction(tr("&Save Settings..."), this, SLOT(saveImportSettings())); | ||||
|     ui->cmdOptions->setMenu(&optionsMenu); | ||||
| 
 | ||||
|     setMaximumSize(sizeHint()); | ||||
|     setMinimumSize(sizeHint()); | ||||
|     setFixedSize(sizeHint()); | ||||
|     const QSize windowSize = sizeHint(); | ||||
|     setMinimumSize(windowSize); | ||||
|     setMaximumSize(windowSize); | ||||
| } | ||||
| 
 | ||||
| ImportDialog::~ImportDialog() | ||||
|  | @ -175,7 +169,33 @@ void ImportDialog::processImage() | |||
|         // Avatar mode
 | ||||
|         int diffWidth = 0; | ||||
|         int diffHeight = 0; | ||||
|         if (!ui->cbIgnore->isChecked()) { | ||||
|         if (ui->cbIgnore->isChecked()) { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticAvatarResolution, snapmaticAvatarResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); | ||||
|         } | ||||
|         else if (ui->cbBorderless->isChecked()) { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticAvatarResolution, snapmaticAvatarResolution, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation); | ||||
|             if (snapmaticImage.width() > snapmaticAvatarResolution) { | ||||
|                 int diffWidth = snapmaticImage.width() - snapmaticAvatarResolution; | ||||
|                 diffWidth = diffWidth / 2; | ||||
|                 QImage croppedImage(snapmaticAvatarResolution, snapmaticAvatarResolution, QImage::Format_ARGB32); | ||||
|                 croppedImage.fill(Qt::transparent); | ||||
|                 QPainter croppedPainter(&croppedImage); | ||||
|                 croppedPainter.drawImage(0 - diffWidth, 0, snapmaticImage); | ||||
|                 croppedPainter.end(); | ||||
|                 snapmaticImage = croppedImage; | ||||
|             } | ||||
|             else if (snapmaticImage.height() > snapmaticAvatarResolution) { | ||||
|                 int diffHeight = snapmaticImage.height() - snapmaticAvatarResolution; | ||||
|                 diffHeight = diffHeight / 2; | ||||
|                 QImage croppedImage(snapmaticAvatarResolution, snapmaticAvatarResolution, QImage::Format_ARGB32); | ||||
|                 croppedImage.fill(Qt::transparent); | ||||
|                 QPainter croppedPainter(&croppedImage); | ||||
|                 croppedPainter.drawImage(0, 0 - diffHeight, snapmaticImage); | ||||
|                 croppedPainter.end(); | ||||
|                 snapmaticImage = croppedImage; | ||||
|             } | ||||
|         } | ||||
|         else { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticAvatarResolution, snapmaticAvatarResolution, Qt::KeepAspectRatio, Qt::SmoothTransformation); | ||||
|             if (snapmaticImage.width() > snapmaticImage.height()) { | ||||
|                 diffHeight = snapmaticAvatarResolution - snapmaticImage.height(); | ||||
|  | @ -186,9 +206,6 @@ void ImportDialog::processImage() | |||
|                 diffWidth = diffWidth / 2; | ||||
|             } | ||||
|         } | ||||
|         else { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticAvatarResolution, snapmaticAvatarResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); | ||||
|         } | ||||
|         snapmaticPainter.drawImage(snapmaticAvatarPlacementW + diffWidth, snapmaticAvatarPlacementH + diffHeight, snapmaticImage); | ||||
|         if (ui->cbWatermark->isChecked()) | ||||
|             processWatermark(&snapmaticPainter); | ||||
|  | @ -198,7 +215,33 @@ void ImportDialog::processImage() | |||
|         // Picture mode
 | ||||
|         int diffWidth = 0; | ||||
|         int diffHeight = 0; | ||||
|         if (!ui->cbIgnore->isChecked()) { | ||||
|         if (ui->cbIgnore->isChecked()) { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); | ||||
|         } | ||||
|         else if (ui->cbBorderless->isChecked()) { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation); | ||||
|             if (snapmaticImage.width() > snapmaticResolution.width()) { | ||||
|                 int diffWidth = snapmaticImage.width() - snapmaticResolution.width(); | ||||
|                 diffWidth = diffWidth / 2; | ||||
|                 QImage croppedImage(snapmaticResolution, QImage::Format_ARGB32); | ||||
|                 croppedImage.fill(Qt::transparent); | ||||
|                 QPainter croppedPainter(&croppedImage); | ||||
|                 croppedPainter.drawImage(0 - diffWidth, 0, snapmaticImage); | ||||
|                 croppedPainter.end(); | ||||
|                 snapmaticImage = croppedImage; | ||||
|             } | ||||
|             else if (snapmaticImage.height() > snapmaticResolution.height()) { | ||||
|                 int diffHeight = snapmaticImage.height() - snapmaticResolution.height(); | ||||
|                 diffHeight = diffHeight / 2; | ||||
|                 QImage croppedImage(snapmaticResolution, QImage::Format_ARGB32); | ||||
|                 croppedImage.fill(Qt::transparent); | ||||
|                 QPainter croppedPainter(&croppedImage); | ||||
|                 croppedPainter.drawImage(0, 0 - diffHeight, snapmaticImage); | ||||
|                 croppedPainter.end(); | ||||
|                 snapmaticImage = croppedImage; | ||||
|             } | ||||
|         } | ||||
|         else { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::KeepAspectRatio, Qt::SmoothTransformation); | ||||
|             if (snapmaticImage.width() != snapmaticResolution.width()) { | ||||
|                 diffWidth = snapmaticResolution.width() - snapmaticImage.width(); | ||||
|  | @ -209,9 +252,6 @@ void ImportDialog::processImage() | |||
|                 diffHeight = diffHeight / 2; | ||||
|             } | ||||
|         } | ||||
|         else { | ||||
|             snapmaticImage = snapmaticImage.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); | ||||
|         } | ||||
|         snapmaticPainter.drawImage(0 + diffWidth, 0 + diffHeight, snapmaticImage); | ||||
|         if (ui->cbWatermark->isChecked()) | ||||
|             processWatermark(&snapmaticPainter); | ||||
|  | @ -309,6 +349,7 @@ void ImportDialog::processSettings(QString settingsProfile, bool setDefault) | |||
|         watermarkPicture = false; | ||||
|         selectedColour = QColor::fromRgb(0, 0, 0, 255); | ||||
|         backImage = QImage(); | ||||
|         ui->cbBorderless->setChecked(false); | ||||
|         ui->cbStretch->setChecked(false); | ||||
|         ui->cbForceAvatarColour->setChecked(false); | ||||
|         ui->cbUnlimited->setChecked(false); | ||||
|  | @ -321,6 +362,7 @@ void ImportDialog::processSettings(QString settingsProfile, bool setDefault) | |||
|         watermarkPicture = settings.value("WatermarkPicture", false).toBool(); | ||||
|         backImage = qvariant_cast<QImage>(settings.value("BackgroundImage", QImage())); | ||||
|         selectedColour = qvariant_cast<QColor>(settings.value("SelectedColour", QColor::fromRgb(0, 0, 0, 255))); | ||||
|         ui->cbBorderless->setChecked(settings.value("BorderlessImage", false).toBool()); | ||||
|         ui->cbStretch->setChecked(settings.value("BackgroundStretch", false).toBool()); | ||||
|         ui->cbForceAvatarColour->setChecked(settings.value("ForceAvatarColour", false).toBool()); | ||||
|         ui->cbUnlimited->setChecked(settings.value("UnlimitedBuffer", false).toBool()); | ||||
|  | @ -368,6 +410,7 @@ void ImportDialog::saveSettings(QString settingsProfile) | |||
|     settings.setValue("WatermarkPicture", watermarkPicture); | ||||
|     settings.setValue("BackgroundImage", backImage); | ||||
|     settings.setValue("SelectedColour", selectedColour); | ||||
|     settings.setValue("BorderlessImage", ui->cbBorderless->isChecked()); | ||||
|     settings.setValue("BackgroundStretch", ui->cbStretch->isChecked()); | ||||
|     settings.setValue("ForceAvatarColour", ui->cbForceAvatarColour->isChecked()); | ||||
| #if QT_VERSION >= 0x050000 | ||||
|  | @ -453,8 +496,7 @@ void ImportDialog::cropPicture() | |||
| 
 | ||||
|     cropDialog.show(); | ||||
|     cropDialog.setFixedSize(cropDialog.sizeHint()); | ||||
|     if (cropDialog.exec() == QDialog::Accepted) | ||||
|     { | ||||
|     if (cropDialog.exec() == QDialog::Accepted) { | ||||
|         QImage *croppedImage = new QImage(imageCropper.cropImage().toImage()); | ||||
|         setImage(croppedImage); | ||||
|     } | ||||
|  | @ -479,8 +521,7 @@ fileDialogPreOpen: //Work? | |||
| 
 | ||||
|     // Getting readable Image formats
 | ||||
|     QString imageFormatsStr = " "; | ||||
|     for (QByteArray imageFormat : QImageReader::supportedImageFormats()) | ||||
|     { | ||||
|     for (const QByteArray &imageFormat : QImageReader::supportedImageFormats()) { | ||||
|         imageFormatsStr += QString("*.") % QString::fromUtf8(imageFormat).toLower() % " "; | ||||
|     } | ||||
| 
 | ||||
|  | @ -495,17 +536,14 @@ fileDialogPreOpen: //Work? | |||
|     fileDialog.setDirectory(settings.value(profileName % "+Directory", StandardPaths::documentsLocation()).toString()); | ||||
|     fileDialog.restoreGeometry(settings.value(profileName % "+Geometry", "").toByteArray()); | ||||
| 
 | ||||
|     if (fileDialog.exec()) | ||||
|     { | ||||
|     if (fileDialog.exec()) { | ||||
|         QStringList selectedFiles = fileDialog.selectedFiles(); | ||||
|         if (selectedFiles.length() == 1) | ||||
|         { | ||||
|         if (selectedFiles.length() == 1) { | ||||
|             QString selectedFile = selectedFiles.at(0); | ||||
|             QString selectedFileName = QFileInfo(selectedFile).fileName(); | ||||
| 
 | ||||
|             QFile snapmaticFile(selectedFile); | ||||
|             if (!snapmaticFile.open(QFile::ReadOnly)) | ||||
|             { | ||||
|             if (!snapmaticFile.open(QFile::ReadOnly)) { | ||||
|                 QMessageBox::warning(this, QApplication::translate("ProfileInterface", "Import"), QApplication::translate("ProfileInterface", "Can't import %1 because file can't be open").arg("\""+selectedFileName+"\"")); | ||||
|                 goto fileDialogPreOpen; | ||||
|             } | ||||
|  | @ -513,8 +551,7 @@ fileDialogPreOpen: //Work? | |||
|             QImageReader snapmaticImageReader; | ||||
|             snapmaticImageReader.setDecideFormatFromContent(true); | ||||
|             snapmaticImageReader.setDevice(&snapmaticFile); | ||||
|             if (!snapmaticImageReader.read(importImage)) | ||||
|             { | ||||
|             if (!snapmaticImageReader.read(importImage)) { | ||||
|                 QMessageBox::warning(this, QApplication::translate("ProfileInterface", "Import"), QApplication::translate("ProfileInterface", "Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\"")); | ||||
|                 delete importImage; | ||||
|                 goto fileDialogPreOpen; | ||||
|  | @ -531,8 +568,7 @@ fileDialogPreOpen: //Work? | |||
| 
 | ||||
| void ImportDialog::loadImportSettings() | ||||
| { | ||||
|     if (settingsLocked) | ||||
|     { | ||||
|     if (settingsLocked) { | ||||
|         QMessageBox::information(this, tr("Load Settings..."), tr("Please import a new picture first")); | ||||
|         return; | ||||
|     } | ||||
|  | @ -545,31 +581,25 @@ void ImportDialog::loadImportSettings() | |||
|                 << tr("Profile %1", "Profile %1 as Profile 1").arg("4") | ||||
|                 << tr("Profile %1", "Profile %1 as Profile 1").arg("5"); | ||||
|     QString sProfile = QInputDialog::getItem(this, tr("Load Settings..."), tr("Please select your settings profile"), profileList, 0, false, &ok, windowFlags()); | ||||
|     if (ok) | ||||
|     { | ||||
|     if (ok) { | ||||
|         QString pProfile; | ||||
|         if (sProfile == tr("Default", "Default as Default Profile")) | ||||
|         { | ||||
|         if (sProfile == tr("Default", "Default as Default Profile")) { | ||||
|             pProfile = "Default"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("1")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("1")) { | ||||
|             pProfile = "Profile 1"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("2")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("2")) { | ||||
|             pProfile = "Profile 2"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("3")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("3")) { | ||||
|             pProfile = "Profile 3"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("4")) | ||||
|         { | ||||
|             pProfile = "Profile 4"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("5")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("5")) { | ||||
|             pProfile = "Profile 5"; | ||||
|         } | ||||
|         processSettings(pProfile, true); | ||||
|  | @ -579,8 +609,7 @@ void ImportDialog::loadImportSettings() | |||
| 
 | ||||
| void ImportDialog::saveImportSettings() | ||||
| { | ||||
|     if (settingsLocked) | ||||
|     { | ||||
|     if (settingsLocked) { | ||||
|         QMessageBox::information(this, tr("Save Settings..."), tr("Please import a new picture first")); | ||||
|         return; | ||||
|     } | ||||
|  | @ -592,27 +621,21 @@ void ImportDialog::saveImportSettings() | |||
|                 << tr("Profile %1", "Profile %1 as Profile 1").arg("4") | ||||
|                 << tr("Profile %1", "Profile %1 as Profile 1").arg("5"); | ||||
|     QString sProfile = QInputDialog::getItem(this, tr("Save Settings..."), tr("Please select your settings profile"), profileList, 0, false, &ok, windowFlags()); | ||||
|     if (ok) | ||||
|     { | ||||
|     if (ok) { | ||||
|         QString pProfile; | ||||
|         if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("1")) | ||||
|         { | ||||
|         if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("1")) { | ||||
|             pProfile = "Profile 1"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("2")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("2")) { | ||||
|             pProfile = "Profile 2"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("3")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("3")) { | ||||
|             pProfile = "Profile 3"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("4")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("4")) { | ||||
|             pProfile = "Profile 4"; | ||||
|         } | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("5")) | ||||
|         { | ||||
|         else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("5")) { | ||||
|             pProfile = "Profile 5"; | ||||
|         } | ||||
|         saveSettings(pProfile); | ||||
|  | @ -717,12 +740,17 @@ bool ImportDialog::areSettingsLocked() | |||
| 
 | ||||
| QString ImportDialog::getImageTitle() | ||||
| { | ||||
|     return imageTitle; | ||||
|     if (ui->cbImportAsIs->isChecked()) { | ||||
|         return tr("Custom Picture", "Custom Picture Description in SC, don't use Special Character!"); | ||||
|     } | ||||
|     else { | ||||
|         return imageTitle; | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| void ImportDialog::on_cbIgnore_toggled(bool checked) | ||||
| { | ||||
|     Q_UNUSED(checked) | ||||
|     ui->cbBorderless->setDisabled(checked); | ||||
|     processImage(); | ||||
| } | ||||
| 
 | ||||
|  | @ -763,11 +791,9 @@ void ImportDialog::on_cmdOK_clicked() | |||
| 
 | ||||
| void ImportDialog::on_labPicture_labelPainted() | ||||
| { | ||||
|     if (insideAvatarZone) | ||||
|     { | ||||
|     if (insideAvatarZone) { | ||||
|         QImage avatarAreaFinalImage(avatarAreaImage); | ||||
|         if (selectedColour.lightness() > 127) | ||||
|         { | ||||
|         if (selectedColour.lightness() > 127) { | ||||
|             avatarAreaFinalImage.setColor(1, qRgb(0, 0, 0)); | ||||
|         } | ||||
|         QPainter labelPainter(ui->labPicture); | ||||
|  | @ -779,8 +805,7 @@ void ImportDialog::on_labPicture_labelPainted() | |||
| void ImportDialog::on_cmdColourChange_clicked() | ||||
| { | ||||
|     QColor newSelectedColour = QColorDialog::getColor(selectedColour, this, tr("Select Colour...")); | ||||
|     if (newSelectedColour.isValid()) | ||||
|     { | ||||
|     if (newSelectedColour.isValid()) { | ||||
|         selectedColour = newSelectedColour; | ||||
|         ui->labColour->setText(tr("Background Colour: <span style=\"color: %1\">%1</span>").arg(selectedColour.name())); | ||||
|         processImage(); | ||||
|  | @ -806,8 +831,7 @@ fileDialogPreOpen: | |||
| 
 | ||||
|     // Getting readable Image formats
 | ||||
|     QString imageFormatsStr = " "; | ||||
|     for (QByteArray imageFormat : QImageReader::supportedImageFormats()) | ||||
|     { | ||||
|     for (const QByteArray &imageFormat : QImageReader::supportedImageFormats()) { | ||||
|         imageFormatsStr += QString("*.") % QString::fromUtf8(imageFormat).toLower() % " "; | ||||
|     } | ||||
| 
 | ||||
|  | @ -822,17 +846,14 @@ fileDialogPreOpen: | |||
|     fileDialog.setDirectory(settings.value("Directory", StandardPaths::documentsLocation()).toString()); | ||||
|     fileDialog.restoreGeometry(settings.value("Geometry", "").toByteArray()); | ||||
| 
 | ||||
|     if (fileDialog.exec()) | ||||
|     { | ||||
|     if (fileDialog.exec()) { | ||||
|         QStringList selectedFiles = fileDialog.selectedFiles(); | ||||
|         if (selectedFiles.length() == 1) | ||||
|         { | ||||
|         if (selectedFiles.length() == 1) { | ||||
|             QString selectedFile = selectedFiles.at(0); | ||||
|             QString selectedFileName = QFileInfo(selectedFile).fileName(); | ||||
| 
 | ||||
|             QFile snapmaticFile(selectedFile); | ||||
|             if (!snapmaticFile.open(QFile::ReadOnly)) | ||||
|             { | ||||
|             if (!snapmaticFile.open(QFile::ReadOnly)) { | ||||
|                 QMessageBox::warning(this, QApplication::translate("ProfileInterface", "Import"), QApplication::translate("ProfileInterface", "Can't import %1 because file can't be open").arg("\""+selectedFileName+"\"")); | ||||
|                 goto fileDialogPreOpen; | ||||
|             } | ||||
|  | @ -840,8 +861,7 @@ fileDialogPreOpen: | |||
|             QImageReader snapmaticImageReader; | ||||
|             snapmaticImageReader.setDecideFormatFromContent(true); | ||||
|             snapmaticImageReader.setDevice(&snapmaticFile); | ||||
|             if (!snapmaticImageReader.read(&importImage)) | ||||
|             { | ||||
|             if (!snapmaticImageReader.read(&importImage)) { | ||||
|                 QMessageBox::warning(this, QApplication::translate("ProfileInterface", "Import"), QApplication::translate("ProfileInterface", "Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\"")); | ||||
|                 goto fileDialogPreOpen; | ||||
|             } | ||||
|  | @ -881,8 +901,7 @@ void ImportDialog::on_cbForceAvatarColour_toggled(bool checked) | |||
| 
 | ||||
| void ImportDialog::on_cbWatermark_toggled(bool checked) | ||||
| { | ||||
|     if (!watermarkBlock) | ||||
|     { | ||||
|     if (!watermarkBlock) { | ||||
|         if (insideAvatarZone) { | ||||
|             watermarkAvatar = checked; | ||||
|         } | ||||
|  | @ -893,6 +912,12 @@ void ImportDialog::on_cbWatermark_toggled(bool checked) | |||
|     } | ||||
| } | ||||
| 
 | ||||
| void ImportDialog::on_cbBorderless_toggled(bool checked) | ||||
| { | ||||
|     ui->cbIgnore->setDisabled(checked); | ||||
|     processImage(); | ||||
| } | ||||
| 
 | ||||
| void ImportDialog::on_cbImportAsIs_toggled(bool checked) | ||||
| { | ||||
|     ui->cbResolution->setDisabled(checked); | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| /*****************************************************************************
 | ||||
| * gta5view Grand Theft Auto V Profile Viewer | ||||
| * Copyright (C) 2017-2020 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 | ||||
|  | @ -60,6 +60,7 @@ private slots: | |||
|     void on_cbStretch_toggled(bool checked); | ||||
|     void on_cbForceAvatarColour_toggled(bool checked); | ||||
|     void on_cbWatermark_toggled(bool checked); | ||||
|     void on_cbBorderless_toggled(bool checked); | ||||
|     void on_cbImportAsIs_toggled(bool checked); | ||||
|     void on_cbResolution_currentIndexChanged(int index); | ||||
| 
 | ||||
|  |  | |||
|  | @ -88,12 +88,6 @@ | |||
|           <layout class="QHBoxLayout" name="hlCheckboxesTop"> | ||||
|            <item> | ||||
|             <widget class="QCheckBox" name="cbAvatar"> | ||||
|              <property name="sizePolicy"> | ||||
|               <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> | ||||
|                <horstretch>0</horstretch> | ||||
|                <verstretch>0</verstretch> | ||||
|               </sizepolicy> | ||||
|              </property> | ||||
|              <property name="text"> | ||||
|               <string>Avatar</string> | ||||
|              </property> | ||||
|  | @ -101,12 +95,6 @@ | |||
|            </item> | ||||
|            <item> | ||||
|             <widget class="QCheckBox" name="cbIgnore"> | ||||
|              <property name="sizePolicy"> | ||||
|               <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> | ||||
|                <horstretch>0</horstretch> | ||||
|                <verstretch>0</verstretch> | ||||
|               </sizepolicy> | ||||
|              </property> | ||||
|              <property name="text"> | ||||
|               <string>Ignore Aspect Ratio</string> | ||||
|              </property> | ||||
|  | @ -118,17 +106,18 @@ | |||
|           <layout class="QHBoxLayout" name="hlCheckboxesButtom"> | ||||
|            <item> | ||||
|             <widget class="QCheckBox" name="cbWatermark"> | ||||
|              <property name="sizePolicy"> | ||||
|               <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> | ||||
|                <horstretch>0</horstretch> | ||||
|                <verstretch>0</verstretch> | ||||
|               </sizepolicy> | ||||
|              </property> | ||||
|              <property name="text"> | ||||
|               <string>Watermark</string> | ||||
|              </property> | ||||
|             </widget> | ||||
|            </item> | ||||
|            <item> | ||||
|             <widget class="QCheckBox" name="cbBorderless"> | ||||
|              <property name="text"> | ||||
|               <string>Force Borderless</string> | ||||
|              </property> | ||||
|             </widget> | ||||
|            </item> | ||||
|           </layout> | ||||
|          </item> | ||||
|         </layout> | ||||
|  |  | |||
							
								
								
									
										198
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							
							
						
						
									
										198
									
								
								res/gta5sync.ts
									
										
									
									
									
								
							|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1"> | ||||
| <TS version="2.0"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -167,27 +167,27 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -225,264 +225,270 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <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> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1292,8 +1298,8 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1315,40 +1321,40 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -185,27 +185,27 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation>Snapmatic Bild Editor</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation>Bild überschreiben...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation>Änderungen übernehmen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation>&Überschreiben</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation>Änderungen verwerfen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>S&chließen</translation> | ||||
|     </message> | ||||
|  | @ -230,13 +230,13 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation>Importieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation>Seitenverhältnis ignorieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation>Avatar</translation> | ||||
|     </message> | ||||
|  | @ -246,25 +246,30 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation>Bild</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation>Wasserzeichen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation>Erzwinge keine Ränder</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation>Hintergrund</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>Hintergrundfarbe: <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>Hintergrundfarbe auswählen</translation> | ||||
|     </message> | ||||
|  | @ -273,23 +278,23 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation type="obsolete">...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation>Hintergrundbild auswählen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation>Hintergrundbild entfernen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation>Importiere das Bild ohne Veränderungen, Snapmatic wird garantiert beschädigt wenn du nicht weißt was du tust</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation>Hintergrundbild: %1</translation> | ||||
|     </message> | ||||
|  | @ -298,210 +303,211 @@ Snapmatic Bilder und Spielständen</translation> | |||
|         <translation type="obsolete">X</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>Erzwinge Farbe in Avatar Zone</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation>Erweitert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation>Auflösung:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation>Snapmatic Auflösung</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation>Vermeide Komprimierung und vergrößere Buffer stattdessen, verbessert Bild Qualität, aber könnte Snapmatic beschädigen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation>Unlimitierter Buffer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation>Importiere unverändert</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation>Import Optionen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation>&Optionen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation>Bild importieren</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation>&OK</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation>Bild verwerfen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation>Abbre&chen</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation>Hintergrundbild:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation>Neues Bild &importieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation>Bild zu&schneiden...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation>Einstellungen &laden...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation>Einstellungen &speichern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <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> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation>Speicher</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation>Bild zuschneiden...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation>Zu&schneiden</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation>Bild zuschneiden</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation>Bitte importiere ein neues Bild zuerst</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation>Standard</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation>Profil %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation>Einstellungen laden...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation>Bitte wähle dein Einstellungsprofil aus</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation>Einstellungen speichern...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation>Bist du sicher ein Quadrat Bild außerhalb der Avatar Zone zu verwenden? | ||||
| Wenn du es als Avatar verwenden möchtest wird es abgetrennt!</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation>Snapmatic Avatar Zone</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>Farbe auswählen...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation>Datei</translation> | ||||
|  | @ -1339,8 +1345,8 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1362,12 +1368,12 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Importieren...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation>Importieren</translation> | ||||
|     </message> | ||||
|  | @ -1389,15 +1395,15 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Importfähige Dateien (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation>Alle Bilddateien (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|  | @ -1431,15 +1437,15 @@ Drücke 1 für Standardmodus</translation> | |||
|         <translation>Fehler beim Lesen von Spielstanddatei</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <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> | ||||
|  | @ -1686,7 +1692,7 @@ Drücke 1 für Standardmodus</translation> | |||
|     <name>QApplication</name> | ||||
|     <message> | ||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||
|         <translation type="vanished"><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation> | ||||
|         <translation type="obsolete"><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation> | ||||
|     </message> | ||||
| </context> | ||||
| <context> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1" language="en_US"> | ||||
| <TS version="2.0" language="en_US"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -175,27 +175,27 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -220,20 +220,20 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>Background Color: <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>Select background color</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -243,246 +243,252 @@ Pictures and Savegames</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>Force Color in Avatar Zone</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <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> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>Select Color...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation type="unfinished"></translation> | ||||
|  | @ -1312,8 +1318,8 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1335,12 +1341,12 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|  | @ -1368,15 +1374,15 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|  | @ -1415,15 +1421,15 @@ Press 1 for Default View</source> | |||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1" language="fr_FR"> | ||||
| <TS version="2.0" language="fr_FR"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -186,27 +186,27 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation>Éditeur d'images Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation>Remplacer l'image...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation>Appliquer les modifications</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation>&Remplacer</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation>Annuler les modifications</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Fermer</translation> | ||||
|     </message> | ||||
|  | @ -231,13 +231,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation>Importer...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation>Déverrouiller le ratio d'aspect</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation>Avatar</translation> | ||||
|     </message> | ||||
|  | @ -247,25 +247,30 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation>Image</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation>Filigrane</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation>Fond</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>Couleur de fond : <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>Choisir la couleur de fond</translation> | ||||
|     </message> | ||||
|  | @ -274,18 +279,18 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation type="obsolete">...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation>Choisir l'image de fond</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation>Supprimer l'image de fond</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation>Image de fond : %1</translation> | ||||
|     </message> | ||||
|  | @ -294,215 +299,216 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | |||
|         <translation type="obsolete">X</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>Forcer la couleur dans la zone d'avatar</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation>Avancé</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation>Résolution :</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation>Résolution Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation>Éviter la compression et étendre la mémoire tampon à la place, améliore la qualité de l'image mais peut casser Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation>Mémoire tampon illimitée</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation>Importer tel quel,ne changez pas du tout l'image, garantie de casser Snapmatic à moins que vous ne sachiez ce que vous faites</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation>Importer tel quel</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation>Options d'importation</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation>&Options</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation>Importer l'image</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation>&OK</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation>Supprimer l'image</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation>&Annuler</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation>Image de fond :</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation>&Importer une nouvelle image...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation>&Rogner l'image...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation>&Charger les paramètres...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation>&Sauvegarder les paramètres...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <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> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation>Stockage</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation>Rogner l'image...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation>&Rogner</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation>Rogner l'image</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation>Veuillez d'abord importer une nouvelle image</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation>Défaut</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation>Profil %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation>Charger les paramètres...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation>Veuillez choisir votre profil de paramètres</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation>Sauvegarder les paramètres...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation>Êtes-vous sûr d'utiliser une image carrée en dehors de la Zone d'Avatar ? | ||||
| Si vous l'utilisez comme Avatar, l'image sera détachée !</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation>Zone d'avatar Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>Choisir une couleur...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation>Fichier</translation> | ||||
|  | @ -1351,8 +1357,8 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1374,12 +1380,12 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Importer...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation>Importer</translation> | ||||
|     </message> | ||||
|  | @ -1396,15 +1402,15 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Photos Snapmatic (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation>Toutes les images (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|  | @ -1450,15 +1456,15 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|         <translation>Impossible de lire le fichier de sauvegarde</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <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> | ||||
|  | @ -1696,7 +1702,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | |||
|     </message> | ||||
|     <message> | ||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||
|         <translation type="vanished"><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation> | ||||
|         <translation type="obsolete"><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation> | ||||
|     </message> | ||||
| </context> | ||||
| <context> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1" language="ko_KR"> | ||||
| <TS version="2.0" language="ko_KR"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -177,27 +177,27 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation>이미지 덮어쓰기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation>변경 사항 적용</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation>덮어쓰기(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation>변경 사항 무시</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>닫기(&C)</translation> | ||||
|     </message> | ||||
|  | @ -235,36 +235,41 @@ Pictures and Savegames</source> | |||
|         <translation>이미지</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation>아바타</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation>화면 비율 무시</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation>워터마크</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation>배경</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>배경 색상: <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>배경 색상 선택</translation> | ||||
|     </message> | ||||
|  | @ -273,20 +278,20 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation>배경 이미지:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation>배경 이미지 선택</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation>배경 이미지 제거</translation> | ||||
|     </message> | ||||
|  | @ -295,97 +300,97 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">X</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>아바타 구역에 색상을 적용합니다</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation>고급</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation>해상도:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation>스냅매틱 해상도</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation>압축하지 않고 버퍼를 확장하여 화질을 향상시키지만 스냅매틱이 손상될 수 있습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation>버퍼 제한 없음</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation>원본 그대로 가져오기 기능은 이미지를 건들지 않지만 이 기능으로 인해 당신의 스냅매틱이 손상될 수 있습니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation>원본 그대로 가져오기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation>가져오기 옵션</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation>옵션(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation>사진 가져오기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation>확인(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation>사진 삭제</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation>취소(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation>새로운 사진 가져오기(&I)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation>사진 자르기(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation>설정 불러오기(&L)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation>설정 저장(&S)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="730"/> | ||||
|         <source>Custom Avatar</source> | ||||
|         <comment>Custom Avatar Description in SC, don't use Special Character!</comment> | ||||
|  | @ -393,7 +398,8 @@ Pictures and Savegames</source> | |||
|         <translation>사용자 지정 아바타</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="218"/> | ||||
|         <location filename="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|  | @ -401,112 +407,112 @@ Pictures and Savegames</source> | |||
|         <translation>사용자 지정 사진</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation>배경 이미지: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translatorcomment>배경 이미지: 저장됨</translatorcomment> | ||||
|         <translation>저장됨</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation>사진 자르기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation>자르기(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation>사진 자르기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation>설정 불러오기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation>먼저 새 이미지를 가져오세요</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translatorcomment>기본 프로필로 기본 설정</translatorcomment> | ||||
|         <translation>기본</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translatorcomment>%1을 프로필 1로 지정합니다.</translatorcomment> | ||||
|         <translation>프로필 %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation>설정 프로필을 선택하세요</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation>설정 저장</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation>스냅매틱 아바타 영역</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation>아바타 구역 밖에서 네모난 이미지를 정말 사용합니까? | ||||
| 아바타로 사용하려는 경우 이미지가 분리됩니다!</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>색상 선택</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translatorcomment>배경 이미지: 파일</translatorcomment> | ||||
|  | @ -1344,8 +1350,8 @@ Press 1 for Default View</source> | |||
|         <translation>%2 파일 중 %1 파일을 내보냅니다.</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1367,40 +1373,40 @@ Press 1 for Default View</source> | |||
|         <translation>가져오기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation>가져오기</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation>모든 이미지 파일 (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>모든 파일 (**)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다.</translation> | ||||
|  | @ -1714,7 +1720,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||
|         <translation type="vanished"><h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 설정 창을 여시겠습니까?</translation> | ||||
|         <translation type="obsolete"><h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 설정 창을 여시겠습니까?</translation> | ||||
|     </message> | ||||
| </context> | ||||
| <context> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1" language="ru_RU"> | ||||
| <TS version="2.0" language="ru_RU"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -189,27 +189,27 @@ Pictures and Savegames</source> | |||
|         <translation>Редактор картинок Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation>Перезаписать картинку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation>Применить изменения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation>&Перезаписать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation>Отменить изменения</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Закрыть</translation> | ||||
|     </message> | ||||
|  | @ -234,13 +234,13 @@ Pictures and Savegames</source> | |||
|         <translation>Импортировать...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation>Игнорировать соотн. сторон</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation>Аватар</translation> | ||||
|     </message> | ||||
|  | @ -250,25 +250,30 @@ Pictures and Savegames</source> | |||
|         <translation>Картинка</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation>Водяной знак</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation>Фон</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>Цвет фона: <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>Выберите цвет фона</translation> | ||||
|     </message> | ||||
|  | @ -277,23 +282,23 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation>Выбрать фоновое изображение</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation>Убрать фоновую картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation>Импортировать как есть, не меняя картинку. Обязательно поломает Snapmatic, если не знаешь, что делаешь</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation>Фоновая картинка: %1</translation> | ||||
|     </message> | ||||
|  | @ -304,211 +309,212 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">X</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>Задать цвет в зоне аватарки</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation>Расширенное</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation>Разрешение:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation>Разрешение Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation>Не сжимать, а увеличить буфер. Улучшит качество картинки, но может поломать Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation>Неограниченный буфер</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation>Импортировать как есть</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation>Опции импорта</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation>&Опции</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation>Импортировать картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation>&ОК</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation>Отклонить картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translatorcomment>Я не уверен насчет горячих клавиш... | ||||
| </translatorcomment> | ||||
|         <translation>От&мена</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation>Фоновая картинка:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation>&Импортировать картинку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation>Об&резать картинку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation>&Загрузить настройки...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation>&Сохранить настройки...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>Своя Картинка</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation>Хранилище</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation>Обрезать картинку...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation>Об&резать</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation>Обрезать картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation>Импортируй сначала новую картинку</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation>По умолчанию</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation>Профиль %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation>Загрузить настройки...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation>Пожалуйста, выбери профиль для настроек</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation>Сохранить настройки...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation>Ты точно хочешь использовать квадратное изображение вне зоны аватарки? Если это аватар, то изображение будет обрезано!</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation>Зона Snapmatic Аватарки</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>Выбрать цвет...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation>Файл</translation> | ||||
|  | @ -1351,8 +1357,8 @@ Press 1 for Default View</source> | |||
|         <translation><h4>Нижеследующие картинки Snapmatic были восстановлены</h4>%1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1374,12 +1380,12 @@ Press 1 for Default View</source> | |||
|         <translation>Импортировать...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation>Импортировать</translation> | ||||
|     </message> | ||||
|  | @ -1396,8 +1402,8 @@ Press 1 for Default View</source> | |||
|         <translation>Картинка Snapmatic (PGTA*)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|  | @ -1448,22 +1454,22 @@ Press 1 for Default View</source> | |||
|         <translation>Файлы для импорта (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation>Все файлы изображений (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation> | ||||
|  | @ -1701,7 +1707,7 @@ Press 1 for Default View</source> | |||
|     <name>QApplication</name> | ||||
|     <message> | ||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||
|         <translation type="vanished"><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation> | ||||
|         <translation type="obsolete"><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation> | ||||
|     </message> | ||||
| </context> | ||||
| <context> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1" language="uk_UA"> | ||||
| <TS version="2.0" language="uk_UA"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -180,27 +180,27 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation>Перезаписати зображення...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation>Застосувати зміни</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation>&Перезаписати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation>Скасувати зміни</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>&Закрити</translation> | ||||
|     </message> | ||||
|  | @ -238,36 +238,41 @@ Pictures and Savegames</source> | |||
|         <translation>Зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation>Аватар</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation>Ігнорувати співвідношення сторін</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation>Водяний знак</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation>Фон</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>Фоновий колір: <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>Виберіть колір фону</translation> | ||||
|     </message> | ||||
|  | @ -276,20 +281,20 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation>Фонове зображення:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation>Виберіть фонове зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation>Видалити фонове зображення</translation> | ||||
|     </message> | ||||
|  | @ -298,213 +303,214 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">Х</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>Примусовий колір в зоні Аватару</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation>Додатково</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation>Розширення:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation>Розширення Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation>Не стискати, а збільшити буфер. Поліпшить якість картинки, але може поламати Snapmatic</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation>Необмежений буфер</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation>Імпортуати як є, взагалі не змінюється зображення, гарантовано зламається Snapmatic, тільки якщо не знаєте, що робите</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation>Імпортувати як є</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation>Параметри імпорту</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation>&Параметри</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation>Імпортувати зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation>&OK</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation>Відхилити зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation>&Скасувати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation>&Імпортувати нове зображення...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation>&Обрізати зображення...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation>&Завантажити параметри...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation>&Зберегти параметри...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>Користувацьке Зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation>Зберігання</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation>Обрізати зображення...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation>&Обрізати</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation>Обрізати зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation>Спершу імпортуйте нове зображення</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation>Стандартний</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation>Профіль %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation>Завантажити параметри...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation>Зберегти параметри...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation>Зона Snapmatic Аватару</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation>Ви впевнені, що будете використовувати квадратне зображення поза зоною аватара? | ||||
| Якщо ви хочете використовувати його як Аватар, зображення буде відокремлено!</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>Вибір кольору...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation>Фонове зображення: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation>Будь ласка, виберіть свій профіль налаштувань</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation>Файл</translation> | ||||
|  | @ -1334,8 +1340,8 @@ Press 1 for Default View</source> | |||
|         <translation>Експортується файл %1 з %2 файлів</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1357,40 +1363,40 @@ Press 1 for Default View</source> | |||
|         <translation>Імпортування...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation>Імпорт</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation>Файли зображень (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>Усі файли (**)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation> | ||||
|  | @ -1699,7 +1705,7 @@ Press 1 for Default View</source> | |||
|     </message> | ||||
|     <message> | ||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||
|         <translation type="vanished"><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation> | ||||
|         <translation type="obsolete"><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation> | ||||
|     </message> | ||||
| </context> | ||||
| <context> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!DOCTYPE TS> | ||||
| <TS version="2.1" language="zh_TW"> | ||||
| <TS version="2.0" language="zh_TW"> | ||||
| <context> | ||||
|     <name>AboutDialog</name> | ||||
|     <message> | ||||
|  | @ -176,27 +176,27 @@ Pictures and Savegames</source> | |||
| <context> | ||||
|     <name>ImageEditorDialog</name> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="693"/> | ||||
|         <location filename="../ImportDialog.cpp" line="716"/> | ||||
|         <source>Overwrite Image...</source> | ||||
|         <translation>修改圖片...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="695"/> | ||||
|         <location filename="../ImportDialog.cpp" line="718"/> | ||||
|         <source>Apply changes</source> | ||||
|         <translation>套用變更</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="694"/> | ||||
|         <location filename="../ImportDialog.cpp" line="717"/> | ||||
|         <source>&Overwrite</source> | ||||
|         <translation>修改(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="697"/> | ||||
|         <location filename="../ImportDialog.cpp" line="720"/> | ||||
|         <source>Discard changes</source> | ||||
|         <translation>捨棄變更</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="696"/> | ||||
|         <location filename="../ImportDialog.cpp" line="719"/> | ||||
|         <source>&Close</source> | ||||
|         <translation>關閉(&C)</translation> | ||||
|     </message> | ||||
|  | @ -234,36 +234,41 @@ Pictures and Savegames</source> | |||
|         <translation>圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="98"/> | ||||
|         <location filename="../ImportDialog.ui" line="92"/> | ||||
|         <source>Avatar</source> | ||||
|         <translation>大頭貼</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="111"/> | ||||
|         <location filename="../ImportDialog.ui" line="278"/> | ||||
|         <location filename="../ImportDialog.ui" line="99"/> | ||||
|         <location filename="../ImportDialog.ui" line="267"/> | ||||
|         <source>Ignore Aspect Ratio</source> | ||||
|         <translation>忽略長寬比</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="128"/> | ||||
|         <location filename="../ImportDialog.ui" line="110"/> | ||||
|         <source>Watermark</source> | ||||
|         <translation>浮水印</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="140"/> | ||||
|         <location filename="../ImportDialog.ui" line="117"/> | ||||
|         <source>Force Borderless</source> | ||||
|         <translation type="unfinished"></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="129"/> | ||||
|         <source>Background</source> | ||||
|         <translation>背景</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="150"/> | ||||
|         <location filename="../ImportDialog.cpp" line="86"/> | ||||
|         <location filename="../ImportDialog.cpp" line="350"/> | ||||
|         <location filename="../ImportDialog.cpp" line="785"/> | ||||
|         <location filename="../ImportDialog.ui" line="139"/> | ||||
|         <location filename="../ImportDialog.cpp" line="82"/> | ||||
|         <location filename="../ImportDialog.cpp" line="392"/> | ||||
|         <location filename="../ImportDialog.cpp" line="810"/> | ||||
|         <source>Background Colour: <span style="color: %1">%1</span></source> | ||||
|         <translation>背景顏色: <span style="color: %1">%1</span></translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="174"/> | ||||
|         <location filename="../ImportDialog.ui" line="163"/> | ||||
|         <source>Select background colour</source> | ||||
|         <translation>選擇背景顏色</translation> | ||||
|     </message> | ||||
|  | @ -272,20 +277,20 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="203"/> | ||||
|         <location filename="../ImportDialog.cpp" line="87"/> | ||||
|         <location filename="../ImportDialog.cpp" line="356"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ImportDialog.ui" line="192"/> | ||||
|         <location filename="../ImportDialog.cpp" line="83"/> | ||||
|         <location filename="../ImportDialog.cpp" line="398"/> | ||||
|         <location filename="../ImportDialog.cpp" line="885"/> | ||||
|         <source>Background Image:</source> | ||||
|         <translation>背景圖片:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="227"/> | ||||
|         <location filename="../ImportDialog.ui" line="216"/> | ||||
|         <source>Select background image</source> | ||||
|         <translation>選擇背景圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="237"/> | ||||
|         <location filename="../ImportDialog.ui" line="226"/> | ||||
|         <source>Remove background image</source> | ||||
|         <translation>移除背景圖片</translation> | ||||
|     </message> | ||||
|  | @ -294,212 +299,213 @@ Pictures and Savegames</source> | |||
|         <translation type="obsolete">X</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="268"/> | ||||
|         <location filename="../ImportDialog.ui" line="257"/> | ||||
|         <source>Force Colour in Avatar Zone</source> | ||||
|         <translation>強制在大頭貼區域使用顏色</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="303"/> | ||||
|         <location filename="../ImportDialog.ui" line="292"/> | ||||
|         <source>Advanced</source> | ||||
|         <translation>進階</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="311"/> | ||||
|         <location filename="../ImportDialog.ui" line="300"/> | ||||
|         <source>Resolution:</source> | ||||
|         <translation>解析度:</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <location filename="../ImportDialog.ui" line="313"/> | ||||
|         <source>Snapmatic resolution</source> | ||||
|         <translation>Snapmatic 解析度</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="335"/> | ||||
|         <location filename="../ImportDialog.ui" line="324"/> | ||||
|         <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> | ||||
|         <translation>避免壓縮來提高圖片品質,但可能會破壞 Snapmatic 運作</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="338"/> | ||||
|         <location filename="../ImportDialog.ui" line="327"/> | ||||
|         <source>Unlimited Buffer</source> | ||||
|         <translation>無限緩衝</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="345"/> | ||||
|         <location filename="../ImportDialog.ui" line="334"/> | ||||
|         <source>Import as-is, don't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> | ||||
|         <translation>除非你知道自己在幹什麼,否則修改圖片將使 Snapmatic 故障</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="348"/> | ||||
|         <location filename="../ImportDialog.ui" line="337"/> | ||||
|         <source>Import as-is</source> | ||||
|         <translation>照原樣匯入</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="362"/> | ||||
|         <location filename="../ImportDialog.ui" line="351"/> | ||||
|         <source>Import options</source> | ||||
|         <translation>匯入選項</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="365"/> | ||||
|         <location filename="../ImportDialog.ui" line="354"/> | ||||
|         <source>&Options</source> | ||||
|         <translation>選項(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="394"/> | ||||
|         <location filename="../ImportDialog.ui" line="383"/> | ||||
|         <source>Import picture</source> | ||||
|         <translation>匯入圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="397"/> | ||||
|         <location filename="../ImportDialog.ui" line="386"/> | ||||
|         <source>&OK</source> | ||||
|         <translation>確定(&O)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="410"/> | ||||
|         <location filename="../ImportDialog.ui" line="399"/> | ||||
|         <source>Discard picture</source> | ||||
|         <translation>捨棄圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.ui" line="413"/> | ||||
|         <location filename="../ImportDialog.ui" line="402"/> | ||||
|         <source>&Cancel</source> | ||||
|         <translation>取消(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="126"/> | ||||
|         <location filename="../ImportDialog.cpp" line="120"/> | ||||
|         <source>&Import new Picture...</source> | ||||
|         <translation>匯入新圖片(&I)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="127"/> | ||||
|         <location filename="../ImportDialog.cpp" line="121"/> | ||||
|         <source>&Crop Picture...</source> | ||||
|         <translation>裁剪圖片(&C)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="129"/> | ||||
|         <location filename="../ImportDialog.cpp" line="123"/> | ||||
|         <source>&Load Settings...</source> | ||||
|         <translation>載入設定(&L)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="130"/> | ||||
|         <location filename="../ImportDialog.cpp" line="124"/> | ||||
|         <source>&Save Settings...</source> | ||||
|         <translation>儲存設定(&S)...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="195"/> | ||||
|         <location filename="../ImportDialog.cpp" line="212"/> | ||||
|         <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="../ImportDialog.cpp" line="258"/> | ||||
|         <location filename="../ImportDialog.cpp" line="744"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="749"/> | ||||
|         <source>Custom Picture</source> | ||||
|         <comment>Custom Picture Description in SC, don't use Special Character!</comment> | ||||
|         <translation>自訂圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <source>Storage</source> | ||||
|         <comment>Background Image: Storage</comment> | ||||
|         <translation>儲存</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="406"/> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <source>Crop Picture...</source> | ||||
|         <translation>裁剪圖片...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="448"/> | ||||
|         <location filename="../ImportDialog.cpp" line="491"/> | ||||
|         <source>&Crop</source> | ||||
|         <translation>裁剪(&C)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="449"/> | ||||
|         <location filename="../ImportDialog.cpp" line="492"/> | ||||
|         <source>Crop Picture</source> | ||||
|         <translation>裁剪圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <source>Please import a new picture first</source> | ||||
|         <translation>請先匯入新圖片</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="541"/> | ||||
|         <location filename="../ImportDialog.cpp" line="551"/> | ||||
|         <location filename="../ImportDialog.cpp" line="577"/> | ||||
|         <location filename="../ImportDialog.cpp" line="586"/> | ||||
|         <source>Default</source> | ||||
|         <comment>Default as Default Profile</comment> | ||||
|         <translation>預設</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="542"/> | ||||
|         <location filename="../ImportDialog.cpp" line="543"/> | ||||
|         <location filename="../ImportDialog.cpp" line="544"/> | ||||
|         <location filename="../ImportDialog.cpp" line="545"/> | ||||
|         <location filename="../ImportDialog.cpp" line="546"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="559"/> | ||||
|         <location filename="../ImportDialog.cpp" line="563"/> | ||||
|         <location filename="../ImportDialog.cpp" line="567"/> | ||||
|         <location filename="../ImportDialog.cpp" line="571"/> | ||||
|         <location filename="../ImportDialog.cpp" line="578"/> | ||||
|         <location filename="../ImportDialog.cpp" line="579"/> | ||||
|         <location filename="../ImportDialog.cpp" line="580"/> | ||||
|         <location filename="../ImportDialog.cpp" line="581"/> | ||||
|         <location filename="../ImportDialog.cpp" line="582"/> | ||||
|         <location filename="../ImportDialog.cpp" line="589"/> | ||||
|         <location filename="../ImportDialog.cpp" line="590"/> | ||||
|         <location filename="../ImportDialog.cpp" line="591"/> | ||||
|         <location filename="../ImportDialog.cpp" line="592"/> | ||||
|         <location filename="../ImportDialog.cpp" line="593"/> | ||||
|         <location filename="../ImportDialog.cpp" line="595"/> | ||||
|         <location filename="../ImportDialog.cpp" line="598"/> | ||||
|         <location filename="../ImportDialog.cpp" line="602"/> | ||||
|         <location filename="../ImportDialog.cpp" line="606"/> | ||||
|         <location filename="../ImportDialog.cpp" line="610"/> | ||||
|         <location filename="../ImportDialog.cpp" line="614"/> | ||||
|         <location filename="../ImportDialog.cpp" line="618"/> | ||||
|         <location filename="../ImportDialog.cpp" line="619"/> | ||||
|         <location filename="../ImportDialog.cpp" line="620"/> | ||||
|         <location filename="../ImportDialog.cpp" line="621"/> | ||||
|         <location filename="../ImportDialog.cpp" line="622"/> | ||||
|         <location filename="../ImportDialog.cpp" line="626"/> | ||||
|         <location filename="../ImportDialog.cpp" line="629"/> | ||||
|         <location filename="../ImportDialog.cpp" line="632"/> | ||||
|         <location filename="../ImportDialog.cpp" line="635"/> | ||||
|         <location filename="../ImportDialog.cpp" line="638"/> | ||||
|         <source>Profile %1</source> | ||||
|         <comment>Profile %1 as Profile 1</comment> | ||||
|         <translation>設定檔 %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="536"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="572"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <source>Load Settings...</source> | ||||
|         <translation>載入設定...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="584"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="613"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Save Settings...</source> | ||||
|         <translation>儲存設定...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Snapmatic Avatar Zone</source> | ||||
|         <translation>Snapmatic 大頭貼區域</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="735"/> | ||||
|         <location filename="../ImportDialog.cpp" line="926"/> | ||||
|         <location filename="../ImportDialog.cpp" line="763"/> | ||||
|         <location filename="../ImportDialog.cpp" line="951"/> | ||||
|         <source>Are you sure to use a square image outside of the Avatar Zone? | ||||
| When you want to use it as Avatar the image will be detached!</source> | ||||
|         <translation>你確定要在大頭貼區域以外的地方使用方形圖片嗎? 作為大頭貼的圖片將被分離!</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="781"/> | ||||
|         <location filename="../ImportDialog.cpp" line="807"/> | ||||
|         <source>Select Colour...</source> | ||||
|         <translation>選擇顏色...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="352"/> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="394"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>Background Image: %1</source> | ||||
|         <translation>背景圖片: %1</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="594"/> | ||||
|         <location filename="../ImportDialog.cpp" line="583"/> | ||||
|         <location filename="../ImportDialog.cpp" line="623"/> | ||||
|         <source>Please select your settings profile</source> | ||||
|         <translation>請選擇設定檔</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="850"/> | ||||
|         <location filename="../ImportDialog.cpp" line="870"/> | ||||
|         <source>File</source> | ||||
|         <comment>Background Image: File</comment> | ||||
|         <translation>文件</translation> | ||||
|  | @ -1328,8 +1334,8 @@ Press 1 for Default View</source> | |||
|         <translation>匯出檔案中 %1 共 %2 個檔案</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="477"/> | ||||
|         <location filename="../ImportDialog.cpp" line="804"/> | ||||
|         <location filename="../ImportDialog.cpp" line="519"/> | ||||
|         <location filename="../ImportDialog.cpp" line="829"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="497"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="498"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="542"/> | ||||
|  | @ -1351,40 +1357,40 @@ Press 1 for Default View</source> | |||
|         <translation>匯入...</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="478"/> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="518"/> | ||||
|         <location filename="../ImportDialog.cpp" line="805"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="845"/> | ||||
|         <location filename="../ImportDialog.cpp" line="520"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="830"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <source>Import</source> | ||||
|         <translation>匯入</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="488"/> | ||||
|         <location filename="../ImportDialog.cpp" line="815"/> | ||||
|         <location filename="../ImportDialog.cpp" line="529"/> | ||||
|         <location filename="../ImportDialog.cpp" line="839"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="517"/> | ||||
|         <source>All image files (%1)</source> | ||||
|         <translation>所有圖片 (%1)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="489"/> | ||||
|         <location filename="../ImportDialog.cpp" line="816"/> | ||||
|         <location filename="../ImportDialog.cpp" line="530"/> | ||||
|         <location filename="../ImportDialog.cpp" line="840"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="518"/> | ||||
|         <location filename="../UserInterface.cpp" line="470"/> | ||||
|         <source>All files (**)</source> | ||||
|         <translation>所有檔案 (**)</translation> | ||||
|     </message> | ||||
|     <message> | ||||
|         <location filename="../ImportDialog.cpp" line="509"/> | ||||
|         <location filename="../ImportDialog.cpp" line="836"/> | ||||
|         <location filename="../ImportDialog.cpp" line="547"/> | ||||
|         <location filename="../ImportDialog.cpp" line="857"/> | ||||
|         <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="../ImportDialog.cpp" line="555"/> | ||||
|         <location filename="../ImportDialog.cpp" line="865"/> | ||||
|         <location filename="../ProfileInterface.cpp" line="805"/> | ||||
|         <source>Can't import %1 because file can't be parsed properly</source> | ||||
|         <translation>無法匯入 %1,因為檔案無法正確解析</translation> | ||||
|  | @ -1681,7 +1687,7 @@ Press 1 for Default View</source> | |||
|     <name>QApplication</name> | ||||
|     <message> | ||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||
|         <translation type="vanished"><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation> | ||||
|         <translation type="obsolete"><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation> | ||||
|     </message> | ||||
| </context> | ||||
| <context> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue