feat: support move image file to trash
Resolve: BLumia/pineapple-pictures#42
This commit is contained in:
parent
37cfdad799
commit
e0fda8f3b0
|
@ -67,6 +67,7 @@ void ActionManager::setupAction(MainWindow *mainWindow)
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionCopyPixmap, edit-copy);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionCopyPixmap, edit-copy);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionCopyFilePath);
|
CREATE_NEW_ACTION(mainWindow, actionCopyFilePath);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionPaste, edit-paste);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionPaste, edit-paste);
|
||||||
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionTrash, edit-delete);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop);
|
CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode);
|
CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform);
|
CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform);
|
||||||
|
@ -105,6 +106,7 @@ void ActionManager::retranslateUi(MainWindow *mainWindow)
|
||||||
actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr));
|
actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr));
|
||||||
actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr));
|
actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr));
|
||||||
actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr));
|
actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr));
|
||||||
|
actionTrash->setText(QCoreApplication::translate("MainWindow", "Move to Trash", nullptr));
|
||||||
actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr));
|
actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr));
|
||||||
actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr));
|
actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr));
|
||||||
actionToggleAvoidResetTransform->setText(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"));
|
actionToggleAvoidResetTransform->setText(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"));
|
||||||
|
@ -141,6 +143,7 @@ void ActionManager::setupShortcuts()
|
||||||
actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R));
|
actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R));
|
||||||
actionCopyPixmap->setShortcut(QKeySequence(QKeySequence::Copy));
|
actionCopyPixmap->setShortcut(QKeySequence(QKeySequence::Copy));
|
||||||
actionPaste->setShortcut(QKeySequence::Paste);
|
actionPaste->setShortcut(QKeySequence::Paste);
|
||||||
|
actionTrash->setShortcut(QKeySequence::Delete);
|
||||||
actionHelp->setShortcut(QKeySequence::HelpContents);
|
actionHelp->setShortcut(QKeySequence::HelpContents);
|
||||||
actionSettings->setShortcut(QKeySequence::Preferences);
|
actionSettings->setShortcut(QKeySequence::Preferences);
|
||||||
actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
|
actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
|
||||||
|
|
|
@ -40,6 +40,7 @@ public:
|
||||||
QAction *actionCopyPixmap;
|
QAction *actionCopyPixmap;
|
||||||
QAction *actionCopyFilePath;
|
QAction *actionCopyFilePath;
|
||||||
QAction *actionPaste;
|
QAction *actionPaste;
|
||||||
|
QAction *actionTrash;
|
||||||
QAction *actionToggleStayOnTop;
|
QAction *actionToggleStayOnTop;
|
||||||
QAction *actionToggleProtectMode;
|
QAction *actionToggleProtectMode;
|
||||||
QAction *actionToggleAvoidResetTransform;
|
QAction *actionToggleAvoidResetTransform;
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
#ifdef HAVE_QTDBUS
|
#ifdef HAVE_QTDBUS
|
||||||
#include <QDBusInterface>
|
#include <QDBusInterface>
|
||||||
#include <QDBusConnectionInterface>
|
#include <QDBusConnectionInterface>
|
||||||
|
#include <QMessageBox>
|
||||||
#endif // HAVE_QTDBUS
|
#endif // HAVE_QTDBUS
|
||||||
|
|
||||||
MainWindow::MainWindow(QWidget *parent)
|
MainWindow::MainWindow(QWidget *parent)
|
||||||
|
@ -282,6 +283,20 @@ void MainWindow::galleryNext()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If playlist (or its index) get changed, use this method to "reload" the current file.
|
||||||
|
void MainWindow::galleryCurrent()
|
||||||
|
{
|
||||||
|
int index;
|
||||||
|
QString filePath;
|
||||||
|
std::tie(index, filePath) = m_pm->currentFile();
|
||||||
|
|
||||||
|
if (index >= 0) {
|
||||||
|
m_graphicsView->showFileFromPath(filePath, false);
|
||||||
|
} else {
|
||||||
|
m_graphicsView->showText(QCoreApplication::translate("GraphicsScene", "Drag image here"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::showEvent(QShowEvent *event)
|
void MainWindow::showEvent(QShowEvent *event)
|
||||||
{
|
{
|
||||||
updateWidgetsPosition();
|
updateWidgetsPosition();
|
||||||
|
@ -446,6 +461,8 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
||||||
|
|
||||||
QAction * paste = m_am->actionPaste;
|
QAction * paste = m_am->actionPaste;
|
||||||
|
|
||||||
|
QAction * trash = m_am->actionTrash;
|
||||||
|
|
||||||
QAction * stayOnTopMode = m_am->actionToggleStayOnTop;
|
QAction * stayOnTopMode = m_am->actionToggleStayOnTop;
|
||||||
stayOnTopMode->setCheckable(true);
|
stayOnTopMode->setCheckable(true);
|
||||||
stayOnTopMode->setChecked(stayOnTop());
|
stayOnTopMode->setChecked(stayOnTop());
|
||||||
|
@ -493,6 +510,7 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
||||||
if (currentFileUrl.isValid()) {
|
if (currentFileUrl.isValid()) {
|
||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
if (currentFileUrl.isLocalFile()) {
|
if (currentFileUrl.isLocalFile()) {
|
||||||
|
menu->addAction(trash);
|
||||||
menu->addAction(m_am->actionLocateInFileManager);
|
menu->addAction(m_am->actionLocateInFileManager);
|
||||||
}
|
}
|
||||||
menu->addAction(propertiesAction);
|
menu->addAction(propertiesAction);
|
||||||
|
@ -705,6 +723,30 @@ void MainWindow::on_actionPaste_triggered()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_actionTrash_triggered()
|
||||||
|
{
|
||||||
|
int currentFileIndex;
|
||||||
|
QUrl currentFileUrl;
|
||||||
|
std::tie(currentFileIndex, currentFileUrl) = m_pm->currentFileUrl();
|
||||||
|
if (!currentFileUrl.isLocalFile()) return;
|
||||||
|
|
||||||
|
QFile file(currentFileUrl.toLocalFile());
|
||||||
|
QFileInfo fileInfo(file.fileName());
|
||||||
|
|
||||||
|
QMessageBox::StandardButton result = QMessageBox::question(this, tr("Move to Trash"),
|
||||||
|
tr("Are you sure you want to move \"%1\" to recycle bin?").arg(fileInfo.fileName()));
|
||||||
|
if (result == QMessageBox::Yes) {
|
||||||
|
bool succ = file.moveToTrash();
|
||||||
|
if (!succ) {
|
||||||
|
QMessageBox::warning(this, "Failed to move file to trash",
|
||||||
|
tr("Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation."));
|
||||||
|
} else {
|
||||||
|
m_pm->removeFileAt(currentFileIndex);
|
||||||
|
galleryCurrent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionToggleCheckerboard_triggered()
|
void MainWindow::on_actionToggleCheckerboard_triggered()
|
||||||
{
|
{
|
||||||
// TODO: is that okay to do this since we plan to support custom shortcuts?
|
// TODO: is that okay to do this since we plan to support custom shortcuts?
|
||||||
|
|
|
@ -45,6 +45,7 @@ public:
|
||||||
void loadGalleryBySingleLocalFile(const QString &path);
|
void loadGalleryBySingleLocalFile(const QString &path);
|
||||||
void galleryPrev();
|
void galleryPrev();
|
||||||
void galleryNext();
|
void galleryNext();
|
||||||
|
void galleryCurrent();
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void showEvent(QShowEvent *event) override;
|
void showEvent(QShowEvent *event) override;
|
||||||
|
@ -92,6 +93,7 @@ private slots:
|
||||||
void on_actionCopyPixmap_triggered();
|
void on_actionCopyPixmap_triggered();
|
||||||
void on_actionCopyFilePath_triggered();
|
void on_actionCopyFilePath_triggered();
|
||||||
void on_actionPaste_triggered();
|
void on_actionPaste_triggered();
|
||||||
|
void on_actionTrash_triggered();
|
||||||
void on_actionToggleStayOnTop_triggered();
|
void on_actionToggleStayOnTop_triggered();
|
||||||
void on_actionToggleProtectMode_triggered();
|
void on_actionToggleProtectMode_triggered();
|
||||||
void on_actionToggleAvoidResetTransform_triggered();
|
void on_actionToggleAvoidResetTransform_triggered();
|
||||||
|
|
|
@ -118,6 +118,16 @@ int PlaylistManager::appendFile(const QString &filePath)
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Note: this will only remove file out of the list, this will NOT delete the file
|
||||||
|
void PlaylistManager::removeFileAt(int index)
|
||||||
|
{
|
||||||
|
m_playlist.removeAt(index);
|
||||||
|
|
||||||
|
if (m_playlist.count() <= m_currentIndex) {
|
||||||
|
m_currentIndex--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int PlaylistManager::indexOf(const QString &filePath)
|
int PlaylistManager::indexOf(const QString &filePath)
|
||||||
{
|
{
|
||||||
const QUrl & url = QUrl::fromLocalFile(filePath);
|
const QUrl & url = QUrl::fromLocalFile(filePath);
|
||||||
|
|
|
@ -32,6 +32,7 @@ public:
|
||||||
void setCurrentFile(const QString & filePath);
|
void setCurrentFile(const QString & filePath);
|
||||||
void setCurrentIndex(int index);
|
void setCurrentIndex(int index);
|
||||||
int appendFile(const QString & filePath);
|
int appendFile(const QString & filePath);
|
||||||
|
void removeFileAt(int index);
|
||||||
int indexOf(const QString & filePath);
|
int indexOf(const QString & filePath);
|
||||||
|
|
||||||
int count() const;
|
int count() const;
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
<source>Configure...</source>
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
<translation type="unfinished"></translation>
|
<source>Move to Trash</source>
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
|
||||||
<source>Help</source>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
|
<source>Configure...</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
|
<source>Help</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Arrossegueu una imatge aquí</translation>
|
<translation>Arrossegueu una imatge aquí</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>La llista d'ubicacions és buida</translation>
|
<translation>La llista d'ubicacions és buida</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Copia</translation>
|
<translation>&Copia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Copia el &mapa de píxels</translation>
|
<translation>Copia el &mapa de píxels</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Copia el camí del &fitxer</translation>
|
<translation>Copia el camí del &fitxer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Propietats</translation>
|
<translation>Propietats</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Mantén a sobre</translation>
|
<translation>Mantén a sobre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Mode protegit</translation>
|
<translation>Mode protegit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Amplia</translation>
|
<translation>Amplia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Redueix</translation>
|
<translation>Redueix</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Inverteix &horitzontalment</translation>
|
<translation>Inverteix &horitzontalment</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Enganxa</translation>
|
<translation>&Enganxa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Commuta el tauler d'escacs</translation>
|
<translation>Commuta el tauler d'escacs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Obre...</translation>
|
<translation>&Obre...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Mida real</translation>
|
<translation>Mida real</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Commuta la maximització</translation>
|
<translation>Commuta la maximització</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Commuta la maximització</translation>
|
<translation>Commuta la maximització</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Imatge anterior</translation>
|
<translation>Imatge anterior</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Imatge següent</translation>
|
<translation>Imatge següent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Configura...</translation>
|
<translation>Configura...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Ajuda</translation>
|
<translation>Ajuda</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Mostra al navegador de fitxers</translation>
|
<translation>Mostra al navegador de fitxers</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Mostra a la carpeta</translation>
|
<translation>Mostra a la carpeta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Surt</translation>
|
<translation>Surt</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Ziehen Sie das Bild hierher</translation>
|
<translation>Ziehen Sie das Bild hierher</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>Die Datei-URL-Liste ist leer</translation>
|
<translation>Die Datei-URL-Liste ist leer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Kopieren</translation>
|
<translation>&Kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>P&ixmap kopieren</translation>
|
<translation>P&ixmap kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>&Dateipfad kopieren</translation>
|
<translation>&Dateipfad kopieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Eigenschaften</translation>
|
<translation>Eigenschaften</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Oben bleiben</translation>
|
<translation>Oben bleiben</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Geschützter Modus</translation>
|
<translation>Geschützter Modus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Hineinzoomen</translation>
|
<translation>Hineinzoomen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Herauszoomen</translation>
|
<translation>Herauszoomen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>&Horizontal spiegeln</translation>
|
<translation>&Horizontal spiegeln</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>%Einfügen</translation>
|
<translation>%Einfügen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Schachbrettmuster umschalten</translation>
|
<translation>Schachbrettmuster umschalten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Öffnen...</translation>
|
<translation>&Öffnen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Tatsächliche Größe</translation>
|
<translation>Tatsächliche Größe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Maximieren umschalten</translation>
|
<translation>Maximieren umschalten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Nach rechts drehen</translation>
|
<translation>Nach rechts drehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Vorheriges Bild</translation>
|
<translation>Vorheriges Bild</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Nächstes Bild</translation>
|
<translation>Nächstes Bild</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Konfigurieren …</translation>
|
<translation>Konfigurieren …</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Hilfe</translation>
|
<translation>Hilfe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Im Dateiexplorer zeigen</translation>
|
<translation>Im Dateiexplorer zeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Im Verzeichnis zeigen</translation>
|
<translation>Im Verzeichnis zeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Beenden</translation>
|
<translation>Beenden</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Arrastre una imagen aquí</translation>
|
<translation>Arrastre una imagen aquí</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>La lista de ubicaciones está vacía</translation>
|
<translation>La lista de ubicaciones está vacía</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Copiar</translation>
|
<translation>&Copiar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Copiar &mapa de píxeles</translation>
|
<translation>Copiar &mapa de píxeles</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Copiar &ruta de archivo</translation>
|
<translation>Copiar &ruta de archivo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Propiedades</translation>
|
<translation>Propiedades</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Mantener encima</translation>
|
<translation>Mantener encima</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Modo protegido</translation>
|
<translation>Modo protegido</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>Conservar la transformación</translation>
|
<translation>Conservar la transformación</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Ampliar</translation>
|
<translation>Ampliar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Reducir</translation>
|
<translation>Reducir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Voltear &horizontalmente</translation>
|
<translation>Voltear &horizontalmente</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Pegar</translation>
|
<translation>&Pegar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Activar/desactivar el tablero de ajedrez</translation>
|
<translation>Activar/desactivar el tablero de ajedrez</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Abrir...</translation>
|
<translation>&Abrir...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Tamaño real</translation>
|
<translation>Tamaño real</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Maximizar/desmaximizar</translation>
|
<translation>Maximizar/desmaximizar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Girar a la derecha</translation>
|
<translation>Girar a la derecha</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Imagen anterior</translation>
|
<translation>Imagen anterior</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Imagen siguiente</translation>
|
<translation>Imagen siguiente</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Configurar...</translation>
|
<translation>Configurar...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Ayuda</translation>
|
<translation>Ayuda</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Mostrar en el Explorador de archivos</translation>
|
<translation>Mostrar en el Explorador de archivos</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Mostrar en la carpeta</translation>
|
<translation>Mostrar en la carpeta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Salir</translation>
|
<translation>Salir</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Faites glisser l'image ici</translation>
|
<translation>Faites glisser l'image ici</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>La liste des URL de fichiers est vide</translation>
|
<translation>La liste des URL de fichiers est vide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Copier</translation>
|
<translation>&Copier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Copier P&ixmap</translation>
|
<translation>Copier P&ixmap</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Copier le &chemin du fichier</translation>
|
<translation>Copier le &chemin du fichier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Propriétés</translation>
|
<translation>Propriétés</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Rester en-haut</translation>
|
<translation>Rester en-haut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Mode protégé</translation>
|
<translation>Mode protégé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Zoom avant</translation>
|
<translation>Zoom avant</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Zoom arrière</translation>
|
<translation>Zoom arrière</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Retourner &horizontalement</translation>
|
<translation>Retourner &horizontalement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>Co&ller</translation>
|
<translation>Co&ller</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Dés/activer le damier</translation>
|
<translation>Dés/activer le damier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Ouvrir...</translation>
|
<translation>&Ouvrir...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Taille actuelle</translation>
|
<translation>Taille actuelle</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Dés/activer l'agrandissement</translation>
|
<translation>Dés/activer l'agrandissement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Pivoter vers la droite</translation>
|
<translation>Pivoter vers la droite</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Image précédente</translation>
|
<translation>Image précédente</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Image suivant</translation>
|
<translation>Image suivant</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Configurer…</translation>
|
<translation>Configurer…</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Aide</translation>
|
<translation>Aide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Afficher dans le navigateur de fichiers</translation>
|
<translation>Afficher dans le navigateur de fichiers</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Afficher dans le dossier</translation>
|
<translation>Afficher dans le dossier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Quitter</translation>
|
<translation>Quitter</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Tarik gambar ke sini</translation>
|
<translation>Tarik gambar ke sini</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>Daftar url file kosong</translation>
|
<translation>Daftar url file kosong</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Salin</translation>
|
<translation>&Salin</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Salin P&ixmap</translation>
|
<translation>Salin P&ixmap</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Salin &Path Berkas</translation>
|
<translation>Salin &Path Berkas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Properti</translation>
|
<translation>Properti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Tetap di atas</translation>
|
<translation>Tetap di atas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Mode Terlindungi</translation>
|
<translation>Mode Terlindungi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>Simpan transformasi</translation>
|
<translation>Simpan transformasi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Perbesar</translation>
|
<translation>Perbesar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Perkecil</translation>
|
<translation>Perkecil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Putar Secara &Horizontal</translation>
|
<translation>Putar Secara &Horizontal</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Tempel</translation>
|
<translation>&Tempel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Ukuran asli</translation>
|
<translation>Ukuran asli</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Putar ke kanan</translation>
|
<translation>Putar ke kanan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Konfigurasi...</translation>
|
<translation>Konfigurasi...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Dukungan</translation>
|
<translation>Dukungan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Keluar</translation>
|
<translation>Keluar</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Trascina qui l'immagine</translation>
|
<translation>Trascina qui l'immagine</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>L'elenco degli URL dei file è vuoto</translation>
|
<translation>L'elenco degli URL dei file è vuoto</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Copia</translation>
|
<translation>&Copia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Copia P&ixmap</translation>
|
<translation>Copia P&ixmap</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Copia &Percorso file</translation>
|
<translation>Copia &Percorso file</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Proprietà</translation>
|
<translation>Proprietà</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Rimani in cima</translation>
|
<translation>Rimani in cima</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Modalità protetta</translation>
|
<translation>Modalità protetta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>Mantieni trasformazione</translation>
|
<translation>Mantieni trasformazione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Zoom avanti</translation>
|
<translation>Zoom avanti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Zoom indietro</translation>
|
<translation>Zoom indietro</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Capovolgi &Orizzontalmente</translation>
|
<translation>Capovolgi &Orizzontalmente</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Incolla</translation>
|
<translation>&Incolla</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Attiva/disattiva scacchiera</translation>
|
<translation>Attiva/disattiva scacchiera</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Apri...</translation>
|
<translation>&Apri...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Dimensione reale</translation>
|
<translation>Dimensione reale</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Attiva massimizzazione</translation>
|
<translation>Attiva massimizzazione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Ruota a destra</translation>
|
<translation>Ruota a destra</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Immagine precedente</translation>
|
<translation>Immagine precedente</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Immagine successiva</translation>
|
<translation>Immagine successiva</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Configura...</translation>
|
<translation>Configura...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Aiuto</translation>
|
<translation>Aiuto</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Mostra in Esplora file</translation>
|
<translation>Mostra in Esplora file</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Mostra nella directory</translation>
|
<translation>Mostra nella directory</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Esci</translation>
|
<translation>Esci</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>ここに画像をドラッグしてください</translation>
|
<translation>ここに画像をドラッグしてください</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>ファイルurlリストがエンプティーです</translation>
|
<translation>ファイルurlリストがエンプティーです</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>コピー(&C)</translation>
|
<translation>コピー(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>画像をコピー(&I)</translation>
|
<translation>画像をコピー(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>ファイルパスをコピー(&F)</translation>
|
<translation>ファイルパスをコピー(&F)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>プロパティ</translation>
|
<translation>プロパティ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>最前面に表示する</translation>
|
<translation>最前面に表示する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>プロテクトモード</translation>
|
<translation>プロテクトモード</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>表示状態を維持する</translation>
|
<translation>表示状態を維持する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>拡大</translation>
|
<translation>拡大</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>縮小</translation>
|
<translation>縮小</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>画像を左右反転する(&H)</translation>
|
<translation>画像を左右反転する(&H)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>貼り付け(&P)</translation>
|
<translation>貼り付け(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>背景を格子模様に切り替え</translation>
|
<translation>背景を格子模様に切り替え</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>開く(&O)…</translation>
|
<translation>開く(&O)…</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>実際のサイズ</translation>
|
<translation>実際のサイズ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>最大化を切り替える</translation>
|
<translation>最大化を切り替える</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>右に回転</translation>
|
<translation>右に回転</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>前の画像</translation>
|
<translation>前の画像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>次の画像</translation>
|
<translation>次の画像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>設定...</translation>
|
<translation>設定...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>ヘルプ</translation>
|
<translation>ヘルプ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>エクスプローラーで表示する</translation>
|
<translation>エクスプローラーで表示する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>ディレクトリに表示する</translation>
|
<translation>ディレクトリに表示する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>終了</translation>
|
<translation>終了</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>이미지를 여기로 끌기</translation>
|
<translation>이미지를 여기로 끌기</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>파일 URL 목록이 비어 있습니다</translation>
|
<translation>파일 URL 목록이 비어 있습니다</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>복사(&C)</translation>
|
<translation>복사(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Pixmap 복사(&I)</translation>
|
<translation>Pixmap 복사(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>파일 경로 복사(&F)</translation>
|
<translation>파일 경로 복사(&F)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>속성</translation>
|
<translation>속성</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>맨 위에 유지</translation>
|
<translation>맨 위에 유지</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>보호 모드</translation>
|
<translation>보호 모드</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>확대</translation>
|
<translation>확대</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>축소</translation>
|
<translation>축소</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>수평으로 뒤집기(&H)</translation>
|
<translation>수평으로 뒤집기(&H)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>붙여넣기(&P)</translation>
|
<translation>붙여넣기(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>바둑판 전환</translation>
|
<translation>바둑판 전환</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>열기(&O)...</translation>
|
<translation>열기(&O)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>실제 크기</translation>
|
<translation>실제 크기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>최대화 전환</translation>
|
<translation>최대화 전환</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>오른쪽으로 회전</translation>
|
<translation>오른쪽으로 회전</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>이전 이미지</translation>
|
<translation>이전 이미지</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>다음 이미지</translation>
|
<translation>다음 이미지</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>구성...</translation>
|
<translation>구성...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>도움말</translation>
|
<translation>도움말</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>파일 탐색기에 표시</translation>
|
<translation>파일 탐색기에 표시</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>디렉터리에 표시</translation>
|
<translation>디렉터리에 표시</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>종료</translation>
|
<translation>종료</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Dra bilde hit</translation>
|
<translation>Dra bilde hit</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>Listen over filnettadresser er ugyldig</translation>
|
<translation>Listen over filnettadresser er ugyldig</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Kopier</translation>
|
<translation>&Kopier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation type="unfinished">Kopier p&ixmap</translation>
|
<translation type="unfinished">Kopier p&ixmap</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Kopier %filsti</translation>
|
<translation>Kopier %filsti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Egenskaper</translation>
|
<translation>Egenskaper</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Behold øverst</translation>
|
<translation>Behold øverst</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Beskyttet modus</translation>
|
<translation>Beskyttet modus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Førstørr</translation>
|
<translation>Førstørr</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Forminsk</translation>
|
<translation>Forminsk</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Speilvend &horisontalt</translation>
|
<translation>Speilvend &horisontalt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Lim inn</translation>
|
<translation>&Lim inn</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation type="unfinished">Skru av/på rutemønster</translation>
|
<translation type="unfinished">Skru av/på rutemønster</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Åpne …</translation>
|
<translation>&Åpne …</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Faktisk størrelse</translation>
|
<translation>Faktisk størrelse</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation type="unfinished">Veksle maksimering</translation>
|
<translation type="unfinished">Veksle maksimering</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Roter til høyre</translation>
|
<translation>Roter til høyre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Forrige bilde</translation>
|
<translation>Forrige bilde</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Neste bilde</translation>
|
<translation>Neste bilde</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Sett opp …</translation>
|
<translation>Sett opp …</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Hjelp</translation>
|
<translation>Hjelp</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Vis i filutforsker</translation>
|
<translation>Vis i filutforsker</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation type="unfinished">Vis i mappe</translation>
|
<translation type="unfinished">Vis i mappe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Avslutt</translation>
|
<translation>Avslutt</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Sleep een afbeelding hierheen</translation>
|
<translation>Sleep een afbeelding hierheen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>De bestandspadlijst is leeg</translation>
|
<translation>De bestandspadlijst is leeg</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Kopiëren</translation>
|
<translation>&Kopiëren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>P&ixmap kopiëren</translation>
|
<translation>P&ixmap kopiëren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>&Bestandspad kopiëren</translation>
|
<translation>&Bestandspad kopiëren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Eigenschappen</translation>
|
<translation>Eigenschappen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Altijd bovenop</translation>
|
<translation>Altijd bovenop</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Beschermde modus</translation>
|
<translation>Beschermde modus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>Bewerkingen onthouden</translation>
|
<translation>Bewerkingen onthouden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Inzoomen</translation>
|
<translation>Inzoomen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Uitzoomen</translation>
|
<translation>Uitzoomen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>&Horizontaal spiegelen</translation>
|
<translation>&Horizontaal spiegelen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Plakken</translation>
|
<translation>&Plakken</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Schaakbordpatroon aan/uit</translation>
|
<translation>Schaakbordpatroon aan/uit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Openen…</translation>
|
<translation>&Openen…</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Ware grootte</translation>
|
<translation>Ware grootte</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Maximaliseren aan/uit</translation>
|
<translation>Maximaliseren aan/uit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Naar rechts draaien</translation>
|
<translation>Naar rechts draaien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Vorige afbeelding</translation>
|
<translation>Vorige afbeelding</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Volgende afbeelding</translation>
|
<translation>Volgende afbeelding</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Instellen...</translation>
|
<translation>Instellen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Hulp</translation>
|
<translation>Hulp</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Tonen in bestandsbeheer</translation>
|
<translation>Tonen in bestandsbeheer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Tonen in map</translation>
|
<translation>Tonen in map</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Afsluiten</translation>
|
<translation>Afsluiten</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>کاپی کرو</translation>
|
<translation>کاپی کرو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>تصویر دا نقشہ کاپی کرو</translation>
|
<translation>تصویر دا نقشہ کاپی کرو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>وشیشتاواں</translation>
|
<translation>وشیشتاواں</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>سرکھیات سیٹنگ</translation>
|
<translation>سرکھیات سیٹنگ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>وڈا کرو</translation>
|
<translation>وڈا کرو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>چھوٹا کرو</translation>
|
<translation>چھوٹا کرو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>لیٹویں اُلٹاؤ</translation>
|
<translation>لیٹویں اُلٹاؤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>پیسٹ کرو</translation>
|
<translation>پیسٹ کرو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>چیکبورڈ چالو بدلو</translation>
|
<translation>چیکبورڈ چالو بدلو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>کھُلھو…</translation>
|
<translation>کھُلھو…</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>اصلی اکار</translation>
|
<translation>اصلی اکار</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>ودھو ودھ بدلو</translation>
|
<translation>ودھو ودھ بدلو</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>سجے گھنماؤ</translation>
|
<translation>سجے گھنماؤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>پچھلی تصویر</translation>
|
<translation>پچھلی تصویر</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>اگلی تصویر</translation>
|
<translation>اگلی تصویر</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>مدد</translation>
|
<translation>مدد</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>بند کرو</translation>
|
<translation>بند کرو</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Перетащите изображение сюда</translation>
|
<translation>Перетащите изображение сюда</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>Список URL-адресов файлов пуст</translation>
|
<translation>Список URL-адресов файлов пуст</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Скопировать</translation>
|
<translation>&Скопировать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Скопировать P&ixmap</translation>
|
<translation>Скопировать P&ixmap</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Скопировать &путь к файлу</translation>
|
<translation>Скопировать &путь к файлу</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Свойства</translation>
|
<translation>Свойства</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Поверх всех окон</translation>
|
<translation>Поверх всех окон</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Защищенный режим</translation>
|
<translation>Защищенный режим</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Увеличить</translation>
|
<translation>Увеличить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Уменьшить</translation>
|
<translation>Уменьшить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Отразить по &горизонтали</translation>
|
<translation>Отразить по &горизонтали</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Вставить</translation>
|
<translation>&Вставить</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Переключить фоновый рисунок</translation>
|
<translation>Переключить фоновый рисунок</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Открыть...</translation>
|
<translation>&Открыть...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Фактический размер</translation>
|
<translation>Фактический размер</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Переключить окно</translation>
|
<translation>Переключить окно</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Повернуть вправо</translation>
|
<translation>Повернуть вправо</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Предыдущее изображение</translation>
|
<translation>Предыдущее изображение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Следующее изображение</translation>
|
<translation>Следующее изображение</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Параметры...</translation>
|
<translation>Параметры...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Помощь</translation>
|
<translation>Помощь</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Показать в проводнике</translation>
|
<translation>Показать в проводнике</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Показать в папке</translation>
|
<translation>Показать в папке</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Выход</translation>
|
<translation>Выход</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>ගොනු ඒ.ස.නි. (url) ලැයිස්තුව හිස් ය</translation>
|
<translation>ගොනු ඒ.ස.නි. (url) ලැයිස්තුව හිස් ය</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&පිටපත්</translation>
|
<translation>&පිටපත්</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
<source>Configure...</source>
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
<translation type="unfinished"></translation>
|
<source>Move to Trash</source>
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
|
||||||
<source>Help</source>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
|
<source>Configure...</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
|
<source>Help</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Resmi buraya sürükleyin</translation>
|
<translation>Resmi buraya sürükleyin</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>Dosya URL listesi boş</translation>
|
<translation>Dosya URL listesi boş</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Kopyala</translation>
|
<translation>&Kopyala</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>P&ixmap'i Kopyala</translation>
|
<translation>P&ixmap'i Kopyala</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>&Dosya Yolunu Kopyala</translation>
|
<translation>&Dosya Yolunu Kopyala</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Özellikler</translation>
|
<translation>Özellikler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Üstte tut</translation>
|
<translation>Üstte tut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Korumalı kip</translation>
|
<translation>Korumalı kip</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>Dönüşümü koru</translation>
|
<translation>Dönüşümü koru</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Yaklaştır</translation>
|
<translation>Yaklaştır</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Uzaklaştır</translation>
|
<translation>Uzaklaştır</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>&Yatay Çevir</translation>
|
<translation>&Yatay Çevir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>Ya&pıştır</translation>
|
<translation>Ya&pıştır</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Damalı Ekrana Geç</translation>
|
<translation>Damalı Ekrana Geç</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Aç...</translation>
|
<translation>&Aç...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Gerçek boyut</translation>
|
<translation>Gerçek boyut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Tam boyuta geç</translation>
|
<translation>Tam boyuta geç</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Sağa döndür</translation>
|
<translation>Sağa döndür</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Önceki resim</translation>
|
<translation>Önceki resim</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Sonraki resim</translation>
|
<translation>Sonraki resim</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Yapılandır...</translation>
|
<translation>Yapılandır...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Yardım</translation>
|
<translation>Yardım</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Dosya Gezgini'nde Göster</translation>
|
<translation>Dosya Gezgini'nde Göster</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Dizinde göster</translation>
|
<translation>Dizinde göster</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Çıkış</translation>
|
<translation>Çıkış</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -175,6 +175,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>Перетягніть зображення сюди</translation>
|
<translation>Перетягніть зображення сюди</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -211,127 +212,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>Список URL-адрес файлів порожній</translation>
|
<translation>Список URL-адрес файлів порожній</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>&Скопіювати</translation>
|
<translation>&Скопіювати</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>Скопіювати P&ixmap</translation>
|
<translation>Скопіювати P&ixmap</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>Скопіювати &шлях до файлу</translation>
|
<translation>Скопіювати &шлях до файлу</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>Властивості</translation>
|
<translation>Властивості</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>Поверх всіх вікон</translation>
|
<translation>Поверх всіх вікон</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>Захищений режим</translation>
|
<translation>Захищений режим</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>Зберігати трансформацію</translation>
|
<translation>Зберігати трансформацію</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>Збільшити</translation>
|
<translation>Збільшити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>Зменшити</translation>
|
<translation>Зменшити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>Перевернути по &горизонталі</translation>
|
<translation>Перевернути по &горизонталі</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>&Вставити</translation>
|
<translation>&Вставити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>Перемкнути шахову дошку</translation>
|
<translation>Перемкнути шахову дошку</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>&Відкрити...</translation>
|
<translation>&Відкрити...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>Фактичний розмір</translation>
|
<translation>Фактичний розмір</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>Перемкнути на максимум</translation>
|
<translation>Перемкнути на максимум</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>Перегорнути праворуч</translation>
|
<translation>Перегорнути праворуч</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>Попереднє зображення</translation>
|
<translation>Попереднє зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>Наступне зображення</translation>
|
<translation>Наступне зображення</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>Налаштувати...</translation>
|
<translation>Налаштувати...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Допомога</translation>
|
<translation>Допомога</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>Показати у файловому провіднику</translation>
|
<translation>Показати у файловому провіднику</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>Показати у теці</translation>
|
<translation>Показати у теці</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>Вийти</translation>
|
<translation>Вийти</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
<name>GraphicsScene</name>
|
<name>GraphicsScene</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../graphicsscene.cpp" line="89"/>
|
<location filename="../graphicsscene.cpp" line="89"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="296"/>
|
||||||
<source>Drag image here</source>
|
<source>Drag image here</source>
|
||||||
<translation>拖放图片至此</translation>
|
<translation>拖放图片至此</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -215,127 +216,143 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="190"/>
|
<location filename="../mainwindow.cpp" line="191"/>
|
||||||
<source>File url list is empty</source>
|
<source>File url list is empty</source>
|
||||||
<translation>文件 URL 列表为空</translation>
|
<translation>文件 URL 列表为空</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="433"/>
|
<location filename="../mainwindow.cpp" line="448"/>
|
||||||
<source>&Copy</source>
|
<source>&Copy</source>
|
||||||
<translation>复制(&C)</translation>
|
<translation>复制(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
<location filename="../mainwindow.cpp" line="737"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation>您确认要将“%1”移动到回收站吗?</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="742"/>
|
||||||
|
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
||||||
|
<translation>移至回收站失败,这可能由文件权限、文件系统或平台限制导致。</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="106"/>
|
||||||
<source>Copy P&ixmap</source>
|
<source>Copy P&ixmap</source>
|
||||||
<translation>复制位图(&I)</translation>
|
<translation>复制位图(&I)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="104"/>
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
<source>Copy &File Path</source>
|
<source>Copy &File Path</source>
|
||||||
<translation>复制文件路径(&F)</translation>
|
<translation>复制文件路径(&F)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
<source>Properties</source>
|
<source>Properties</source>
|
||||||
<translation>属性</translation>
|
<translation>属性</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="39"/>
|
<location filename="../aboutdialog.cpp" line="39"/>
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
<source>Stay on top</source>
|
<source>Stay on top</source>
|
||||||
<translation>总在最前</translation>
|
<translation>总在最前</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
<location filename="../aboutdialog.cpp" line="42"/>
|
||||||
<location filename="../actionmanager.cpp" line="107"/>
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
<source>Protected mode</source>
|
<source>Protected mode</source>
|
||||||
<translation>保护模式</translation>
|
<translation>保护模式</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
<location filename="../aboutdialog.cpp" line="45"/>
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
<source>Keep transformation</source>
|
<source>Keep transformation</source>
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
||||||
<translation>保持视图变换</translation>
|
<translation>保持视图变换</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="92"/>
|
<location filename="../actionmanager.cpp" line="95"/>
|
||||||
<source>Zoom in</source>
|
<source>Zoom in</source>
|
||||||
<translation>放大</translation>
|
<translation>放大</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="93"/>
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
<source>Zoom out</source>
|
<source>Zoom out</source>
|
||||||
<translation>缩小</translation>
|
<translation>缩小</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation>水平翻转(&H)</translation>
|
<translation>水平翻转(&H)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
<source>&Paste</source>
|
<source>&Paste</source>
|
||||||
<translation>粘贴(&P)</translation>
|
<translation>粘贴(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="94"/>
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
<source>Toggle Checkerboard</source>
|
<source>Toggle Checkerboard</source>
|
||||||
<translation>切换棋盘格</translation>
|
<translation>切换棋盘格</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="88"/>
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
<source>&Open...</source>
|
<source>&Open...</source>
|
||||||
<translation>打开(&O)...</translation>
|
<translation>打开(&O)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="90"/>
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
<source>Actual size</source>
|
<source>Actual size</source>
|
||||||
<translation>实际大小</translation>
|
<translation>实际大小</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="91"/>
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
<source>Toggle maximize</source>
|
<source>Toggle maximize</source>
|
||||||
<translation>最大化窗口</translation>
|
<translation>最大化窗口</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
<location filename="../actionmanager.cpp" line="98"/>
|
||||||
<source>Rotate right</source>
|
<source>Rotate right</source>
|
||||||
<translation>向右旋转</translation>
|
<translation>向右旋转</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
<source>Previous image</source>
|
<source>Previous image</source>
|
||||||
<translation>上一个图像</translation>
|
<translation>上一个图像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
<location filename="../actionmanager.cpp" line="101"/>
|
||||||
<source>Next image</source>
|
<source>Next image</source>
|
||||||
<translation>下一个图像</translation>
|
<translation>下一个图像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="736"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation>移至回收站</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
<source>Configure...</source>
|
<source>Configure...</source>
|
||||||
<translation>设置...</translation>
|
<translation>设置...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="110"/>
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>帮助</translation>
|
<translation>帮助</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
<source>Show in File Explorer</source>
|
<source>Show in File Explorer</source>
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
||||||
<translation>在文件资源管理器中显示</translation>
|
<translation>在文件资源管理器中显示</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
<location filename="../actionmanager.cpp" line="123"/>
|
||||||
<source>Show in directory</source>
|
<source>Show in directory</source>
|
||||||
<translation>在文件夹中显示</translation>
|
<translation>在文件夹中显示</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
<source>Quit</source>
|
<source>Quit</source>
|
||||||
<translation>退出</translation>
|
<translation>退出</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user