add watermark
|
@ -52,6 +52,8 @@ ImportDialog::ImportDialog(QWidget *parent) :
|
||||||
|
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
importAgreed = false;
|
importAgreed = false;
|
||||||
|
watermarkAvatar = true;
|
||||||
|
watermarkPicture = false;
|
||||||
insideAvatarZone = false;
|
insideAvatarZone = false;
|
||||||
avatarAreaImage = QImage(":/img/avatarareaimport.png");
|
avatarAreaImage = QImage(":/img/avatarareaimport.png");
|
||||||
selectedColour = QColor::fromRgb(0, 0, 0, 255);
|
selectedColour = QColor::fromRgb(0, 0, 0, 255);
|
||||||
|
@ -169,6 +171,7 @@ void ImportDialog::processImage()
|
||||||
snapmaticImage = snapmaticImage.scaled(snapmaticAvatarResolution, snapmaticAvatarResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
snapmaticImage = snapmaticImage.scaled(snapmaticAvatarResolution, snapmaticAvatarResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
||||||
}
|
}
|
||||||
snapmaticPainter.drawImage(snapmaticAvatarPlacementW + diffWidth, snapmaticAvatarPlacementH + diffHeight, snapmaticImage);
|
snapmaticPainter.drawImage(snapmaticAvatarPlacementW + diffWidth, snapmaticAvatarPlacementH + diffHeight, snapmaticImage);
|
||||||
|
if (ui->cbWatermark->isChecked()) { processWatermark(&snapmaticPainter); }
|
||||||
imageTitle = tr("Custom Avatar", "Custom Avatar Description in SC, don't use Special Character!");
|
imageTitle = tr("Custom Avatar", "Custom Avatar Description in SC, don't use Special Character!");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -195,6 +198,7 @@ void ImportDialog::processImage()
|
||||||
snapmaticImage = snapmaticImage.scaled(snapmaticResolutionW, snapmaticResolutionH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
snapmaticImage = snapmaticImage.scaled(snapmaticResolutionW, snapmaticResolutionH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
||||||
}
|
}
|
||||||
snapmaticPainter.drawImage(0 + diffWidth, 0 + diffHeight, snapmaticImage);
|
snapmaticPainter.drawImage(0 + diffWidth, 0 + diffHeight, snapmaticImage);
|
||||||
|
if (ui->cbWatermark->isChecked()) { processWatermark(&snapmaticPainter); }
|
||||||
imageTitle = tr("Custom Picture", "Custom Picture Description in SC, don't use Special Character!");
|
imageTitle = tr("Custom Picture", "Custom Picture Description in SC, don't use Special Character!");
|
||||||
}
|
}
|
||||||
snapmaticPainter.end();
|
snapmaticPainter.end();
|
||||||
|
@ -202,6 +206,47 @@ void ImportDialog::processImage()
|
||||||
ui->labPicture->setPixmap(snapmaticPixmap.scaled(snapmaticResolutionLW, snapmaticResolutionLH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
ui->labPicture->setPixmap(snapmaticPixmap.scaled(snapmaticResolutionLW, snapmaticResolutionLH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ImportDialog::processWatermark(QPainter *snapmaticPainter)
|
||||||
|
{
|
||||||
|
bool blackWatermark = false;
|
||||||
|
bool redWatermark = false;
|
||||||
|
if (selectedColour.red() > 127)
|
||||||
|
{
|
||||||
|
if (selectedColour.green() > 127 || selectedColour.blue() > 127)
|
||||||
|
{
|
||||||
|
redWatermark = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
redWatermark = true;
|
||||||
|
}
|
||||||
|
if (selectedColour.lightness() > 127)
|
||||||
|
{
|
||||||
|
blackWatermark = true;
|
||||||
|
}
|
||||||
|
// draw watermark
|
||||||
|
if (redWatermark)
|
||||||
|
{
|
||||||
|
snapmaticPainter->drawImage(0, 0, QImage(":/img/watermark_2r.png"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
QImage viewWatermark = QImage(":/img/watermark_2b.png");
|
||||||
|
if (!blackWatermark)
|
||||||
|
{
|
||||||
|
viewWatermark.invertPixels(QImage::InvertRgb);
|
||||||
|
}
|
||||||
|
snapmaticPainter->drawImage(0, 0, viewWatermark);
|
||||||
|
}
|
||||||
|
QImage textWatermark = QImage(":/img/watermark_1b.png");
|
||||||
|
if (!blackWatermark)
|
||||||
|
{
|
||||||
|
textWatermark.invertPixels(QImage::InvertRgb);
|
||||||
|
}
|
||||||
|
snapmaticPainter->drawImage(0, 0, textWatermark);
|
||||||
|
}
|
||||||
|
|
||||||
QImage ImportDialog::image()
|
QImage ImportDialog::image()
|
||||||
{
|
{
|
||||||
return newImage;
|
return newImage;
|
||||||
|
@ -271,6 +316,16 @@ void ImportDialog::on_cbAvatar_toggled(bool checked)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
insideAvatarZone = ui->cbAvatar->isChecked();
|
insideAvatarZone = ui->cbAvatar->isChecked();
|
||||||
|
watermarkBlock = true;
|
||||||
|
if (insideAvatarZone)
|
||||||
|
{
|
||||||
|
ui->cbWatermark->setChecked(watermarkAvatar);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ui->cbWatermark->setChecked(watermarkPicture);
|
||||||
|
}
|
||||||
|
watermarkBlock = false;
|
||||||
processImage();
|
processImage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -402,3 +457,19 @@ void ImportDialog::on_cbForceAvatarColour_toggled(bool checked)
|
||||||
Q_UNUSED(checked)
|
Q_UNUSED(checked)
|
||||||
processImage();
|
processImage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ImportDialog::on_cbWatermark_toggled(bool checked)
|
||||||
|
{
|
||||||
|
if (!watermarkBlock)
|
||||||
|
{
|
||||||
|
if (insideAvatarZone)
|
||||||
|
{
|
||||||
|
watermarkAvatar = checked;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
watermarkPicture = checked;
|
||||||
|
}
|
||||||
|
processImage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -49,6 +49,7 @@ private slots:
|
||||||
void on_cmdBackgroundWipe_clicked();
|
void on_cmdBackgroundWipe_clicked();
|
||||||
void on_cbStretch_toggled(bool checked);
|
void on_cbStretch_toggled(bool checked);
|
||||||
void on_cbForceAvatarColour_toggled(bool checked);
|
void on_cbForceAvatarColour_toggled(bool checked);
|
||||||
|
void on_cbWatermark_toggled(bool checked);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::ImportDialog *ui;
|
Ui::ImportDialog *ui;
|
||||||
|
@ -60,9 +61,13 @@ private:
|
||||||
QImage newImage;
|
QImage newImage;
|
||||||
QColor selectedColour;
|
QColor selectedColour;
|
||||||
bool insideAvatarZone;
|
bool insideAvatarZone;
|
||||||
|
bool watermarkPicture;
|
||||||
|
bool watermarkAvatar;
|
||||||
|
bool watermarkBlock;
|
||||||
bool importAgreed;
|
bool importAgreed;
|
||||||
int snapmaticResolutionLW;
|
int snapmaticResolutionLW;
|
||||||
int snapmaticResolutionLH;
|
int snapmaticResolutionLH;
|
||||||
|
void processWatermark(QPainter *snapmaticPainter);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // IMPORTDIALOG_H
|
#endif // IMPORTDIALOG_H
|
||||||
|
|
|
@ -7,13 +7,13 @@
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>516</width>
|
<width>516</width>
|
||||||
<height>425</height>
|
<height>512</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>516</width>
|
<width>516</width>
|
||||||
<height>425</height>
|
<height>512</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="vlSettings">
|
<layout class="QVBoxLayout" name="vlSettings">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="hlCheckboxes">
|
<layout class="QHBoxLayout" name="hlCheckboxesTop">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="cbAvatar">
|
<widget class="QCheckBox" name="cbAvatar">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
|
@ -114,6 +114,23 @@
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="hlCheckboxesButtom">
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="cbWatermark">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Watermark</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.2 KiB |
BIN
res/5sync-16.png
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 357 B |
BIN
res/5sync-24.png
Before Width: | Height: | Size: 649 B After Width: | Height: | Size: 585 B |
Before Width: | Height: | Size: 7 KiB After Width: | Height: | Size: 6.2 KiB |
BIN
res/5sync-32.png
Before Width: | Height: | Size: 822 B After Width: | Height: | Size: 776 B |
BIN
res/5sync-40.png
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
res/5sync-48.png
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.2 KiB |
BIN
res/5sync-64.png
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.6 KiB |
BIN
res/5sync-96.png
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.7 KiB |
|
@ -20,8 +20,9 @@
|
||||||
<file>pointmaker-24.png</file>
|
<file>pointmaker-24.png</file>
|
||||||
<file>pointmaker-32.png</file>
|
<file>pointmaker-32.png</file>
|
||||||
<file>savegame.png</file>
|
<file>savegame.png</file>
|
||||||
<file>watermark.png</file>
|
<file>watermark_1b.png</file>
|
||||||
<file>watermarkdark.png</file>
|
<file>watermark_2b.png</file>
|
||||||
|
<file>watermark_2r.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="/global">
|
<qresource prefix="/global">
|
||||||
<file>global.rcc</file>
|
<file>global.rcc</file>
|
||||||
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
BIN
res/back.png
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 317 B |
Before Width: | Height: | Size: 157 B After Width: | Height: | Size: 87 B |
|
@ -238,102 +238,107 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
When you want to use it as Avatar the image will be detached!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1040,7 +1045,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1051,9 +1056,9 @@ Press 1 for Default View</source>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1073,14 +1078,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1088,14 +1093,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|
|
@ -238,7 +238,7 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation>Seitenverhältnis ignorieren</translation>
|
<translation>Seitenverhältnis ignorieren</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -253,98 +253,103 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
<translation>Bild</translation>
|
<translation>Bild</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation>Wasserzeichen</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation>Hintergrund</translation>
|
<translation>Hintergrund</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation>Hintergrundfarbe: <span style="color: %1">%1</span></translation>
|
<translation>Hintergrundfarbe: <span style="color: %1">%1</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation>...</translation>
|
<translation>...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation>Hintergrundbild: %1</translation>
|
<translation>Hintergrundbild: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translation>X</translation>
|
<translation>X</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation>Erzwinge Farbe in Avatar Zone</translation>
|
<translation>Erzwinge Farbe in Avatar Zone</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation>Bild importieren</translation>
|
<translation>Bild importieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation>Bild verwerfen</translation>
|
<translation>Bild verwerfen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation>Abbre&chen</translation>
|
<translation>Abbre&chen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation>Hintergrundbild:</translation>
|
<translation>Hintergrundbild:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Eigener Avatar</translation>
|
<translation>Eigener Avatar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Eigenes Bild</translation>
|
<translation>Eigenes Bild</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
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?
|
<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>
|
Wenn du es als Avatar verwenden möchtest wird es abgetrennt!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation>Snapmatic Avatar Zone</translation>
|
<translation>Snapmatic Avatar Zone</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation>Farbe auswählen...</translation>
|
<translation>Farbe auswählen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation>Datei</translation>
|
<translation>Datei</translation>
|
||||||
|
@ -1067,7 +1072,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1078,9 +1083,9 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1117,14 +1122,14 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Alle Bilddateien (%1)</translation>
|
<translation>Alle Bilddateien (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1159,14 +1164,14 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<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>
|
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<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>
|
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
|
||||||
|
|
|
@ -227,15 +227,15 @@ Pictures and Savegames</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation>Background Color: <span style="color: %1">%1</span></translation>
|
<translation>Background Color: <span style="color: %1">%1</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -251,89 +251,94 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation>Force Color in Avatar Zone</translation>
|
<translation>Force Color in Avatar Zone</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
When you want to use it as Avatar the image will be detached!</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation>Select Color...</translation>
|
<translation>Select Color...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
|
@ -1060,7 +1065,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1071,9 +1076,9 @@ Press 1 for Default View</source>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1116,14 +1121,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1163,14 +1168,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
|
|
|
@ -238,7 +238,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation>Déverrouiller le ratio d'aspect</translation>
|
<translation>Déverrouiller le ratio d'aspect</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -253,98 +253,103 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
<translation>Image</translation>
|
<translation>Image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation>Fond</translation>
|
<translation>Fond</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation>Couleur de fond : <span style="color: %1">%1</span></translation>
|
<translation>Couleur de fond : <span style="color: %1">%1</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation>...</translation>
|
<translation>...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation>Image de fond : %1</translation>
|
<translation>Image de fond : %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translation>X</translation>
|
<translation>X</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation>Forcer la couleur dans la Zone d'Avatar</translation>
|
<translation>Forcer la couleur dans la Zone d'Avatar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation>Importer l'image</translation>
|
<translation>Importer l'image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation>Supprimer l'image</translation>
|
<translation>Supprimer l'image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation>A&nnuler</translation>
|
<translation>A&nnuler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation>Image de fond :</translation>
|
<translation>Image de fond :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Avatar personnalisé</translation>
|
<translation>Avatar personnalisé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Image personnalisé</translation>
|
<translation>Image personnalisé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
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 ?
|
<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>
|
Si vous l'utilisez comme Avatar, l'image sera détachée !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation>Zone d'Avatar Snapmatic</translation>
|
<translation>Zone d'Avatar Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation>Choisir une couleur...</translation>
|
<translation>Choisir une couleur...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation>Fichier</translation>
|
<translation>Fichier</translation>
|
||||||
|
@ -1078,7 +1083,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1089,9 +1094,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1123,14 +1128,14 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Toutes les images (%1)</translation>
|
<translation>Toutes les images (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1177,14 +1182,14 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<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>
|
<translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<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>
|
<translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation>
|
||||||
|
|
|
@ -240,7 +240,7 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation>Игнорировать соотн. сторон</translation>
|
<translation>Игнорировать соотн. сторон</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -255,99 +255,104 @@ Pictures and Savegames</source>
|
||||||
<translation>Картинка</translation>
|
<translation>Картинка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation>Фон</translation>
|
<translation>Фон</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation>Цвет фона: <span style="color: %1">%1</span></translation>
|
<translation>Цвет фона: <span style="color: %1">%1</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation>...</translation>
|
<translation>...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation>Фоновая картинка: %1</translation>
|
<translation>Фоновая картинка: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translatorcomment>latin X</translatorcomment>
|
<translatorcomment>latin X</translatorcomment>
|
||||||
<translation>X</translation>
|
<translation>X</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation>Задать цвет в зоне аватарки</translation>
|
<translation>Задать цвет в зоне аватарки</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation>Импортировать картинку</translation>
|
<translation>Импортировать картинку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&ОК</translation>
|
<translation>&ОК</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation>Отклонить картинку</translation>
|
<translation>Отклонить картинку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translatorcomment>Я не уверен насчет горячих клавиш...</translatorcomment>
|
<translatorcomment>Я не уверен насчет горячих клавиш...</translatorcomment>
|
||||||
<translation>От&мена</translation>
|
<translation>От&мена</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation>Фоновая картинка:</translation>
|
<translation>Фоновая картинка:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Свой Аватар</translation>
|
<translation>Свой Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Своя Картинка</translation>
|
<translation>Своя Картинка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
When you want to use it as Avatar the image will be detached!</source>
|
||||||
<translation>Ты точно хочешь использовать квадратное изображение вне зоны аватарки? Если это аватар, то изображение будет обрезано!</translation>
|
<translation>Ты точно хочешь использовать квадратное изображение вне зоны аватарки? Если это аватар, то изображение будет обрезано!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation>Зона Snapmatic Аватарки</translation>
|
<translation>Зона Snapmatic Аватарки</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation>Выбрать цвет...</translation>
|
<translation>Выбрать цвет...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation>Файл</translation>
|
<translation>Файл</translation>
|
||||||
|
@ -1072,7 +1077,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1083,9 +1088,9 @@ Press 1 for Default View</source>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1117,7 +1122,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1169,21 +1174,21 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Все файлы изображений (%1)</translation>
|
<translation>Все файлы изображений (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
|
||||||
|
|
|
@ -248,103 +248,108 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation>Ігнорувати співвідношення сторін</translation>
|
<translation>Ігнорувати співвідношення сторін</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation>Фон</translation>
|
<translation>Фон</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation>Фоновий колір: <span style="color: %1">%1</span></translation>
|
<translation>Фоновий колір: <span style="color: %1">%1</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation>...</translation>
|
<translation>...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation>Фонове зображення:</translation>
|
<translation>Фонове зображення:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translation>Х</translation>
|
<translation>Х</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation>Примусовий колір в зоні Аватару</translation>
|
<translation>Примусовий колір в зоні Аватару</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation>Імпортувати зображення</translation>
|
<translation>Імпортувати зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation>Відхилити зображення</translation>
|
<translation>Відхилити зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation>&Скасувати</translation>
|
<translation>&Скасувати</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Користувацький Аватар</translation>
|
<translation>Користувацький Аватар</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>Користувацьке Зображення</translation>
|
<translation>Користувацьке Зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation>Зона Snapmatic Аватару</translation>
|
<translation>Зона Snapmatic Аватару</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
When you want to use it as Avatar the image will be detached!</source>
|
||||||
<translation>Ви впевнені, що будете використовувати квадратне зображення поза зоною аватара?
|
<translation>Ви впевнені, що будете використовувати квадратне зображення поза зоною аватара?
|
||||||
Якщо ви хочете використовувати його як Аватар, зображення буде відокремлено!</translation>
|
Якщо ви хочете використовувати його як Аватар, зображення буде відокремлено!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation>Вибір кольору...</translation>
|
<translation>Вибір кольору...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation>Фонове зображення: %1</translation>
|
<translation>Фонове зображення: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation>Файл</translation>
|
<translation>Файл</translation>
|
||||||
|
@ -1058,7 +1063,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1069,9 +1074,9 @@ Press 1 for Default View</source>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1091,14 +1096,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>Файли зображень (%1)</translation>
|
<translation>Файли зображень (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1106,14 +1111,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
|
||||||
|
|
|
@ -247,102 +247,107 @@ Pictures and Savegames</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="111"/>
|
<location filename="../ImportDialog.ui" line="111"/>
|
||||||
<location filename="../ImportDialog.ui" line="252"/>
|
<location filename="../ImportDialog.ui" line="269"/>
|
||||||
<source>Ignore Aspect Ratio</source>
|
<source>Ignore Aspect Ratio</source>
|
||||||
<translation>忽略長寬比</translation>
|
<translation>忽略長寬比</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="123"/>
|
<location filename="../ImportDialog.ui" line="128"/>
|
||||||
|
<source>Watermark</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../ImportDialog.ui" line="140"/>
|
||||||
<source>Background</source>
|
<source>Background</source>
|
||||||
<translation>背景</translation>
|
<translation>背景</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="133"/>
|
<location filename="../ImportDialog.ui" line="150"/>
|
||||||
<location filename="../ImportDialog.cpp" line="80"/>
|
<location filename="../ImportDialog.cpp" line="82"/>
|
||||||
<location filename="../ImportDialog.cpp" line="309"/>
|
<location filename="../ImportDialog.cpp" line="364"/>
|
||||||
<source>Background Colour: <span style="color: %1">%1</span></source>
|
<source>Background Colour: <span style="color: %1">%1</span></source>
|
||||||
<translation>背景顏色: <span style="color: %1">%1</span></translation>
|
<translation>背景顏色: <span style="color: %1">%1</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="157"/>
|
<location filename="../ImportDialog.ui" line="174"/>
|
||||||
<location filename="../ImportDialog.ui" line="207"/>
|
<location filename="../ImportDialog.ui" line="224"/>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
<translation>...</translation>
|
<translation>...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="183"/>
|
<location filename="../ImportDialog.ui" line="200"/>
|
||||||
<location filename="../ImportDialog.cpp" line="81"/>
|
<location filename="../ImportDialog.cpp" line="83"/>
|
||||||
<location filename="../ImportDialog.cpp" line="389"/>
|
<location filename="../ImportDialog.cpp" line="444"/>
|
||||||
<source>Background Image:</source>
|
<source>Background Image:</source>
|
||||||
<translation>背景圖片:</translation>
|
<translation>背景圖片:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="214"/>
|
<location filename="../ImportDialog.ui" line="231"/>
|
||||||
<source>X</source>
|
<source>X</source>
|
||||||
<translation>X</translation>
|
<translation>X</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="242"/>
|
<location filename="../ImportDialog.ui" line="259"/>
|
||||||
<source>Force Colour in Avatar Zone</source>
|
<source>Force Colour in Avatar Zone</source>
|
||||||
<translation>強制在大頭貼區域使用顏色</translation>
|
<translation>強制在大頭貼區域使用顏色</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="298"/>
|
<location filename="../ImportDialog.ui" line="315"/>
|
||||||
<source>Import picture</source>
|
<source>Import picture</source>
|
||||||
<translation>匯入圖片</translation>
|
<translation>匯入圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="301"/>
|
<location filename="../ImportDialog.ui" line="318"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>確定(&O)</translation>
|
<translation>確定(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="314"/>
|
<location filename="../ImportDialog.ui" line="331"/>
|
||||||
<source>Discard picture</source>
|
<source>Discard picture</source>
|
||||||
<translation>捨棄圖片</translation>
|
<translation>捨棄圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.ui" line="317"/>
|
<location filename="../ImportDialog.ui" line="334"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation>取消(&C)</translation>
|
<translation>取消(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="172"/>
|
<location filename="../ImportDialog.cpp" line="175"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="662"/>
|
<location filename="../ProfileInterface.cpp" line="662"/>
|
||||||
<source>Custom Avatar</source>
|
<source>Custom Avatar</source>
|
||||||
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
<comment>Custom Avatar Description in SC, don't use Special Character!</comment>
|
||||||
<translation>自訂大頭貼</translation>
|
<translation>自訂大頭貼</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="198"/>
|
<location filename="../ImportDialog.cpp" line="202"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="681"/>
|
<location filename="../ProfileInterface.cpp" line="681"/>
|
||||||
<source>Custom Picture</source>
|
<source>Custom Picture</source>
|
||||||
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
<comment>Custom Picture Description in SC, don't use Special Character!</comment>
|
||||||
<translation>自訂圖片</translation>
|
<translation>自訂圖片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Snapmatic Avatar Zone</source>
|
<source>Snapmatic Avatar Zone</source>
|
||||||
<translation>Snapmatic 大頭貼區域</translation>
|
<translation>Snapmatic 大頭貼區域</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="266"/>
|
<location filename="../ImportDialog.cpp" line="311"/>
|
||||||
<source>Are you sure to use a square image outside of the Avatar Zone?
|
<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>
|
When you want to use it as Avatar the image will be detached!</source>
|
||||||
<translation>你確定要在大頭貼區域以外的地方使用方形圖片嗎? 作為大頭貼的圖片將被分離!</translation>
|
<translation>你確定要在大頭貼區域以外的地方使用方形圖片嗎? 作為大頭貼的圖片將被分離!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="305"/>
|
<location filename="../ImportDialog.cpp" line="360"/>
|
||||||
<source>Select Colour...</source>
|
<source>Select Colour...</source>
|
||||||
<translation>選擇顏色...</translation>
|
<translation>選擇顏色...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>Background Image: %1</source>
|
<source>Background Image: %1</source>
|
||||||
<translation>背景圖片: %1</translation>
|
<translation>背景圖片: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImportDialog.cpp" line="374"/>
|
<location filename="../ImportDialog.cpp" line="429"/>
|
||||||
<source>File</source>
|
<source>File</source>
|
||||||
<comment>Background Image: File</comment>
|
<comment>Background Image: File</comment>
|
||||||
<translation>文件</translation>
|
<translation>文件</translation>
|
||||||
|
@ -1056,7 +1061,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
<location filename="../ImageEditorDialog.cpp" line="110"/>
|
||||||
<location filename="../ImportDialog.cpp" line="328"/>
|
<location filename="../ImportDialog.cpp" line="383"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="476"/>
|
<location filename="../ProfileInterface.cpp" line="476"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="542"/>
|
<location filename="../ProfileInterface.cpp" line="542"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="851"/>
|
<location filename="../ProfileInterface.cpp" line="851"/>
|
||||||
|
@ -1067,9 +1072,9 @@ Press 1 for Default View</source>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
<location filename="../ImageEditorDialog.cpp" line="111"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="329"/>
|
<location filename="../ImportDialog.cpp" line="384"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="477"/>
|
<location filename="../ProfileInterface.cpp" line="477"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="521"/>
|
<location filename="../ProfileInterface.cpp" line="521"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="576"/>
|
<location filename="../ProfileInterface.cpp" line="576"/>
|
||||||
|
@ -1089,14 +1094,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
<location filename="../ImageEditorDialog.cpp" line="121"/>
|
||||||
<location filename="../ImportDialog.cpp" line="339"/>
|
<location filename="../ImportDialog.cpp" line="394"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="496"/>
|
<location filename="../ProfileInterface.cpp" line="496"/>
|
||||||
<source>All image files (%1)</source>
|
<source>All image files (%1)</source>
|
||||||
<translation>所有圖片 (%1)</translation>
|
<translation>所有圖片 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
<location filename="../ImageEditorDialog.cpp" line="122"/>
|
||||||
<location filename="../ImportDialog.cpp" line="340"/>
|
<location filename="../ImportDialog.cpp" line="395"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="497"/>
|
<location filename="../ProfileInterface.cpp" line="497"/>
|
||||||
<location filename="../UserInterface.cpp" line="457"/>
|
<location filename="../UserInterface.cpp" line="457"/>
|
||||||
<source>All files (**)</source>
|
<source>All files (**)</source>
|
||||||
|
@ -1104,14 +1109,14 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
<location filename="../ImageEditorDialog.cpp" line="142"/>
|
||||||
<location filename="../ImportDialog.cpp" line="360"/>
|
<location filename="../ImportDialog.cpp" line="415"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="719"/>
|
<location filename="../ProfileInterface.cpp" line="719"/>
|
||||||
<source>Can't import %1 because file can't be open</source>
|
<source>Can't import %1 because file can't be open</source>
|
||||||
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
<translation>無法匯入 %1,因為檔案無法開啟</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
<location filename="../ImageEditorDialog.cpp" line="151"/>
|
||||||
<location filename="../ImportDialog.cpp" line="369"/>
|
<location filename="../ImportDialog.cpp" line="424"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="729"/>
|
<location filename="../ProfileInterface.cpp" line="729"/>
|
||||||
<source>Can't import %1 because file can't be parsed properly</source>
|
<source>Can't import %1 because file can't be parsed properly</source>
|
||||||
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
<translation>無法匯入 %1,因為檔案無法正確解析</translation>
|
||||||
|
|
BIN
res/gta5view.png
Before Width: | Height: | Size: 7 KiB After Width: | Height: | Size: 13 KiB |
BIN
res/next.png
Before Width: | Height: | Size: 362 B After Width: | Height: | Size: 316 B |
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 444 B After Width: | Height: | Size: 353 B |
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 475 B |
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 175 B |
BIN
res/savegame.png
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 14 KiB |
BIN
res/watermark_1b.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
res/watermark_2b.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
res/watermark_2r.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 13 KiB |