image overwriter improved
This commit is contained in:
parent
414867f13e
commit
193bb60caa
12 changed files with 658 additions and 456 deletions
10
.travis.yml
10
.travis.yml
|
@ -8,22 +8,12 @@ service:
|
|||
|
||||
matrix:
|
||||
include:
|
||||
- env:
|
||||
- BUILD_SCRIPT=debian_docker.sh
|
||||
- RELEASE_LABEL="Debian 32-Bit Package"
|
||||
- DEBIAN_VERSION=stretch
|
||||
- DOCKER_USER=i386
|
||||
- APT_INSTALL=clang
|
||||
- env:
|
||||
- BUILD_SCRIPT=debian_docker.sh
|
||||
- RELEASE_LABEL="Debian 64-Bit Package"
|
||||
- DEBIAN_VERSION=stretch
|
||||
- DOCKER_USER=amd64
|
||||
- APT_INSTALL=clang
|
||||
- env:
|
||||
- BUILD_SCRIPT=windows_docker.sh
|
||||
- QT_SELECT=qt5-i686-w64-mingw32
|
||||
- RELEASE_LABEL="Windows 32-Bit Portable"
|
||||
- env:
|
||||
- BUILD_SCRIPT=windows_docker.sh
|
||||
- QT_SELECT=qt5-x86_64-w64-mingw32
|
||||
|
|
|
@ -55,6 +55,7 @@ ImportDialog::ImportDialog(QString profileName, QWidget *parent) :
|
|||
ui->cmdOK->setDefault(true);
|
||||
ui->cmdOK->setFocus();
|
||||
importAgreed = false;
|
||||
settingsLocked = false;
|
||||
watermarkAvatar = true;
|
||||
watermarkPicture = false;
|
||||
insideAvatarZone = false;
|
||||
|
@ -262,16 +263,31 @@ void ImportDialog::cropPicture()
|
|||
qreal screenRatio = AppEnv::screenRatio();
|
||||
|
||||
QDialog cropDialog(this);
|
||||
#if QT_VERSION >= 0x050000
|
||||
cropDialog.setObjectName(QStringLiteral("CropDialog"));
|
||||
#else
|
||||
cropDialog.setObjectName(QString::fromUtf8("CropDialog"));
|
||||
#endif
|
||||
cropDialog.setWindowTitle(tr("Crop Picture..."));
|
||||
cropDialog.setWindowFlags(cropDialog.windowFlags()^Qt::WindowContextHelpButtonHint);
|
||||
cropDialog.setModal(true);
|
||||
|
||||
QVBoxLayout cropLayout;
|
||||
#if QT_VERSION >= 0x050000
|
||||
cropLayout.setObjectName(QStringLiteral("CropLayout"));
|
||||
#else
|
||||
cropLayout.setObjectName(QString::fromUtf8("CropLayout"));
|
||||
#endif
|
||||
cropLayout.setContentsMargins(0, 0, 0, 0);
|
||||
cropLayout.setSpacing(0);
|
||||
cropDialog.setLayout(&cropLayout);
|
||||
|
||||
ImageCropper imageCropper(&cropDialog);
|
||||
#if QT_VERSION >= 0x050000
|
||||
imageCropper.setObjectName(QStringLiteral("ImageCropper"));
|
||||
#else
|
||||
imageCropper.setObjectName(QString::fromUtf8("ImageCropper"));
|
||||
#endif
|
||||
imageCropper.setBackgroundColor(Qt::black);
|
||||
imageCropper.setCroppingRectBorderColor(QColor(255, 255, 255, 127));
|
||||
imageCropper.setImage(QPixmap::fromImage(workImage, Qt::AutoColor));
|
||||
|
@ -280,9 +296,19 @@ void ImportDialog::cropPicture()
|
|||
cropLayout.addWidget(&imageCropper);
|
||||
|
||||
QHBoxLayout buttonLayout;
|
||||
#if QT_VERSION >= 0x050000
|
||||
cropLayout.setObjectName(QStringLiteral("ButtonLayout"));
|
||||
#else
|
||||
cropLayout.setObjectName(QString::fromUtf8("ButtonLayout"));
|
||||
#endif
|
||||
cropLayout.addLayout(&buttonLayout);
|
||||
|
||||
QPushButton cropButton(&cropDialog);
|
||||
#if QT_VERSION >= 0x050000
|
||||
cropButton.setObjectName(QStringLiteral("CropButton"));
|
||||
#else
|
||||
cropButton.setObjectName(QString::fromUtf8("CropButton"));
|
||||
#endif
|
||||
cropButton.setMinimumSize(0, 40 * screenRatio);
|
||||
cropButton.setText(tr("&Crop"));
|
||||
cropButton.setToolTip(tr("Crop Picture"));
|
||||
|
@ -292,7 +318,7 @@ void ImportDialog::cropPicture()
|
|||
|
||||
cropDialog.show();
|
||||
cropDialog.setFixedSize(cropDialog.sizeHint());
|
||||
if (cropDialog.exec() == true)
|
||||
if (cropDialog.exec() == QDialog::Accepted)
|
||||
{
|
||||
QImage *croppedImage = new QImage(imageCropper.cropImage().toImage());
|
||||
setImage(croppedImage);
|
||||
|
@ -413,6 +439,37 @@ void ImportDialog::setImage(QImage *image_)
|
|||
delete image_;
|
||||
}
|
||||
processImage();
|
||||
lockSettings(false);
|
||||
}
|
||||
|
||||
void ImportDialog::lockSettings(bool lock)
|
||||
{
|
||||
ui->cbAvatar->setDisabled(lock);
|
||||
ui->cbForceAvatarColour->setDisabled(lock);
|
||||
ui->cbIgnore->setDisabled(lock);
|
||||
ui->cbStretch->setDisabled(lock);
|
||||
ui->cbWatermark->setDisabled(lock);
|
||||
ui->cmdBackgroundChange->setDisabled(lock);
|
||||
ui->cmdBackgroundWipe->setDisabled(lock);
|
||||
ui->cmdColourChange->setDisabled(lock);
|
||||
ui->labBackgroundImage->setDisabled(lock);
|
||||
ui->labColour->setDisabled(lock);
|
||||
ui->gbSettings->setDisabled(lock);
|
||||
ui->gbBackground->setDisabled(lock);
|
||||
ui->cmdOK->setDisabled(lock);
|
||||
settingsLocked = lock;
|
||||
}
|
||||
|
||||
void ImportDialog::enableOverwriteMode()
|
||||
{
|
||||
setWindowTitle(QApplication::translate("ImageEditorDialog", "Overwrite Image..."));
|
||||
ui->cmdOK->setText(QApplication::translate("ImageEditorDialog", "&Overwrite"));
|
||||
ui->cmdOK->setToolTip(QApplication::translate("ImageEditorDialog", "Apply changes"));
|
||||
ui->cmdCancel->setText(QApplication::translate("ImageEditorDialog", "&Close"));
|
||||
ui->cmdCancel->setToolTip(QApplication::translate("ImageEditorDialog", "Discard changes"));
|
||||
ui->cmdCancel->setDefault(true);
|
||||
ui->cmdCancel->setFocus();
|
||||
lockSettings(true);
|
||||
}
|
||||
|
||||
bool ImportDialog::isImportAgreed()
|
||||
|
@ -420,6 +477,11 @@ bool ImportDialog::isImportAgreed()
|
|||
return importAgreed;
|
||||
}
|
||||
|
||||
bool ImportDialog::areSettingsLocked()
|
||||
{
|
||||
return settingsLocked;
|
||||
}
|
||||
|
||||
QString ImportDialog::getImageTitle()
|
||||
{
|
||||
return imageTitle;
|
||||
|
|
|
@ -36,7 +36,10 @@ public:
|
|||
QImage image();
|
||||
QString getImageTitle();
|
||||
void setImage(QImage *image);
|
||||
void lockSettings(bool lock);
|
||||
void enableOverwriteMode();
|
||||
bool isImportAgreed();
|
||||
bool areSettingsLocked();
|
||||
|
||||
private slots:
|
||||
void processImage();
|
||||
|
@ -69,6 +72,7 @@ private:
|
|||
bool watermarkPicture;
|
||||
bool watermarkAvatar;
|
||||
bool watermarkBlock;
|
||||
bool settingsLocked;
|
||||
bool importAgreed;
|
||||
int snapmaticResolutionLW;
|
||||
int snapmaticResolutionLH;
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "SnapmaticEditor.h"
|
||||
#include "StandardPaths.h"
|
||||
#include "PictureExport.h"
|
||||
#include "ImportDialog.h"
|
||||
#include "StringParser.h"
|
||||
#include "GlobalString.h"
|
||||
#include "UiModLabel.h"
|
||||
|
@ -940,25 +941,49 @@ void PictureDialog::editSnapmaticProperties()
|
|||
|
||||
void PictureDialog::editSnapmaticImage()
|
||||
{
|
||||
SnapmaticPicture *picture = smpic;
|
||||
ImageEditorDialog *imageEditor;
|
||||
QImage *currentImage = new QImage(smpic->getImage());
|
||||
ImportDialog *importDialog;
|
||||
if (rqFullscreen && fullscreenWidget != nullptr)
|
||||
{
|
||||
imageEditor = new ImageEditorDialog(picture, profileName, fullscreenWidget);
|
||||
importDialog = new ImportDialog(profileName, fullscreenWidget);
|
||||
}
|
||||
else
|
||||
{
|
||||
imageEditor = new ImageEditorDialog(picture, profileName, this);
|
||||
importDialog = new ImportDialog(profileName, this);
|
||||
}
|
||||
imageEditor->setWindowIcon(windowIcon());
|
||||
imageEditor->setModal(true);
|
||||
#ifndef Q_OS_ANDROID
|
||||
imageEditor->show();
|
||||
#else
|
||||
imageEditor->showMaximized();
|
||||
#endif
|
||||
imageEditor->exec();
|
||||
delete imageEditor;
|
||||
importDialog->setWindowIcon(windowIcon());
|
||||
importDialog->setImage(currentImage);
|
||||
importDialog->enableOverwriteMode();
|
||||
importDialog->setModal(true);
|
||||
importDialog->exec();
|
||||
if (importDialog->isImportAgreed())
|
||||
{
|
||||
const QByteArray previousPicture = smpic->getPictureStream();
|
||||
bool success = smpic->setImage(importDialog->image());
|
||||
if (success)
|
||||
{
|
||||
QString currentFilePath = smpic->getPictureFilePath();
|
||||
QString originalFilePath = smpic->getOriginalPictureFilePath();
|
||||
QString backupFileName = originalFilePath % ".bak";
|
||||
if (!QFile::exists(backupFileName))
|
||||
{
|
||||
QFile::copy(currentFilePath, backupFileName);
|
||||
}
|
||||
if (!smpic->exportPicture(currentFilePath))
|
||||
{
|
||||
smpic->setPictureStream(previousPicture);
|
||||
QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of I/O Error"));
|
||||
return;
|
||||
}
|
||||
smpic->emitCustomSignal("PictureUpdated");
|
||||
}
|
||||
else
|
||||
{
|
||||
QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of Image Error"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
delete importDialog;
|
||||
}
|
||||
|
||||
void PictureDialog::editSnapmaticRawJson()
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "PictureDialog.h"
|
||||
#include "PictureExport.h"
|
||||
#include "StringParser.h"
|
||||
#include "ImportDialog.h"
|
||||
#include "AppEnv.h"
|
||||
#include "config.h"
|
||||
#include <QStringBuilder>
|
||||
|
@ -320,11 +321,40 @@ void SnapmaticWidget::editSnapmaticRawJson()
|
|||
|
||||
void SnapmaticWidget::editSnapmaticImage()
|
||||
{
|
||||
ImageEditorDialog *imageEditor = new ImageEditorDialog(smpic, profileName, this);
|
||||
imageEditor->setModal(true);
|
||||
imageEditor->show();
|
||||
imageEditor->exec();
|
||||
delete imageEditor;
|
||||
QImage *currentImage = new QImage(smpic->getImage());
|
||||
ImportDialog *importDialog = new ImportDialog(profileName, this);
|
||||
importDialog->setImage(currentImage);
|
||||
importDialog->enableOverwriteMode();
|
||||
importDialog->setModal(true);
|
||||
importDialog->exec();
|
||||
if (importDialog->isImportAgreed())
|
||||
{
|
||||
const QByteArray previousPicture = smpic->getPictureStream();
|
||||
bool success = smpic->setImage(importDialog->image());
|
||||
if (success)
|
||||
{
|
||||
QString currentFilePath = smpic->getPictureFilePath();
|
||||
QString originalFilePath = smpic->getOriginalPictureFilePath();
|
||||
QString backupFileName = originalFilePath % ".bak";
|
||||
if (!QFile::exists(backupFileName))
|
||||
{
|
||||
QFile::copy(currentFilePath, backupFileName);
|
||||
}
|
||||
if (!smpic->exportPicture(currentFilePath))
|
||||
{
|
||||
smpic->setPictureStream(previousPicture);
|
||||
QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of I/O Error"));
|
||||
return;
|
||||
}
|
||||
smpic->emitCustomSignal("PictureUpdated");
|
||||
}
|
||||
else
|
||||
{
|
||||
QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of Image Error"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
delete importDialog;
|
||||
}
|
||||
|
||||
void SnapmaticWidget::openMapViewer()
|
||||
|
|
135
res/gta5sync.ts
135
res/gta5sync.ts
|
@ -167,6 +167,7 @@ Pictures and Savegames</source>
|
|||
<name>ImageEditorDialog</name>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -182,37 +183,49 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -252,8 +265,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -270,8 +283,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -326,67 +339,67 @@ Pictures and Savegames</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -846,80 +859,80 @@ Y: %2</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1128,8 +1141,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1140,12 +1153,12 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1165,16 +1178,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1182,16 +1195,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<source>Can't import %1 because file can't be open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1701,9 +1714,9 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1784,9 +1797,9 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1978,8 +1991,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2039,22 +2052,22 @@ Press 1 for Default View</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2255,14 +2268,14 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -178,11 +178,16 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation>Snapmatic Bild Editor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Bild überschreiben...</translation>
|
||||
</message>
|
||||
|
@ -198,31 +203,39 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation>Änderungen übernehmen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Überschreiben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation>Änderungen verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation>S&chließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
|
||||
</message>
|
||||
|
@ -262,8 +275,8 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Hintergrundfarbe: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -289,7 +302,7 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
<translation>Hintergrundbild entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Hintergrundbild: %1</translation>
|
||||
</message>
|
||||
|
@ -335,69 +348,69 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Hintergrundbild:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation>Neues Bild &importieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation>Bild zu&schneiden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation>Bild zuschneiden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation>Zu&schneiden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation>Bild zuschneiden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Snapmatic Avatar Zone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Farbe auswählen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Datei</translation>
|
||||
|
@ -867,37 +880,37 @@ Y: %2</translation>
|
|||
<translation>Exportieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Als &Bild exportieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Als &Snapmatic exportieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>Eigenschaften bearb&eiten...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>Bild &überschreiben...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>&Kartenansicht öffnen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
|
@ -906,39 +919,39 @@ Taste 2 - Overlay umschalten
|
|||
Pfeiltasten - Navigieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation>Snapmatic Bildansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation>Fehlgeschlagen beim %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation>Keine Crew</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation>Keine Spieler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation>Avatar Vorschaumodus
|
||||
Drücke 1 für Standardmodus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation>Unbekannter Standort</translation>
|
||||
</message>
|
||||
|
@ -1040,7 +1053,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>&JSON Editor öffnen...</translation>
|
||||
|
@ -1155,8 +1168,8 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1167,12 +1180,12 @@ Drücke 1 für Standardmodus</translation>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1209,16 +1222,16 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation>Alle Bilddateien (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1253,16 +1266,16 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<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="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<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>
|
||||
|
@ -1726,9 +1739,9 @@ Drücke 1 für Standardmodus</translation>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation>Snapmatic Eigenschaften</translation>
|
||||
</message>
|
||||
|
@ -1867,9 +1880,9 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
|
||||
</message>
|
||||
|
@ -1993,23 +2006,23 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation>Bild löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
|
||||
</message>
|
||||
|
@ -2079,7 +2092,7 @@ Drücke 1 für Standardmodus</translation>
|
|||
<translation>Bild exportieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation>Fehlgeschlagen beim Löschen von %1 von deinen Snapmatic Bildern</translation>
|
||||
</message>
|
||||
|
@ -2305,14 +2318,14 @@ Drücke 1 für Standardmodus</translation>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Im Spiel anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Im Spiel ausblenden</translation>
|
||||
</message>
|
||||
|
|
|
@ -168,11 +168,16 @@ Pictures and Savegames</source>
|
|||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -188,31 +193,39 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -226,8 +239,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Background Color: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -269,7 +282,7 @@ Pictures and Savegames</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -325,68 +338,68 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Select Color...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation></translation>
|
||||
|
@ -846,74 +859,74 @@ Y: %2</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation></translation>
|
||||
|
@ -1022,7 +1035,7 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation></translation>
|
||||
|
@ -1148,8 +1161,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1160,12 +1173,12 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1208,16 +1221,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1257,16 +1270,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<source>Can't import %1 because file can't be open</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation></translation>
|
||||
|
@ -1701,9 +1714,9 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1836,9 +1849,9 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1978,8 +1991,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -2039,22 +2052,22 @@ Press 1 for Default View</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -2280,14 +2293,14 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
|
|
@ -178,11 +178,16 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation>Éditeur d'images Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Remplacer l'image...</translation>
|
||||
</message>
|
||||
|
@ -198,31 +203,39 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Appliquer les changements</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Remplacer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Annuler les changements</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation>&Fermer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation>Échec du patch Snapmatic : I/O Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation>Échec du patch Snapmatic : Image Error</translation>
|
||||
</message>
|
||||
|
@ -262,8 +275,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Couleur de fond : <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -289,7 +302,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Image de fond : %1</translation>
|
||||
</message>
|
||||
|
@ -335,69 +348,69 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Image de fond :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Zone d'Avatar Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Choisir une couleur...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Fichier</translation>
|
||||
|
@ -947,37 +960,37 @@ Y : %2</translation>
|
|||
<translation>Fichier invalide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Exporter comme &image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Exporter comme &Snapmatic...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>&Remplacer l'image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>Modifier les &propriétés...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
|
@ -986,39 +999,39 @@ Touche 2 - Activer/désactiver l'overlay
|
|||
Touches fléchées - Naviguer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation>Visionneuse de photo Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation>Echec de %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation>Aucun crew</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation>Aucun joueurs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation>Mode Aperçu Avatar
|
||||
Appuyer sur 1 pour le mode par défaut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation>Emplacement inconnu</translation>
|
||||
</message>
|
||||
|
@ -1040,7 +1053,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Échec de l'export de la photo Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>Ouvrir l'éditeur &JSON...</translation>
|
||||
|
@ -1166,8 +1179,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1178,12 +1191,12 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1215,16 +1228,16 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation>Toutes les images (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1271,16 +1284,16 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<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="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<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>
|
||||
|
@ -1727,9 +1740,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation>Propriétés Snapmatic</translation>
|
||||
</message>
|
||||
|
@ -1870,9 +1883,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
|
||||
</message>
|
||||
|
@ -2006,8 +2019,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation>Supprimer la photo</translation>
|
||||
</message>
|
||||
|
@ -2017,22 +2030,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<translation>Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation>Supprimer %1 ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation>Impossible de supprimer %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>%1 n'a pas pu être rendu invisible en jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>%1 n'a pas pu être rendu visible en jeu</translation>
|
||||
</message>
|
||||
|
@ -2308,14 +2321,14 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Visible en jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Invisible en jeu</translation>
|
||||
</message>
|
||||
|
|
|
@ -180,11 +180,16 @@ Pictures and Savegames</source>
|
|||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation>Редактор картинок Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Перезаписать картинку...</translation>
|
||||
</message>
|
||||
|
@ -200,31 +205,39 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Применить изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Перезаписать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Отвергнуть изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation>&Закрыть</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
|
||||
</message>
|
||||
|
@ -264,8 +277,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Цвет фона: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -291,7 +304,7 @@ Pictures and Savegames</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Фоновая картинка: %1</translation>
|
||||
</message>
|
||||
|
@ -339,68 +352,68 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Фоновая картинка:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Зона Snapmatic Аватарки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Выбрать цвет...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Файл</translation>
|
||||
|
@ -872,37 +885,37 @@ Y: %2</translation>
|
|||
<translation>Экспортировать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Экспортировать как &картинку...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Экспортировать как &Snapmatic...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>&Перезаписать картинку...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>&Изменить свойства...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>Открыть &карту...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
|
@ -911,39 +924,39 @@ Arrow Keys - Navigate</source>
|
|||
Стрелки - Навигация</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation>Просмотрщик фотографий Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation>Ошибка при %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation>Вне банды</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation>Игроков нет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation>Режим просмотра аватарок
|
||||
Нажмите 1 для стандартного просмотра</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation>Неизвестное место</translation>
|
||||
</message>
|
||||
|
@ -1045,7 +1058,7 @@ Press 1 for Default View</source>
|
|||
<translation>Картинки Snapmatic (PGTA*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>Открыть &редактор JSON...</translation>
|
||||
|
@ -1160,8 +1173,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1172,12 +1185,12 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1209,8 +1222,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1262,24 +1275,24 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation>Все файлы изображений (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<source>Can't import %1 because file can't be open</source>
|
||||
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
||||
|
@ -1733,9 +1746,9 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation>Свойства Snapmatic</translation>
|
||||
</message>
|
||||
|
@ -1874,9 +1887,9 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
|
||||
</message>
|
||||
|
@ -2005,28 +2018,28 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation>Удалить картинку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation>Уверены, что хотите удалить %1 из коллекции картинок Snapmatic?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation>Не удалось удалить %1 из колелкции картинок Snapmatic </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>Не удалось скрыть %1 из списка картинок Snapmatic в игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
|
||||
</message>
|
||||
|
@ -2312,14 +2325,14 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Показывать в игре</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Скрыть в игре</translation>
|
||||
</message>
|
||||
|
|
|
@ -177,6 +177,7 @@ Pictures and Savegames</source>
|
|||
<name>ImageEditorDialog</name>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Перезаписати зображення...</translation>
|
||||
</message>
|
||||
|
@ -192,37 +193,49 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Застосувати зміни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Перезаписати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Скасувати зміни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation>&Закрити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation>Редактор Snapmatic зображень</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
|
||||
</message>
|
||||
|
@ -262,8 +275,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Фоновий колір: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -280,8 +293,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Фонове зображення:</translation>
|
||||
</message>
|
||||
|
@ -336,68 +349,68 @@ Pictures and Savegames</source>
|
|||
<translation>&Скасувати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Зона Snapmatic Аватару</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Вибір кольору...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Фонове зображення: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Файл</translation>
|
||||
|
@ -861,43 +874,43 @@ Y: %2</translation>
|
|||
<translation>&Закрити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>Експортувати як &зображення...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>Експортувати як &Snapmatic...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>&Змінити властивості...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>&Перезаписати зображення...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>Відкрити &карту...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>Відкрити редактор &JSON...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
|
@ -906,37 +919,37 @@ Arrow Keys - Navigate</source>
|
|||
Стрілки - Навігація</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation>Переглядач фотографій Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation>Помилка на%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation>Гравців немає</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation>Банди немає</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation>Невідома локація</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation>Режим для аватарок
|
||||
|
@ -1146,8 +1159,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1158,12 +1171,12 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1183,16 +1196,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation>Файли зображень (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1200,16 +1213,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<source>Can't import %1 because file can't be open</source>
|
||||
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
||||
|
@ -1727,9 +1740,9 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation>Властивості Snapmatic</translation>
|
||||
</message>
|
||||
|
@ -1810,9 +1823,9 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
|
||||
</message>
|
||||
|
@ -2004,8 +2017,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation>Видалити фото</translation>
|
||||
</message>
|
||||
|
@ -2065,22 +2078,22 @@ Press 1 for Default View</source>
|
|||
<translation>&Зняти виділення усіх</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation>Ви дійсно бажаєте видалити %1 з ваших Snapmatic фотографій?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation>Не вдалося видалити%1 з ваших Snapmatic фотографій</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>Не вдалося сховати %1 Snapmatic у грі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>Не вдалося показати %1 Snapmatic у грі</translation>
|
||||
</message>
|
||||
|
@ -2281,14 +2294,14 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>Показати у грі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>Сховати у грі</translation>
|
||||
</message>
|
||||
|
|
|
@ -176,6 +176,7 @@ Pictures and Savegames</source>
|
|||
<name>ImageEditorDialog</name>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>修改圖片...</translation>
|
||||
</message>
|
||||
|
@ -191,37 +192,49 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">套用變更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>修改(&O)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">捨棄變更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<source>&Close</source>
|
||||
<translation>關閉(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Snapmatic Image Editor</source>
|
||||
<translation>Snapmatic 圖片編輯器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="975"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="346"/>
|
||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||
<translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="200"/>
|
||||
<location filename="../PictureDialog.cpp" line="982"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="353"/>
|
||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||
<translation>圖片錯誤,Snapmatic 圖片更新失敗</translation>
|
||||
</message>
|
||||
|
@ -261,8 +274,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>背景顏色: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -279,8 +292,8 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="571"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>背景圖片:</translation>
|
||||
</message>
|
||||
|
@ -335,67 +348,67 @@ Pictures and Savegames</source>
|
|||
<translation>取消(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="111"/>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="185"/>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ProfileInterface.cpp" line="668"/>
|
||||
<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="212"/>
|
||||
<location filename="../ImportDialog.cpp" line="213"/>
|
||||
<location filename="../ProfileInterface.cpp" line="687"/>
|
||||
<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="265"/>
|
||||
<location filename="../ImportDialog.cpp" line="271"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="287"/>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="288"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Snapmatic 大頭貼區域</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="438"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<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="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>選擇顏色...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>背景圖片: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="556"/>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>文件</translation>
|
||||
|
@ -859,43 +872,43 @@ Y: %2</translation>
|
|||
<translation>關閉(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="152"/>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1434"/>
|
||||
<source>Export as &Picture...</source>
|
||||
<translation>匯出成圖片(&P)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="153"/>
|
||||
<location filename="../PictureDialog.cpp" line="154"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1435"/>
|
||||
<source>Export as &Snapmatic...</source>
|
||||
<translation>匯出成 Snapmatic(&S)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="155"/>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1428"/>
|
||||
<source>&Edit Properties...</source>
|
||||
<translation>編輯屬性(&E) ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="156"/>
|
||||
<location filename="../PictureDialog.cpp" line="157"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1429"/>
|
||||
<source>&Overwrite Image...</source>
|
||||
<translation>修改圖片(&O)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="158"/>
|
||||
<location filename="../PictureDialog.cpp" line="159"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1431"/>
|
||||
<source>Open &Map Viewer...</source>
|
||||
<translation>開啟地圖檢視器(&M)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="160"/>
|
||||
<location filename="../PictureDialog.cpp" line="161"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1432"/>
|
||||
<source>Open &JSON Editor...</source>
|
||||
<translation>開啟 JSON 編輯器(&J)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="557"/>
|
||||
<location filename="../PictureDialog.cpp" line="558"/>
|
||||
<source>Key 1 - Avatar Preview Mode
|
||||
Key 2 - Toggle Overlay
|
||||
Arrow Keys - Navigate</source>
|
||||
|
@ -904,37 +917,37 @@ Arrow Keys - Navigate</source>
|
|||
方向鍵 - 導覽</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Snapmatic Picture Viewer</source>
|
||||
<translation>Snapmatic 圖片檢視器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="618"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="619"/>
|
||||
<location filename="../PictureDialog.cpp" line="645"/>
|
||||
<source>Failed at %1</source>
|
||||
<translation>失敗: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="783"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="784"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="240"/>
|
||||
<source>No Players</source>
|
||||
<translation>無</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="763"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<location filename="../PictureDialog.cpp" line="764"/>
|
||||
<source>No Crew</source>
|
||||
<translation>無</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="643"/>
|
||||
<location filename="../PictureDialog.cpp" line="644"/>
|
||||
<source>Unknown Location</source>
|
||||
<translation>未知地點</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PictureDialog.cpp" line="729"/>
|
||||
<location filename="../PictureDialog.cpp" line="730"/>
|
||||
<source>Avatar Preview Mode
|
||||
Press 1 for Default View</source>
|
||||
<translation>大頭貼預覽模式
|
||||
|
@ -1144,8 +1157,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="316"/>
|
||||
<location filename="../ImportDialog.cpp" line="510"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1156,12 +1169,12 @@ Press 1 for Default View</source>
|
|||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="317"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="511"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="343"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="573"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1181,16 +1194,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="327"/>
|
||||
<location filename="../ImportDialog.cpp" line="521"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ProfileInterface.cpp" line="502"/>
|
||||
<source>All image files (%1)</source>
|
||||
<translation>所有圖片 (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="328"/>
|
||||
<location filename="../ImportDialog.cpp" line="522"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1198,16 +1211,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="348"/>
|
||||
<location filename="../ImportDialog.cpp" line="542"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ProfileInterface.cpp" line="725"/>
|
||||
<source>Can't import %1 because file can't be open</source>
|
||||
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="357"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
||||
|
@ -1721,9 +1734,9 @@ Press 1 for Default View</source>
|
|||
<location filename="../JsonEditorDialog.cpp" line="175"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../JsonEditorDialog.cpp" line="193"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Snapmatic Properties</source>
|
||||
<translation>Snapmatic 屬性</translation>
|
||||
</message>
|
||||
|
@ -1804,9 +1817,9 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.cpp" line="181"/>
|
||||
<location filename="../PictureDialog.cpp" line="906"/>
|
||||
<location filename="../PictureDialog.cpp" line="907"/>
|
||||
<location filename="../SnapmaticEditor.cpp" line="327"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="357"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="387"/>
|
||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||
<translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation>
|
||||
</message>
|
||||
|
@ -1998,8 +2011,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.ui" line="152"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Delete picture</source>
|
||||
<translation>刪除圖片</translation>
|
||||
</message>
|
||||
|
@ -2059,22 +2072,22 @@ Press 1 for Default View</source>
|
|||
<translation>取消選擇全部(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="157"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="158"/>
|
||||
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
|
||||
<translation>你確定要刪除Snapmatic 圖片 %1 嗎?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="166"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="167"/>
|
||||
<source>Failed at deleting %1 from your Snapmatic pictures</source>
|
||||
<translation>刪除 Snapmatic 圖片 %1 失敗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>在遊戲中隱藏圖片 %1 失敗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
|
||||
<translation>在遊戲中顯示圖片 %1 失敗</translation>
|
||||
</message>
|
||||
|
@ -2275,14 +2288,14 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1349"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1363"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="298"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="299"/>
|
||||
<source>Show In-game</source>
|
||||
<translation>在遊戲中顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="1383"/>
|
||||
<location filename="../ProfileInterface.cpp" line="1397"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="290"/>
|
||||
<location filename="../SnapmaticWidget.cpp" line="291"/>
|
||||
<source>Hide In-game</source>
|
||||
<translation>在遊戲中隱藏</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in a new issue