ImportDialog improved
This commit is contained in:
parent
193bb60caa
commit
b02f06ae97
16 changed files with 1060 additions and 278 deletions
170
ImportDialog.cpp
170
ImportDialog.cpp
|
@ -24,6 +24,7 @@
|
|||
#include "AppEnv.h"
|
||||
#include "config.h"
|
||||
#include <QStringBuilder>
|
||||
#include <QInputDialog>
|
||||
#include <QImageReader>
|
||||
#include <QColorDialog>
|
||||
#include <QFileDialog>
|
||||
|
@ -62,6 +63,13 @@ ImportDialog::ImportDialog(QString profileName, QWidget *parent) :
|
|||
avatarAreaImage = QImage(":/img/avatarareaimport.png");
|
||||
selectedColour = QColor::fromRgb(0, 0, 0, 255);
|
||||
|
||||
// Set Import Settings
|
||||
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
||||
settings.beginGroup("Import");
|
||||
QString currentProfile = settings.value("Profile", "Default").toString();
|
||||
settings.endGroup();
|
||||
processSettings(currentProfile);
|
||||
|
||||
// Set Icon for OK Button
|
||||
if (QIcon::hasThemeIcon("dialog-ok"))
|
||||
{
|
||||
|
@ -111,6 +119,9 @@ ImportDialog::ImportDialog(QString profileName, QWidget *parent) :
|
|||
optionsMenu = new QMenu(this);
|
||||
optionsMenu->addAction(tr("&Import new Picture..."), this, SLOT(importNewPicture()));
|
||||
optionsMenu->addAction(tr("&Crop Picture..."), this, SLOT(cropPicture()));
|
||||
optionsMenu->addSeparator();
|
||||
optionsMenu->addAction(tr("&Load Settings..."), this, SLOT(loadImportSettings()));
|
||||
optionsMenu->addAction(tr("&Save Settings..."), this, SLOT(saveImportSettings()));
|
||||
ui->cmdOptions->setMenu(optionsMenu);
|
||||
|
||||
setMaximumSize(sizeHint());
|
||||
|
@ -258,6 +269,75 @@ void ImportDialog::processWatermark(QPainter *snapmaticPainter)
|
|||
snapmaticPainter->drawImage(0, 0, textWatermark);
|
||||
}
|
||||
|
||||
void ImportDialog::processSettings(QString settingsProfile, bool setDefault)
|
||||
{
|
||||
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
||||
settings.beginGroup("Import");
|
||||
if (setDefault)
|
||||
{
|
||||
settings.setValue("Profile", settingsProfile);
|
||||
}
|
||||
if (settingsProfile == "Default")
|
||||
{
|
||||
watermarkAvatar = true;
|
||||
watermarkPicture = false;
|
||||
selectedColour = QColor::fromRgb(0, 0, 0, 255);
|
||||
backImage = QImage();
|
||||
ui->cbStretch->setChecked(false);
|
||||
ui->cbForceAvatarColour->setChecked(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
settings.beginGroup(settingsProfile);
|
||||
watermarkAvatar = settings.value("WatermarkAvatar", true).toBool();
|
||||
watermarkPicture = settings.value("WatermarkPicture", false).toBool();
|
||||
backImage = qvariant_cast<QImage>(settings.value("BackgroundImage", QImage()));
|
||||
selectedColour = qvariant_cast<QColor>(settings.value("SelectedColour", QColor::fromRgb(0, 0, 0, 255)));
|
||||
ui->cbStretch->setChecked(settings.value("BackgroundStretch", false).toBool());
|
||||
ui->cbForceAvatarColour->setChecked(settings.value("ForceAvatarColour", false).toBool());
|
||||
settings.endGroup();
|
||||
}
|
||||
if (!workImage.isNull())
|
||||
{
|
||||
if (ui->cbAvatar->isChecked())
|
||||
{
|
||||
ui->cbWatermark->setChecked(watermarkAvatar);
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->cbWatermark->setChecked(watermarkPicture);
|
||||
}
|
||||
}
|
||||
ui->labColour->setText(tr("Background Colour: <span style=\"color: %1\">%1</span>").arg(selectedColour.name()));
|
||||
if (!backImage.isNull())
|
||||
{
|
||||
ui->labBackgroundImage->setText(tr("Background Image: %1").arg(tr("Storage", "Background Image: Storage")));
|
||||
ui->cmdBackgroundWipe->setVisible(true);
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->labBackgroundImage->setText(tr("Background Image:"));
|
||||
ui->cmdBackgroundWipe->setVisible(false);
|
||||
}
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
void ImportDialog::saveSettings(QString settingsProfile)
|
||||
{
|
||||
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
||||
settings.beginGroup("Import");
|
||||
settings.beginGroup(settingsProfile);
|
||||
settings.setValue("WatermarkAvatar", watermarkAvatar);
|
||||
settings.setValue("WatermarkPicture", watermarkPicture);
|
||||
settings.setValue("BackgroundImage", backImage);
|
||||
settings.setValue("SelectedColour", selectedColour);
|
||||
settings.setValue("BackgroundStretch", ui->cbStretch->isChecked());
|
||||
settings.setValue("ForceAvatarColour", ui->cbForceAvatarColour->isChecked());
|
||||
settings.endGroup();
|
||||
settings.setValue("Profile", settingsProfile);
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
void ImportDialog::cropPicture()
|
||||
{
|
||||
qreal screenRatio = AppEnv::screenRatio();
|
||||
|
@ -394,6 +474,96 @@ fileDialogPreOpen: //Work?
|
|||
settings.endGroup();
|
||||
}
|
||||
|
||||
void ImportDialog::loadImportSettings()
|
||||
{
|
||||
if (settingsLocked)
|
||||
{
|
||||
QMessageBox::information(this, tr("Load Settings..."), tr("Please import a new picture first"));
|
||||
return;
|
||||
}
|
||||
bool ok;
|
||||
QStringList profileList;
|
||||
profileList << tr("Default", "Default as Default Profile")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("1")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("2")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("3")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("4")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("5");
|
||||
QString sProfile = QInputDialog::getItem(this, tr("Load Settings..."), tr("Please select your settings profile"), profileList, 0, false, &ok, windowFlags());
|
||||
if (ok)
|
||||
{
|
||||
QString pProfile;
|
||||
if (sProfile == tr("Default", "Default as Default Profile"))
|
||||
{
|
||||
pProfile = "Default";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("1"))
|
||||
{
|
||||
pProfile = "Profile 1";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("2"))
|
||||
{
|
||||
pProfile = "Profile 2";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("3"))
|
||||
{
|
||||
pProfile = "Profile 3";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("4"))
|
||||
{
|
||||
pProfile = "Profile 4";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("5"))
|
||||
{
|
||||
pProfile = "Profile 5";
|
||||
}
|
||||
processSettings(pProfile, true);
|
||||
processImage();
|
||||
}
|
||||
}
|
||||
|
||||
void ImportDialog::saveImportSettings()
|
||||
{
|
||||
if (settingsLocked)
|
||||
{
|
||||
QMessageBox::information(this, tr("Save Settings..."), tr("Please import a new picture first"));
|
||||
return;
|
||||
}
|
||||
bool ok;
|
||||
QStringList profileList;
|
||||
profileList << tr("Profile %1", "Profile %1 as Profile 1").arg("1")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("2")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("3")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("4")
|
||||
<< tr("Profile %1", "Profile %1 as Profile 1").arg("5");
|
||||
QString sProfile = QInputDialog::getItem(this, tr("Save Settings..."), tr("Please select your settings profile"), profileList, 0, false, &ok, windowFlags());
|
||||
if (ok)
|
||||
{
|
||||
QString pProfile;
|
||||
if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("1"))
|
||||
{
|
||||
pProfile = "Profile 1";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("2"))
|
||||
{
|
||||
pProfile = "Profile 2";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("3"))
|
||||
{
|
||||
pProfile = "Profile 3";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("4"))
|
||||
{
|
||||
pProfile = "Profile 4";
|
||||
}
|
||||
else if (sProfile == tr("Profile %1", "Profile %1 as Profile 1").arg("5"))
|
||||
{
|
||||
pProfile = "Profile 5";
|
||||
}
|
||||
saveSettings(pProfile);
|
||||
}
|
||||
}
|
||||
|
||||
QImage ImportDialog::image()
|
||||
{
|
||||
return newImage;
|
||||
|
|
|
@ -45,6 +45,8 @@ private slots:
|
|||
void processImage();
|
||||
void cropPicture();
|
||||
void importNewPicture();
|
||||
void loadImportSettings();
|
||||
void saveImportSettings();
|
||||
void on_cbIgnore_toggled(bool checked);
|
||||
void on_cbAvatar_toggled(bool checked);
|
||||
void on_cmdCancel_clicked();
|
||||
|
@ -77,6 +79,8 @@ private:
|
|||
int snapmaticResolutionLW;
|
||||
int snapmaticResolutionLH;
|
||||
void processWatermark(QPainter *snapmaticPainter);
|
||||
void processSettings(QString settingsProfile, bool setDefault = false);
|
||||
void saveSettings(QString settingsProfile);
|
||||
};
|
||||
|
||||
#endif // IMPORTDIALOG_H
|
||||
|
|
|
@ -236,6 +236,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Apply changes</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Apply</string>
|
||||
</property>
|
||||
|
@ -249,6 +252,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Discard changes</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Cancel</string>
|
||||
</property>
|
||||
|
|
2
config.h
2
config.h
|
@ -28,7 +28,7 @@
|
|||
#endif
|
||||
|
||||
#ifndef GTA5SYNC_APPVENDORLINK
|
||||
#define GTA5SYNC_APPVENDORLINK "https://github.com/Syping/"
|
||||
#define GTA5SYNC_APPVENDORLINK "g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg=="
|
||||
#endif
|
||||
|
||||
#ifndef GTA5SYNC_APPSTR
|
||||
|
|
159
res/gta5sync.ts
159
res/gta5sync.ts
|
@ -167,7 +167,7 @@ Pictures and Savegames</source>
|
|||
<name>ImageEditorDialog</name>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -183,25 +183,25 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -265,8 +265,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -283,8 +284,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -339,67 +341,140 @@ Pictures and Savegames</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1141,8 +1216,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1153,12 +1228,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1178,16 +1253,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1195,16 +1270,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1777,11 +1852,21 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -46,7 +46,7 @@ Läuft auf Qt %6<br/>
|
|||
<location filename="../AboutDialog.cpp" line="50"/>
|
||||
<source>TRANSLATOR</source>
|
||||
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
|
||||
<translation>Syping,https://github.com/Syping/</translation>
|
||||
<translation>Syping,g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg==</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../AboutDialog.cpp" line="73"/>
|
||||
|
@ -187,7 +187,7 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Bild überschreiben...</translation>
|
||||
</message>
|
||||
|
@ -203,25 +203,25 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<source>Apply changes</source>
|
||||
<translation>Änderungen übernehmen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Überschreiben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<source>Discard changes</source>
|
||||
<translation>Änderungen verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation>S&chließen</translation>
|
||||
</message>
|
||||
|
@ -275,8 +275,9 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Hintergrundfarbe: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -302,7 +303,8 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
<translation>Hintergrundbild entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Hintergrundbild: %1</translation>
|
||||
</message>
|
||||
|
@ -348,69 +350,142 @@ Snapmatic Bilder und Spielständen</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Hintergrundbild:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation>Neues Bild &importieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation>Bild zu&schneiden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation>Einstellungen &laden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation>Einstellungen &speichern...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation>Speicher</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation>Bild zuschneiden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation>Zu&schneiden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation>Bild zuschneiden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation>Bitte importiere ein neues Bild zuerst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation>Standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation>Profil %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation>Einstellungen laden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation>Bitte wähle dein Einstellungsprofil aus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation>Einstellungen speichern...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Snapmatic Avatar Zone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Farbe auswählen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Datei</translation>
|
||||
|
@ -1168,8 +1243,8 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1180,12 +1255,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1222,16 +1297,16 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1266,16 +1341,16 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<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>
|
||||
|
@ -1836,11 +1911,21 @@ Drücke 1 für Standardmodus</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation>Änderungen übernehmen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation>&Übernehmen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation>Änderungen verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation>Abbre&chen</translation>
|
||||
</message>
|
||||
|
|
|
@ -177,7 +177,7 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -193,25 +193,25 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -239,8 +239,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Background Color: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -282,7 +283,8 @@ Pictures and Savegames</source>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -338,68 +340,141 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Select Color...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation></translation>
|
||||
|
@ -1161,8 +1236,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1173,12 +1248,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1221,16 +1296,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1270,16 +1345,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation></translation>
|
||||
|
@ -1805,11 +1880,21 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -187,7 +187,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Remplacer l'image...</translation>
|
||||
</message>
|
||||
|
@ -203,25 +203,25 @@ 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"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<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"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Remplacer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<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"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation>&Fermer</translation>
|
||||
</message>
|
||||
|
@ -275,8 +275,9 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Couleur de fond : <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -302,7 +303,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Image de fond : %1</translation>
|
||||
</message>
|
||||
|
@ -348,69 +350,142 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Image de fond :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Zone d'Avatar Snapmatic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Choisir une couleur...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Fichier</translation>
|
||||
|
@ -1179,8 +1254,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1191,12 +1266,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1228,16 +1303,16 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1284,16 +1359,16 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<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>
|
||||
|
@ -1837,11 +1912,21 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Appliquer les changements</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation>A&ppliquer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Annuler les changements</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation>A&nnuler</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -98,7 +98,8 @@ Pictures and Savegames</source>
|
|||
<message>
|
||||
<location filename="../config.h" line="88"/>
|
||||
<source>Custom</source>
|
||||
<translatorcomment>Не известен контекст</translatorcomment>
|
||||
<translatorcomment>Не известен контекст
|
||||
</translatorcomment>
|
||||
<translation>Своя</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
@ -116,7 +117,8 @@ Pictures and Savegames</source>
|
|||
<message>
|
||||
<location filename="../ExportDialog.ui" line="14"/>
|
||||
<source>Dialog</source>
|
||||
<translatorcomment>Возможно не это имелось ввиду, немецкого перевода нету</translatorcomment>
|
||||
<translatorcomment>Возможно не это имелось ввиду, немецкого перевода нету
|
||||
</translatorcomment>
|
||||
<translation>Диалоговое окно</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -189,14 +191,14 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Перезаписать картинку...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="59"/>
|
||||
<source>Import picture</source>
|
||||
<translation type="unfinished">Импортировать картинку</translation>
|
||||
<translation>Импортировать картинку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="62"/>
|
||||
|
@ -205,25 +207,25 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Применить изменения</translation>
|
||||
<translation>Применить изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Перезаписать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Отвергнуть изменения</translation>
|
||||
<translation>Отменить изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation>&Закрыть</translation>
|
||||
</message>
|
||||
|
@ -277,15 +279,16 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Цвет фона: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="174"/>
|
||||
<source>Select background colour</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Выберите цвет фона</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="177"/>
|
||||
|
@ -296,7 +299,7 @@ Pictures and Savegames</source>
|
|||
<message>
|
||||
<location filename="../ImportDialog.ui" line="227"/>
|
||||
<source>Select background image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Выбрать фоновое изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="237"/>
|
||||
|
@ -304,14 +307,16 @@ Pictures and Savegames</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Фоновая картинка: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="240"/>
|
||||
<source>X</source>
|
||||
<translatorcomment>latin X</translatorcomment>
|
||||
<translatorcomment>latin X
|
||||
</translatorcomment>
|
||||
<translation>X</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -347,73 +352,147 @@ Pictures and Savegames</source>
|
|||
<message>
|
||||
<location filename="../ImportDialog.ui" line="356"/>
|
||||
<source>&Cancel</source>
|
||||
<translatorcomment>Я не уверен насчет горячих клавиш...</translatorcomment>
|
||||
<translatorcomment>Я не уверен насчет горячих клавиш...
|
||||
</translatorcomment>
|
||||
<translation>От&мена</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Фоновая картинка:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Зона Snapmatic Аватарки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Выбрать цвет...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Файл</translation>
|
||||
|
@ -429,7 +508,7 @@ When you want to use it as Avatar the image will be detached!</source>
|
|||
<message>
|
||||
<location filename="../JsonEditorDialog.ui" line="116"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Применить изменения</translation>
|
||||
<translation>Применить изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.ui" line="119"/>
|
||||
|
@ -439,7 +518,7 @@ When you want to use it as Avatar the image will be detached!</source>
|
|||
<message>
|
||||
<location filename="../JsonEditorDialog.ui" line="132"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Отвергнуть изменения</translation>
|
||||
<translation>Отменить изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../JsonEditorDialog.ui" line="135"/>
|
||||
|
@ -462,7 +541,7 @@ When you want to use it as Avatar the image will be detached!</source>
|
|||
<message>
|
||||
<location filename="../MapLocationDialog.ui" line="138"/>
|
||||
<source>Close viewer</source>
|
||||
<translation type="unfinished">Закрыть просмотрщик</translation>
|
||||
<translation>Закрыть просмотрщик</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../MapLocationDialog.ui" line="141"/>
|
||||
|
@ -675,7 +754,8 @@ Y: %2</translation>
|
|||
<message>
|
||||
<location filename="../OptionsDialog.ui" line="434"/>
|
||||
<source>Hardware, Application and OS Specification</source>
|
||||
<translatorcomment>Application = gta5view</translatorcomment>
|
||||
<translatorcomment>Application = gta5view
|
||||
</translatorcomment>
|
||||
<translation>Железо, выпуск программы, тип ОС</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -708,7 +788,8 @@ Y: %2</translation>
|
|||
<message>
|
||||
<location filename="../OptionsDialog.ui" line="558"/>
|
||||
<source>Language for Areas</source>
|
||||
<translatorcomment>Язык для местоположений?</translatorcomment>
|
||||
<translatorcomment>Язык для местоположений?
|
||||
</translatorcomment>
|
||||
<translation>Язык перевода местоположений</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -785,7 +866,7 @@ Y: %2</translation>
|
|||
<location filename="../OptionsDialog.cpp" line="153"/>
|
||||
<source>%1 (Next Closest Language)</source>
|
||||
<comment>First language a person can talk with a different person/application. "Native" or "Not Native".</comment>
|
||||
<translation></translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OptionsDialog.cpp" line="153"/>
|
||||
|
@ -1168,13 +1249,14 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../ProfileInterface.cpp" line="409"/>
|
||||
<source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
|
||||
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line</translatorcomment>
|
||||
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line
|
||||
</translatorcomment>
|
||||
<translation><h4>Нижеследующие картинки Snapmatic были восстановлены</h4>%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1185,12 +1267,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1222,8 +1304,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||
<location filename="../ImportDialog.cpp" line="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1275,24 +1357,24 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
||||
|
@ -1843,11 +1925,21 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Применить изменения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation>&Применить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation>&Отмена</translation>
|
||||
</message>
|
||||
|
@ -2124,7 +2216,7 @@ Press 1 for Default View</source>
|
|||
<message>
|
||||
<location filename="../main.cpp" line="173"/>
|
||||
<source>&OK</source>
|
||||
<translation type="unfinished">&ОК</translation>
|
||||
<translation>&ОК</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
Binary file not shown.
|
@ -177,7 +177,7 @@ Pictures and Savegames</source>
|
|||
<name>ImageEditorDialog</name>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>Перезаписати зображення...</translation>
|
||||
</message>
|
||||
|
@ -193,25 +193,25 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Застосувати зміни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>&Перезаписати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Скасувати зміни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation>&Закрити</translation>
|
||||
</message>
|
||||
|
@ -275,8 +275,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>Фоновий колір: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -293,8 +294,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>Фонове зображення:</translation>
|
||||
</message>
|
||||
|
@ -349,68 +351,141 @@ Pictures and Savegames</source>
|
|||
<translation>&Скасувати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Зона Snapmatic Аватару</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>Вибір кольору...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>Фонове зображення: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>Файл</translation>
|
||||
|
@ -1159,8 +1234,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1171,12 +1246,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1196,16 +1271,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1213,16 +1288,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
||||
|
@ -1803,11 +1878,21 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">Застосувати зміни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation>&Застосувати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">Скасувати зміни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation>&Скасувати</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -176,7 +176,7 @@ Pictures and Savegames</source>
|
|||
<name>ImageEditorDialog</name>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="14"/>
|
||||
<location filename="../ImportDialog.cpp" line="465"/>
|
||||
<location filename="../ImportDialog.cpp" line="635"/>
|
||||
<source>Overwrite Image...</source>
|
||||
<translation>修改圖片...</translation>
|
||||
</message>
|
||||
|
@ -192,25 +192,25 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="82"/>
|
||||
<location filename="../ImportDialog.cpp" line="467"/>
|
||||
<location filename="../ImportDialog.cpp" line="637"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">套用變更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="85"/>
|
||||
<location filename="../ImportDialog.cpp" line="466"/>
|
||||
<location filename="../ImportDialog.cpp" line="636"/>
|
||||
<source>&Overwrite</source>
|
||||
<translation>修改(&O)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="92"/>
|
||||
<location filename="../ImportDialog.cpp" line="469"/>
|
||||
<location filename="../ImportDialog.cpp" line="639"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">捨棄變更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.ui" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="468"/>
|
||||
<location filename="../ImportDialog.cpp" line="638"/>
|
||||
<source>&Close</source>
|
||||
<translation>關閉(&C)</translation>
|
||||
</message>
|
||||
|
@ -274,8 +274,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="150"/>
|
||||
<location filename="../ImportDialog.cpp" line="86"/>
|
||||
<location filename="../ImportDialog.cpp" line="553"/>
|
||||
<location filename="../ImportDialog.cpp" line="94"/>
|
||||
<location filename="../ImportDialog.cpp" line="311"/>
|
||||
<location filename="../ImportDialog.cpp" line="723"/>
|
||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||
<translation>背景顏色: <span style="color: %1">%1</span></translation>
|
||||
</message>
|
||||
|
@ -292,8 +293,9 @@ Pictures and Savegames</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.ui" line="203"/>
|
||||
<location filename="../ImportDialog.cpp" line="87"/>
|
||||
<location filename="../ImportDialog.cpp" line="633"/>
|
||||
<location filename="../ImportDialog.cpp" line="95"/>
|
||||
<location filename="../ImportDialog.cpp" line="319"/>
|
||||
<location filename="../ImportDialog.cpp" line="803"/>
|
||||
<source>Background Image:</source>
|
||||
<translation>背景圖片:</translation>
|
||||
</message>
|
||||
|
@ -348,67 +350,140 @@ Pictures and Savegames</source>
|
|||
<translation>取消(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="112"/>
|
||||
<location filename="../ImportDialog.cpp" line="120"/>
|
||||
<source>&Import new Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="113"/>
|
||||
<location filename="../ImportDialog.cpp" line="121"/>
|
||||
<source>&Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="186"/>
|
||||
<location filename="../ImportDialog.cpp" line="123"/>
|
||||
<source>&Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="124"/>
|
||||
<source>&Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="197"/>
|
||||
<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="213"/>
|
||||
<location filename="../ImportDialog.cpp" line="224"/>
|
||||
<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="271"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<source>Storage</source>
|
||||
<comment>Background Image: Storage</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="351"/>
|
||||
<source>Crop Picture...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="313"/>
|
||||
<location filename="../ImportDialog.cpp" line="393"/>
|
||||
<source>&Crop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="394"/>
|
||||
<source>Crop Picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<source>Please import a new picture first</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="486"/>
|
||||
<location filename="../ImportDialog.cpp" line="496"/>
|
||||
<source>Default</source>
|
||||
<comment>Default as Default Profile</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="487"/>
|
||||
<location filename="../ImportDialog.cpp" line="488"/>
|
||||
<location filename="../ImportDialog.cpp" line="489"/>
|
||||
<location filename="../ImportDialog.cpp" line="490"/>
|
||||
<location filename="../ImportDialog.cpp" line="491"/>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="504"/>
|
||||
<location filename="../ImportDialog.cpp" line="508"/>
|
||||
<location filename="../ImportDialog.cpp" line="512"/>
|
||||
<location filename="../ImportDialog.cpp" line="516"/>
|
||||
<location filename="../ImportDialog.cpp" line="534"/>
|
||||
<location filename="../ImportDialog.cpp" line="535"/>
|
||||
<location filename="../ImportDialog.cpp" line="536"/>
|
||||
<location filename="../ImportDialog.cpp" line="537"/>
|
||||
<location filename="../ImportDialog.cpp" line="538"/>
|
||||
<location filename="../ImportDialog.cpp" line="543"/>
|
||||
<location filename="../ImportDialog.cpp" line="547"/>
|
||||
<location filename="../ImportDialog.cpp" line="551"/>
|
||||
<location filename="../ImportDialog.cpp" line="555"/>
|
||||
<location filename="../ImportDialog.cpp" line="559"/>
|
||||
<source>Profile %1</source>
|
||||
<comment>Profile %1 as Profile 1</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="481"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<source>Load Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="529"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Save Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<source>Snapmatic Avatar Zone</source>
|
||||
<translation>Snapmatic 大頭貼區域</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="500"/>
|
||||
<location filename="../ImportDialog.cpp" line="670"/>
|
||||
<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="549"/>
|
||||
<location filename="../ImportDialog.cpp" line="719"/>
|
||||
<source>Select Colour...</source>
|
||||
<translation>選擇顏色...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="314"/>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>Background Image: %1</source>
|
||||
<translation>背景圖片: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="618"/>
|
||||
<location filename="../ImportDialog.cpp" line="492"/>
|
||||
<location filename="../ImportDialog.cpp" line="539"/>
|
||||
<source>Please select your settings profile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ImportDialog.cpp" line="788"/>
|
||||
<source>File</source>
|
||||
<comment>Background Image: File</comment>
|
||||
<translation>文件</translation>
|
||||
|
@ -1157,8 +1232,8 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="109"/>
|
||||
<location filename="../ImportDialog.cpp" line="342"/>
|
||||
<location filename="../ImportDialog.cpp" line="572"/>
|
||||
<location filename="../ImportDialog.cpp" line="422"/>
|
||||
<location filename="../ImportDialog.cpp" line="742"/>
|
||||
<location filename="../ProfileInterface.cpp" line="482"/>
|
||||
<location filename="../ProfileInterface.cpp" line="548"/>
|
||||
<location filename="../ProfileInterface.cpp" line="857"/>
|
||||
|
@ -1169,12 +1244,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="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="../ImportDialog.cpp" line="423"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="743"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="483"/>
|
||||
<location filename="../ProfileInterface.cpp" line="527"/>
|
||||
<location filename="../ProfileInterface.cpp" line="582"/>
|
||||
|
@ -1194,16 +1269,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="120"/>
|
||||
<location filename="../ImportDialog.cpp" line="353"/>
|
||||
<location filename="../ImportDialog.cpp" line="583"/>
|
||||
<location filename="../ImportDialog.cpp" line="433"/>
|
||||
<location filename="../ImportDialog.cpp" line="753"/>
|
||||
<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="354"/>
|
||||
<location filename="../ImportDialog.cpp" line="584"/>
|
||||
<location filename="../ImportDialog.cpp" line="434"/>
|
||||
<location filename="../ImportDialog.cpp" line="754"/>
|
||||
<location filename="../ProfileInterface.cpp" line="503"/>
|
||||
<location filename="../UserInterface.cpp" line="463"/>
|
||||
<source>All files (**)</source>
|
||||
|
@ -1211,16 +1286,16 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ImageEditorDialog.cpp" line="141"/>
|
||||
<location filename="../ImportDialog.cpp" line="374"/>
|
||||
<location filename="../ImportDialog.cpp" line="604"/>
|
||||
<location filename="../ImportDialog.cpp" line="454"/>
|
||||
<location filename="../ImportDialog.cpp" line="774"/>
|
||||
<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="383"/>
|
||||
<location filename="../ImportDialog.cpp" line="613"/>
|
||||
<location filename="../ImportDialog.cpp" line="463"/>
|
||||
<location filename="../ImportDialog.cpp" line="783"/>
|
||||
<location filename="../ProfileInterface.cpp" line="735"/>
|
||||
<source>Can't import %1 because file can't be parsed properly</source>
|
||||
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
||||
|
@ -1797,11 +1872,21 @@ Press 1 for Default View</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="240"/>
|
||||
<source>Apply changes</source>
|
||||
<translation type="unfinished">套用變更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="243"/>
|
||||
<source>&Apply</source>
|
||||
<translation>套用(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="253"/>
|
||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||
<source>Discard changes</source>
|
||||
<translation type="unfinished">捨棄變更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../SnapmaticEditor.ui" line="259"/>
|
||||
<source>&Cancel</source>
|
||||
<translation>取消(&C)</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in a new issue