Adding upstream version 0.4.0+20150828.
This commit is contained in:
parent
406bbcfe9b
commit
95a2f6c084
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
build
|
|
@ -5,7 +5,7 @@ project(lximage-qt)
|
|||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
|
|
||||||
# additional cmake files
|
# additional cmake files
|
||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
|
||||||
|
|
||||||
set(MAJOR_VERSION 0)
|
set(MAJOR_VERSION 0)
|
||||||
set(MINOR_VERSION 4)
|
set(MINOR_VERSION 4)
|
||||||
|
8
README
8
README
@ -1,8 +0,0 @@
|
|||||||
# lximage-qt
|
|
||||||
|
|
||||||
A simple and fast image viewer.
|
|
||||||
The Qt port of LXImage
|
|
||||||
|
|
||||||
Upstream:
|
|
||||||
http://lxqt.org
|
|
||||||
http://git.lxde.org/gitweb/?p=lxde/lximage-qt.git
|
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# lximage-qt
|
||||||
|
|
||||||
|
The Qt port of LXImage, a simple and fast image viewer.
|
@ -5,5 +5,5 @@ GenericName=Screenshot
|
|||||||
Comment=Take a screenshot
|
Comment=Take a screenshot
|
||||||
Exec=lximage-qt --screenshot
|
Exec=lximage-qt --screenshot
|
||||||
Icon=camera-photo
|
Icon=camera-photo
|
||||||
Categories=Graphics;Utility;Core;Qt;
|
Categories=Graphics;Core;Qt;
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
|
@ -7,5 +7,5 @@ Icon=lximage-qt
|
|||||||
Exec=lximage-qt
|
Exec=lximage-qt
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=Graphics;Utility;Core;Qt;Viewer;RasterGraphics;2DGraphics;Photography;
|
Categories=Graphics;Core;Qt;Viewer;RasterGraphics;2DGraphics;Photography;
|
||||||
MimeType=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;image/x-bmp;image/x-pcx;image/x-tga;image/x-portable-pixmap;image/x-portable-bitmap;image/x-targa;image/x-portable-greymap;application/pcx;image/svg+xml;image/svg-xml;
|
MimeType=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;image/x-bmp;image/x-pcx;image/x-tga;image/x-portable-pixmap;image/x-portable-bitmap;image/x-targa;image/x-portable-greymap;application/pcx;image/svg+xml;image/svg-xml;
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
[Project]
|
|
||||||
Name=lximage-qt
|
|
||||||
Manager=KDevCMakeManager
|
|
||||||
VersionControl=
|
|
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "application.h"
|
#include "application.h"
|
||||||
|
#include <QCommandLineParser>
|
||||||
#include <QDBusConnection>
|
#include <QDBusConnection>
|
||||||
#include <QDBusInterface>
|
#include <QDBusInterface>
|
||||||
#include <QPixmapCache>
|
#include <QPixmapCache>
|
||||||
@ -60,7 +61,8 @@ bool Application::init(int argc, char** argv) {
|
|||||||
|
|
||||||
new ApplicationAdaptor(this);
|
new ApplicationAdaptor(this);
|
||||||
dbus.registerObject("/Application", this);
|
dbus.registerObject("/Application", this);
|
||||||
// connect(this, SIGNAL(aboutToQuit()), SLOT(onAboutToQuit()));
|
|
||||||
|
connect(this, SIGNAL(aboutToQuit()), SLOT(onAboutToQuit()));
|
||||||
|
|
||||||
if(settings_.useFallbackIconTheme())
|
if(settings_.useFallbackIconTheme())
|
||||||
QIcon::setThemeName(settings_.fallbackIconTheme());
|
QIcon::setThemeName(settings_.fallbackIconTheme());
|
||||||
@ -73,80 +75,37 @@ bool Application::init(int argc, char** argv) {
|
|||||||
|
|
||||||
QPixmapCache::setCacheLimit(1024); // avoid pixmap caching.
|
QPixmapCache::setCacheLimit(1024); // avoid pixmap caching.
|
||||||
|
|
||||||
if(!parseCommandLineArgs(argc, argv))
|
return parseCommandLineArgs();
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Application::parseCommandLineArgs(int argc, char** argv) {
|
bool Application::parseCommandLineArgs() {
|
||||||
|
QCommandLineParser parser;
|
||||||
|
parser.addHelpOption();
|
||||||
|
|
||||||
struct FakeTr {
|
QCommandLineOption screenshotOption(
|
||||||
FakeTr(int reserved = 20) {
|
QStringList() << "s" << "screenshot",
|
||||||
strings.reserve(reserved);
|
tr("Take a screenshot")
|
||||||
}
|
);
|
||||||
|
parser.addOption(screenshotOption);
|
||||||
|
|
||||||
const char* operator()(const char* str) {
|
const QString files = tr("[FILE1, FILE2,...]");
|
||||||
QString translated = QApplication::translate(NULL, str);
|
parser.addPositionalArgument("files", files, files);
|
||||||
strings.push_back(translated.toUtf8());
|
|
||||||
return strings.back().constData();
|
parser.process(*this);
|
||||||
}
|
|
||||||
QVector<QByteArray> strings;
|
const QStringList args = parser.positionalArguments();
|
||||||
};
|
const bool screenshotTool = parser.isSet(screenshotOption);
|
||||||
|
|
||||||
|
QStringList paths;
|
||||||
|
Q_FOREACH(QString arg, args) {
|
||||||
|
QFileInfo info(arg);
|
||||||
|
paths.push_back(info.absoluteFilePath());
|
||||||
|
}
|
||||||
|
|
||||||
bool keepRunning = false;
|
bool keepRunning = false;
|
||||||
// It's really a shame that the great Qt library does not come
|
|
||||||
// with any command line parser.
|
|
||||||
// After trying some Qt ways, I finally realized that glib is the best.
|
|
||||||
// Simple, efficient, effective, and does not use signal/slot!
|
|
||||||
// The only drawback is the translated string returned by tr() is
|
|
||||||
// a temporary one. We need to store them in a list to keep them alive. :-(
|
|
||||||
char** file_names = NULL;
|
|
||||||
gboolean screenshotTool = FALSE;
|
|
||||||
|
|
||||||
{ // this block is required to limit the scope of FakeTr object so it don't affect
|
|
||||||
// other normal QObject::tr() outside the block.
|
|
||||||
FakeTr tr; // a functor used to override QObject::tr().
|
|
||||||
// it convert the translated strings to UTF8 and add them to a list to
|
|
||||||
// keep them alive during the option parsing process.
|
|
||||||
GOptionEntry option_entries[] = {
|
|
||||||
{"screenshot", 0, 0, G_OPTION_ARG_NONE, &screenshotTool, tr("Take a screenshot"), NULL},
|
|
||||||
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &file_names, NULL, tr("[FILE1, FILE2,...]")},
|
|
||||||
{ NULL }
|
|
||||||
};
|
|
||||||
|
|
||||||
GOptionContext* context = g_option_context_new("");
|
|
||||||
g_option_context_add_main_entries(context, option_entries, NULL);
|
|
||||||
GError* error = NULL;
|
|
||||||
|
|
||||||
if(!g_option_context_parse(context, &argc, &argv, &error)) {
|
|
||||||
// show error and exit
|
|
||||||
g_fprintf(stderr, "%s\n\n", error->message);
|
|
||||||
g_error_free(error);
|
|
||||||
g_option_context_free(context);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
g_option_context_free(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
// handle files to open
|
|
||||||
QStringList paths;
|
|
||||||
if(file_names) {
|
|
||||||
char* cwd = g_get_current_dir();
|
|
||||||
for(char** filename = file_names; *filename; ++filename) {
|
|
||||||
// handle relative paths and remove unnecessary . & ..
|
|
||||||
char* canonicalName = fm_canonicalize_filename(*filename, cwd);
|
|
||||||
// convert from local encoding to QString (utf16).
|
|
||||||
QString path = QString::fromLocal8Bit(canonicalName);
|
|
||||||
g_free(canonicalName);
|
|
||||||
paths.push_back(path);
|
|
||||||
}
|
|
||||||
g_free(cwd);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(isPrimaryInstance) {
|
if(isPrimaryInstance) {
|
||||||
settings_.load();
|
settings_.load();
|
||||||
keepRunning = true;
|
keepRunning = true;
|
||||||
|
|
||||||
if(screenshotTool) {
|
if(screenshotTool) {
|
||||||
screenshot();
|
screenshot();
|
||||||
}
|
}
|
||||||
@ -164,8 +123,6 @@ bool Application::parseCommandLineArgs(int argc, char** argv) {
|
|||||||
else
|
else
|
||||||
iface.call("newWindow", paths);
|
iface.call("newWindow", paths);
|
||||||
}
|
}
|
||||||
// cleanup
|
|
||||||
g_strfreev(file_names);
|
|
||||||
return keepRunning;
|
return keepRunning;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -179,12 +136,22 @@ void Application::newWindow(QStringList files) {
|
|||||||
LxImage::MainWindow* window;
|
LxImage::MainWindow* window;
|
||||||
if(files.empty()) {
|
if(files.empty()) {
|
||||||
window = createWindow();
|
window = createWindow();
|
||||||
|
|
||||||
|
window->resize(settings_.windowWidth(), settings_.windowHeight());
|
||||||
|
if(settings_.windowMaximized())
|
||||||
|
window->setWindowState(window->windowState() | Qt::WindowMaximized);
|
||||||
|
|
||||||
window->show();
|
window->show();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Q_FOREACH(QString fileName, files) {
|
Q_FOREACH(QString fileName, files) {
|
||||||
window = createWindow();
|
window = createWindow();
|
||||||
window->openImageFile(fileName);
|
window->openImageFile(fileName);
|
||||||
|
|
||||||
|
window->resize(settings_.windowWidth(), settings_.windowHeight());
|
||||||
|
if(settings_.windowMaximized())
|
||||||
|
window->setWindowState(window->windowState() | Qt::WindowMaximized);
|
||||||
|
|
||||||
window->show();
|
window->show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -206,3 +173,8 @@ void Application::editPreferences() {
|
|||||||
PreferencesDialog* dlg = new PreferencesDialog();
|
PreferencesDialog* dlg = new PreferencesDialog();
|
||||||
dlg->show();
|
dlg->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Application::onAboutToQuit() {
|
||||||
|
qDebug("aboutToQuit");
|
||||||
|
settings_.save();
|
||||||
|
}
|
||||||
|
@ -34,18 +34,18 @@ class Application : public QApplication {
|
|||||||
public:
|
public:
|
||||||
Application(int& argc, char** argv);
|
Application(int& argc, char** argv);
|
||||||
bool init(int argc, char** argv);
|
bool init(int argc, char** argv);
|
||||||
bool parseCommandLineArgs(int argc, char** argv);
|
bool parseCommandLineArgs();
|
||||||
|
|
||||||
void newWindow(QStringList files = QStringList());
|
void newWindow(QStringList files = QStringList());
|
||||||
MainWindow* createWindow();
|
MainWindow* createWindow();
|
||||||
|
|
||||||
void addWindow() { // call this when you create a new toplevel window
|
void addWindow() { // call this when you create a new toplevel window
|
||||||
++windowCount_;
|
++windowCount_;
|
||||||
qDebug("add");
|
qDebug("add window");
|
||||||
}
|
}
|
||||||
|
|
||||||
void removeWindow() { // call this when you destroy a toplevel window
|
void removeWindow() { // call this when you destroy a toplevel window
|
||||||
qDebug("remove");
|
qDebug("remove window");
|
||||||
--windowCount_;
|
--windowCount_;
|
||||||
if(0 == windowCount_)
|
if(0 == windowCount_)
|
||||||
quit();
|
quit();
|
||||||
@ -61,6 +61,9 @@ public Q_SLOTS:
|
|||||||
void editPreferences();
|
void editPreferences();
|
||||||
void screenshot();
|
void screenshot();
|
||||||
|
|
||||||
|
protected Q_SLOTS:
|
||||||
|
void onAboutToQuit();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Fm::LibFmQt libFm;
|
Fm::LibFmQt libFm;
|
||||||
bool isPrimaryInstance;
|
bool isPrimaryInstance;
|
||||||
|
@ -66,6 +66,8 @@ MainWindow::MainWindow():
|
|||||||
Application* app = static_cast<Application*>(qApp);
|
Application* app = static_cast<Application*>(qApp);
|
||||||
app->addWindow();
|
app->addWindow();
|
||||||
|
|
||||||
|
Settings& settings = app->settings();
|
||||||
|
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
connect(ui.actionScreenshot, SIGNAL(triggered(bool)), app, SLOT(screenshot()));
|
connect(ui.actionScreenshot, SIGNAL(triggered(bool)), app, SLOT(screenshot()));
|
||||||
connect(ui.actionPreferences, SIGNAL(triggered(bool)), app ,SLOT(editPreferences()));
|
connect(ui.actionPreferences, SIGNAL(triggered(bool)), app ,SLOT(editPreferences()));
|
||||||
@ -77,11 +79,12 @@ MainWindow::MainWindow():
|
|||||||
// build context menu
|
// build context menu
|
||||||
ui.view->setContextMenuPolicy(Qt::CustomContextMenu);
|
ui.view->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||||
connect(ui.view, SIGNAL(customContextMenuRequested(QPoint)), SLOT(onContextMenu(QPoint)));
|
connect(ui.view, SIGNAL(customContextMenuRequested(QPoint)), SLOT(onContextMenu(QPoint)));
|
||||||
|
|
||||||
// install an event filter on the image view
|
// install an event filter on the image view
|
||||||
ui.view->installEventFilter(this);
|
ui.view->installEventFilter(this);
|
||||||
ui.view->setBackgroundBrush(QBrush(app->settings().bgColor()));
|
ui.view->setBackgroundBrush(QBrush(settings.bgColor()));
|
||||||
|
|
||||||
if(app->settings().showThumbnails())
|
if(settings.showThumbnails())
|
||||||
setShowThumbnails(true);
|
setShowThumbnails(true);
|
||||||
|
|
||||||
contextMenu_->addAction(ui.actionPrevious);
|
contextMenu_->addAction(ui.actionPrevious);
|
||||||
@ -273,7 +276,13 @@ void MainWindow::on_actionOpenFile_triggered() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionNewWindow_triggered() {
|
void MainWindow::on_actionNewWindow_triggered() {
|
||||||
|
Application* app = static_cast<Application*>(qApp);
|
||||||
MainWindow* window = new MainWindow();
|
MainWindow* window = new MainWindow();
|
||||||
|
window->resize(app->settings().windowWidth(), app->settings().windowHeight());
|
||||||
|
|
||||||
|
if(app->settings().windowMaximized())
|
||||||
|
window->setWindowState(window->windowState() | Qt::WindowMaximized);
|
||||||
|
|
||||||
window->show();
|
window->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -779,6 +788,33 @@ void MainWindow::changeEvent(QEvent* event) {
|
|||||||
QWidget::changeEvent(event);
|
QWidget::changeEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::resizeEvent(QResizeEvent *event) {
|
||||||
|
QMainWindow::resizeEvent(event);
|
||||||
|
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||||
|
if(settings.rememberWindowSize()) {
|
||||||
|
settings.setLastWindowMaximized(isMaximized());
|
||||||
|
|
||||||
|
if(!isMaximized()) {
|
||||||
|
settings.setLastWindowWidth(width());
|
||||||
|
settings.setLastWindowHeight(height());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::closeEvent(QCloseEvent *event)
|
||||||
|
{
|
||||||
|
QWidget::closeEvent(event);
|
||||||
|
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||||
|
if(settings.rememberWindowSize()) {
|
||||||
|
settings.setLastWindowMaximized(isMaximized());
|
||||||
|
|
||||||
|
if(!isMaximized()) {
|
||||||
|
settings.setLastWindowWidth(width());
|
||||||
|
settings.setLastWindowHeight(height());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::onContextMenu(QPoint pos) {
|
void MainWindow::onContextMenu(QPoint pos) {
|
||||||
contextMenu_->exec(ui.view->mapToGlobal(pos));
|
contextMenu_->exec(ui.view->mapToGlobal(pos));
|
||||||
}
|
}
|
||||||
|
@ -76,6 +76,8 @@ protected:
|
|||||||
QString openFileName();
|
QString openFileName();
|
||||||
QString saveFileName(QString defaultName = QString());
|
QString saveFileName(QString defaultName = QString());
|
||||||
virtual void changeEvent(QEvent * event);
|
virtual void changeEvent(QEvent * event);
|
||||||
|
virtual void resizeEvent(QResizeEvent *event);
|
||||||
|
virtual void closeEvent(QCloseEvent *event);
|
||||||
|
|
||||||
void onImageLoaded(LoadImageJob* job);
|
void onImageLoaded(LoadImageJob* job);
|
||||||
void onImageSaved(SaveImageJob* job);
|
void onImageSaved(SaveImageJob* job);
|
||||||
|
@ -59,8 +59,8 @@ void PreferencesDialog::accept() {
|
|||||||
QIcon::setThemeName(newIconTheme);
|
QIcon::setThemeName(newIconTheme);
|
||||||
// update the UI by emitting a style change event
|
// update the UI by emitting a style change event
|
||||||
Q_FOREACH(QWidget *widget, QApplication::allWidgets()) {
|
Q_FOREACH(QWidget *widget, QApplication::allWidgets()) {
|
||||||
QEvent event(QEvent::StyleChange);
|
QEvent event(QEvent::StyleChange);
|
||||||
QApplication::sendEvent(widget, &event);
|
QApplication::sendEvent(widget, &event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -124,7 +124,7 @@ void PreferencesDialog::initIconThemes(Settings& settings) {
|
|||||||
for(i = 0; i < n; ++i) {
|
for(i = 0; i < n; ++i) {
|
||||||
QVariant itemData = ui.iconTheme->itemData(i);
|
QVariant itemData = ui.iconTheme->itemData(i);
|
||||||
if(itemData == settings.fallbackIconTheme()) {
|
if(itemData == settings.fallbackIconTheme()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(i >= n)
|
if(i >= n)
|
||||||
|
@ -73,7 +73,11 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="1">
|
<item row="3" column="1">
|
||||||
<widget class="QSpinBox" name="slideShowInterval"/>
|
<widget class="QSpinBox" name="slideShowInterval">
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
@ -40,7 +40,7 @@ SaveImageJob::~SaveImageJob() {
|
|||||||
// This is called from the worker thread, not main thread
|
// This is called from the worker thread, not main thread
|
||||||
bool SaveImageJob::run() {
|
bool SaveImageJob::run() {
|
||||||
GFile* gfile = fm_path_to_gfile(path_);
|
GFile* gfile = fm_path_to_gfile(path_);
|
||||||
GFileOutputStream* fileStream = g_file_replace(gfile, NULL, false, G_FILE_CREATE_PRIVATE, cancellable_, &error_);
|
GFileOutputStream* fileStream = g_file_replace(gfile, NULL, false, G_FILE_CREATE_NONE, cancellable_, &error_);
|
||||||
g_object_unref(gfile);
|
g_object_unref(gfile);
|
||||||
|
|
||||||
if(fileStream) { // if the file stream is successfually opened
|
if(fileStream) { // if the file stream is successfually opened
|
||||||
|
@ -31,7 +31,12 @@ Settings::Settings():
|
|||||||
showSidePane_(false),
|
showSidePane_(false),
|
||||||
fullScreenBgColor_(0, 0, 0),
|
fullScreenBgColor_(0, 0, 0),
|
||||||
fallbackIconTheme_("oxygen"),
|
fallbackIconTheme_("oxygen"),
|
||||||
slideShowInterval_(5) {
|
slideShowInterval_(5),
|
||||||
|
fixedWindowWidth_(640),
|
||||||
|
fixedWindowHeight_(480),
|
||||||
|
lastWindowWidth_(640),
|
||||||
|
lastWindowHeight_(480),
|
||||||
|
lastWindowMaximized_(false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Settings::~Settings() {
|
Settings::~Settings() {
|
||||||
@ -45,15 +50,36 @@ bool Settings::load() {
|
|||||||
// showThumbnails_;
|
// showThumbnails_;
|
||||||
// showSidePane_;
|
// showSidePane_;
|
||||||
int slideShowInterval_ = settings.value("slideShowInterval", slideShowInterval_).toInt();
|
int slideShowInterval_ = settings.value("slideShowInterval", slideShowInterval_).toInt();
|
||||||
|
|
||||||
|
settings.beginGroup("Window");
|
||||||
|
fixedWindowWidth_ = settings.value("FixedWidth", 640).toInt();
|
||||||
|
fixedWindowHeight_ = settings.value("FixedHeight", 480).toInt();
|
||||||
|
lastWindowWidth_ = settings.value("LastWindowWidth", 640).toInt();
|
||||||
|
lastWindowHeight_ = settings.value("LastWindowHeight", 480).toInt();
|
||||||
|
lastWindowMaximized_ = settings.value("LastWindowMaximized", false).toBool();
|
||||||
|
rememberWindowSize_ = settings.value("RememberWindowSize", true).toBool();
|
||||||
|
settings.endGroup();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Settings::save() {
|
bool Settings::save() {
|
||||||
QSettings settings("lximage-qt", "settings");
|
QSettings settings("lximage-qt", "settings");
|
||||||
|
|
||||||
settings.setValue("fallbackIconTheme", fallbackIconTheme_);
|
settings.setValue("fallbackIconTheme", fallbackIconTheme_);
|
||||||
settings.setValue("bgColor", bgColor_);
|
settings.setValue("bgColor", bgColor_);
|
||||||
settings.setValue("fullScreenBgColor", fullScreenBgColor_);
|
settings.setValue("fullScreenBgColor", fullScreenBgColor_);
|
||||||
settings.setValue("slideShowInterval", slideShowInterval_);
|
settings.setValue("slideShowInterval", slideShowInterval_);
|
||||||
|
|
||||||
|
settings.beginGroup("Window");
|
||||||
|
settings.setValue("FixedWidth", fixedWindowWidth_);
|
||||||
|
settings.setValue("FixedHeight", fixedWindowHeight_);
|
||||||
|
settings.setValue("LastWindowWidth", lastWindowWidth_);
|
||||||
|
settings.setValue("LastWindowHeight", lastWindowHeight_);
|
||||||
|
settings.setValue("LastWindowMaximized", lastWindowMaximized_);
|
||||||
|
settings.setValue("RememberWindowSize", rememberWindowSize_);
|
||||||
|
settings.endGroup();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,6 +79,63 @@ public:
|
|||||||
slideShowInterval_ = interval;
|
slideShowInterval_ = interval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool rememberWindowSize() const {
|
||||||
|
return rememberWindowSize_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setRememberWindowSize(bool rememberWindowSize) {
|
||||||
|
rememberWindowSize_ = rememberWindowSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
int windowWidth() const {
|
||||||
|
if(rememberWindowSize_)
|
||||||
|
return lastWindowWidth_;
|
||||||
|
else
|
||||||
|
return fixedWindowWidth_;
|
||||||
|
}
|
||||||
|
|
||||||
|
int windowHeight() const {
|
||||||
|
if(rememberWindowSize_)
|
||||||
|
return lastWindowHeight_;
|
||||||
|
else
|
||||||
|
return fixedWindowHeight_;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool windowMaximized() const {
|
||||||
|
if(rememberWindowSize_)
|
||||||
|
return lastWindowMaximized_;
|
||||||
|
else
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
int fixedWindowWidth() const {
|
||||||
|
return fixedWindowWidth_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setFixedWindowWidth(int fixedWindowWidth) {
|
||||||
|
fixedWindowWidth_ = fixedWindowWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
int fixedWindowHeight() const {
|
||||||
|
return fixedWindowHeight_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setFixedWindowHeight(int fixedWindowHeight) {
|
||||||
|
fixedWindowHeight_ = fixedWindowHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setLastWindowWidth(int lastWindowWidth) {
|
||||||
|
lastWindowWidth_ = lastWindowWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setLastWindowHeight(int lastWindowHeight) {
|
||||||
|
lastWindowHeight_ = lastWindowHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setLastWindowMaximized(bool lastWindowMaximized) {
|
||||||
|
lastWindowMaximized_ = lastWindowMaximized;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool useFallbackIconTheme_;
|
bool useFallbackIconTheme_;
|
||||||
QColor bgColor_;
|
QColor bgColor_;
|
||||||
@ -87,6 +144,13 @@ private:
|
|||||||
bool showSidePane_;
|
bool showSidePane_;
|
||||||
int slideShowInterval_;
|
int slideShowInterval_;
|
||||||
QString fallbackIconTheme_;
|
QString fallbackIconTheme_;
|
||||||
|
|
||||||
|
bool rememberWindowSize_;
|
||||||
|
int fixedWindowWidth_;
|
||||||
|
int fixedWindowHeight_;
|
||||||
|
int lastWindowWidth_;
|
||||||
|
int lastWindowHeight_;
|
||||||
|
bool lastWindowMaximized_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
4
src/translations/lximage-qt-screenshot_el.desktop
Normal file
4
src/translations/lximage-qt-screenshot_el.desktop
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#Translations
|
||||||
|
Name[el]=Στιγμιότυπο οθόνης
|
||||||
|
GenericName[el]=Στιγμιότυπο οθόνης
|
||||||
|
Comment[el]=Λήψη ενός στιγμιότυπου της οθόνης
|
6
src/translations/lximage-qt-screenshot_hu.desktop
Normal file
6
src/translations/lximage-qt-screenshot_hu.desktop
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name[hu]=LXQt képernyőfotó
|
||||||
|
GenericName[hu]=Képrnyőfénykép
|
||||||
|
Comment[hu]=Képernyőkép készítés
|
||||||
|
|
||||||
|
#TRANSLATIONS_DIR=translations
|
@ -1,28 +1,28 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="de_DE">
|
<TS version="2.1" language="de">
|
||||||
<context>
|
<context>
|
||||||
<name>LxImage::Application</name>
|
<name>LxImage::Application</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../application.cpp" line="112"/>
|
<location filename="../application.cpp" line="87"/>
|
||||||
<source>Take a screenshot</source>
|
<source>Take a screenshot</source>
|
||||||
<translation type="unfinished">Erstelle ein Bildschirmfoto</translation>
|
<translation>Bildschirmfoto erstellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../application.cpp" line="113"/>
|
<location filename="../application.cpp" line="91"/>
|
||||||
<source>[FILE1, FILE2,...]</source>
|
<source>[FILE1, FILE2,...]</source>
|
||||||
<translation type="unfinished">[Datei1, Datei2,...]</translation>
|
<translation>[Datei1, Datei2,...]</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>LxImage::MainWindow</name>
|
<name>LxImage::MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="144"/>
|
<location filename="../mainwindow.cpp" line="147"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation type="unfinished">Über</translation>
|
<translation>Über</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="145"/>
|
<location filename="../mainwindow.cpp" line="148"/>
|
||||||
<source>LXImage - a simple and fast image viewer
|
<source>LXImage - a simple and fast image viewer
|
||||||
|
|
||||||
Copyright (C) 2013
|
Copyright (C) 2013
|
||||||
@ -30,7 +30,7 @@ LXDE Project: http://lxde.org/
|
|||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||||
<translation type="unfinished">LXImage - ein einfacher und schneller Bildbetrachter
|
<translation>LXImage - ein einfacher und schneller Bildbetrachter
|
||||||
|
|
||||||
Copyright (C) 2013
|
Copyright (C) 2013
|
||||||
LXDE Project: http://lxde.org/
|
LXDE Project: http://lxde.org/
|
||||||
@ -39,45 +39,45 @@ Autor:
|
|||||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="238"/>
|
<location filename="../mainwindow.cpp" line="241"/>
|
||||||
<source>Open File</source>
|
<source>Open File</source>
|
||||||
<translation type="unfinished">Öffne Datei</translation>
|
<translation>Datei öffnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="239"/>
|
<location filename="../mainwindow.cpp" line="242"/>
|
||||||
<location filename="../mainwindow.cpp" line="260"/>
|
<location filename="../mainwindow.cpp" line="263"/>
|
||||||
<source>Image files (%1)</source>
|
<source>Image files (%1)</source>
|
||||||
<translation type="unfinished">Bilddateien (%1)</translation>
|
<translation>Bilddateien (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="260"/>
|
<location filename="../mainwindow.cpp" line="263"/>
|
||||||
<source>Save File</source>
|
<source>Save File</source>
|
||||||
<translation type="unfinished">Speichere Datei</translation>
|
<translation>Datei speichern</translation>
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="516"/>
|
|
||||||
<source>%1 (Loading...) - Image Viewer</source>
|
|
||||||
<translation type="unfinished">%1 (Lade...) - Bildbetrachter</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="521"/>
|
|
||||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
|
||||||
<translation type="unfinished">%1 (Fehler beim Laden) - Bildbetrachter</translation>
|
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="525"/>
|
<location filename="../mainwindow.cpp" line="525"/>
|
||||||
|
<source>%1 (Loading...) - Image Viewer</source>
|
||||||
|
<translation>%1 (Lade...) - Bildbetrachter</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="530"/>
|
||||||
|
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||||
|
<translation>%1 (Fehler beim Laden) - Bildbetrachter</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="534"/>
|
||||||
<source>%1 (%2x%3) - Image Viewer</source>
|
<source>%1 (%2x%3) - Image Viewer</source>
|
||||||
<translation type="unfinished">%1 (%2x%3) - Bildbetrachter</translation>
|
<translation>%1 (%2x%3) - Bildbetrachter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="535"/>
|
<location filename="../mainwindow.cpp" line="544"/>
|
||||||
<source>Image Viewer</source>
|
<source>Image Viewer</source>
|
||||||
<translation type="unfinished">Bildbetrachter</translation>
|
<translation>Bildbetrachter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="710"/>
|
<location filename="../mainwindow.cpp" line="719"/>
|
||||||
<source>Thumbnails</source>
|
<source>Thumbnails</source>
|
||||||
<translation type="unfinished">Miniaturen</translation>
|
<translation>Miniaturen</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -85,28 +85,29 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="412"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="412"/>
|
||||||
<source>Image Viewer</source>
|
<source>Image Viewer</source>
|
||||||
<translation type="unfinished">Bildbetrachter</translation>
|
<translation>Bildbetrachter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
||||||
<source>&About</source>
|
<source>&About</source>
|
||||||
<translation type="unfinished">&Über</translation>
|
<translation>&Über</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
||||||
<source>&Open File</source>
|
<source>&Open File</source>
|
||||||
<translation type="unfinished">Ö&ffnen</translation>
|
<translatorcomment>This should be "&Open" (without "File") imho. We are in the File menu.</translatorcomment>
|
||||||
|
<translation>Ö&ffnen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
||||||
<source>Ctrl+O</source>
|
<source>Ctrl+O</source>
|
||||||
<translatorcomment>Shortcuts werden automatisch übersetzt</translatorcomment>
|
<translatorcomment>Shortcuts are translated automatically. No need to manually translate it to "Strg+O".</translatorcomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="416"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="416"/>
|
||||||
<source>&Save</source>
|
<source>&Save</source>
|
||||||
<translation type="unfinished">&Speichern</translation>
|
<translation>&Speichern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
||||||
@ -116,7 +117,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
||||||
<source>Save &As</source>
|
<source>Save &As</source>
|
||||||
<translation type="unfinished">Speichern &unter</translation>
|
<translation>Speichern &unter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
||||||
@ -126,7 +127,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
||||||
<source>&Close</source>
|
<source>&Close</source>
|
||||||
<translation type="unfinished">Sch&ließen</translation>
|
<translation>Sch&ließen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
||||||
@ -136,7 +137,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
||||||
<source>Zoom &In</source>
|
<source>Zoom &In</source>
|
||||||
<translation type="unfinished">Ver&größern</translation>
|
<translation>Ver&größern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
||||||
@ -146,7 +147,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||||
<source>Zoom &Out</source>
|
<source>Zoom &Out</source>
|
||||||
<translation type="unfinished">Ver&kleinern</translation>
|
<translation>Ver&kleinern</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||||
@ -156,19 +157,19 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
||||||
<source>&Copy to Clipboard</source>
|
<source>&Copy to Clipboard</source>
|
||||||
<translation type="unfinished">In die &Zwischenablage einfügen</translation>
|
<translation>In die &Zwischenablage einfügen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="427"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="427"/>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="429"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="429"/>
|
||||||
<source>Next File</source>
|
<source>Next File</source>
|
||||||
<translation type="unfinished">Nächste Datei</translation>
|
<translation>Nächste Datei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="432"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="432"/>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="434"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="434"/>
|
||||||
<source>Previous File</source>
|
<source>Previous File</source>
|
||||||
<translation type="unfinished">Vorige Datei</translation>
|
<translation>Vorige Datei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||||
@ -183,32 +184,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
||||||
<source>Original Size</source>
|
<source>Original Size</source>
|
||||||
<translation type="unfinished">Originalgröße</translation>
|
<translation>Originalgröße</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
||||||
<source>&Fit</source>
|
<source>&Fit</source>
|
||||||
<translation type="unfinished">Passen&d</translation>
|
<translation>Passen&d</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
||||||
<source>&Rotate Clockwise</source>
|
<source>&Rotate Clockwise</source>
|
||||||
<translation type="unfinished">Im &Uhrzeigersinn drehen</translation>
|
<translation>Im &Uhrzeigersinn drehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
||||||
<source>Rotate &Counterclockwise</source>
|
<source>Rotate &Counterclockwise</source>
|
||||||
<translation type="unfinished">&Gegen den Uhrzeigersinn drehen</translation>
|
<translation>&Gegen den Uhrzeigersinn drehen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
||||||
<source>P&references</source>
|
<source>P&references</source>
|
||||||
<translation type="unfinished">Vo&rgaben</translation>
|
<translation>Einste&llungen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
||||||
<source>&Print</source>
|
<source>&Print</source>
|
||||||
<translation type="unfinished">&Drucken</translation>
|
<translation>&Drucken</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
||||||
@ -218,7 +219,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
||||||
<source>First File</source>
|
<source>First File</source>
|
||||||
<translation type="unfinished">Erste Datei</translation>
|
<translation>Erste Datei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
||||||
@ -228,7 +229,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
||||||
<source>Last File</source>
|
<source>Last File</source>
|
||||||
<translation type="unfinished">Letzte Datei</translation>
|
<translation>Letzte Datei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
||||||
@ -238,7 +239,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="448"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="448"/>
|
||||||
<source>&New Window</source>
|
<source>&New Window</source>
|
||||||
<translation type="unfinished">&Neues Fenster</translation>
|
<translation>&Neues Fenster</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
||||||
@ -248,17 +249,17 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
||||||
<source>Flip &Horizontally</source>
|
<source>Flip &Horizontally</source>
|
||||||
<translation type="unfinished">&Horizontal spiegeln</translation>
|
<translation>&Horizontal spiegeln</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
||||||
<source>Capture Screenshot</source>
|
<source>Capture Screenshot</source>
|
||||||
<translation type="unfinished">Bildschirmfoto erstellen</translation>
|
<translation>Bildschirmfoto erstellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="452"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="452"/>
|
||||||
<source>F&ull Screen</source>
|
<source>F&ull Screen</source>
|
||||||
<translation type="unfinished">&Gesamter Bildschirm</translation>
|
<translation>&Gesamter Bildschirm</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
||||||
@ -268,22 +269,22 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
||||||
<source>Flip &Vertically</source>
|
<source>Flip &Vertically</source>
|
||||||
<translation type="unfinished">&Vertikal spiegeln</translation>
|
<translation>&Vertikal spiegeln</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
||||||
<source>&Paste from Clipboard</source>
|
<source>&Paste from Clipboard</source>
|
||||||
<translation type="unfinished">&Aus Zwischenablage einfügen</translation>
|
<translation>&Aus Zwischenablage einfügen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
||||||
<source>&Slide Show</source>
|
<source>&Slide Show</source>
|
||||||
<translation type="unfinished">&Diaschau</translation>
|
<translation>&Diaschau</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
||||||
<source>&Delete</source>
|
<source>&Delete</source>
|
||||||
<translation type="unfinished">&Löschen</translation>
|
<translation>&Löschen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
||||||
@ -293,76 +294,76 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||||
<source>Show Thumbnails</source>
|
<source>Show Thumbnails</source>
|
||||||
<translation type="unfinished">Zeige Miniaturen</translation>
|
<translation>Miniaturen anzeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||||
<source>File Properties</source>
|
<source>File Properties</source>
|
||||||
<translatorcomment>Übersetzung von 'file' weggelassen, da redundant.</translatorcomment>
|
<translatorcomment>Translation of 'file' skipped, it is redundant (this is the file menu).</translatorcomment>
|
||||||
<translation type="unfinished">Eigenschaften</translation>
|
<translation>Eigenschaften</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||||
<source>&File</source>
|
<source>&File</source>
|
||||||
<translation type="unfinished">&Datei</translation>
|
<translation>&Datei</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="462"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="462"/>
|
||||||
<source>&Help</source>
|
<source>&Help</source>
|
||||||
<translation type="unfinished">&Hilfe</translation>
|
<translation>&Hilfe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="463"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="463"/>
|
||||||
<source>Go</source>
|
<source>Go</source>
|
||||||
<translation type="unfinished">Gehe zu</translation>
|
<translation>Gehe zu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="464"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="464"/>
|
||||||
<source>&View</source>
|
<source>&View</source>
|
||||||
<translation type="unfinished">&Ansicht</translation>
|
<translation>&Ansicht</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="465"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="465"/>
|
||||||
<source>&Edit</source>
|
<source>&Edit</source>
|
||||||
<translation type="unfinished">&Bearbeiten</translation>
|
<translation>&Bearbeiten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
||||||
<source>Toolbar</source>
|
<source>Toolbar</source>
|
||||||
<translation type="unfinished">Werkzeugleiste</translation>
|
<translation>Werkzeugleiste</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>PreferencesDialog</name>
|
<name>PreferencesDialog</name>
|
||||||
<message>
|
|
||||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
|
||||||
<source>Preferences</source>
|
|
||||||
<translation type="unfinished">Vorgaben</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||||
<source>Icon theme:</source>
|
<source>Preferences</source>
|
||||||
<translation type="unfinished">Symboldesign:</translation>
|
<translation>Einstellungen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||||
<source>Normal background color:</source>
|
<source>Icon theme:</source>
|
||||||
<translation type="unfinished">Normale Hintergrundfarbe:</translation>
|
<translation>Symboldesign:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||||
<source>Fullscreen background color:</source>
|
<source>Normal background color:</source>
|
||||||
<translation type="unfinished">Vollbild-Hintergrundfarbe:</translation>
|
<translation>Normale Hintergrundfarbe:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||||
<source>Slide show interval (seconds):</source>
|
<source>Fullscreen background color:</source>
|
||||||
<translation type="unfinished">Diaschau Bildwechsel (Sekunden):</translation>
|
<translation>Vollbild-Hintergrundfarbe:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||||
|
<source>Slide show interval (seconds):</source>
|
||||||
|
<translation>Diaschau Bildwechsel (Sekunden):</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||||
<source>General</source>
|
<source>General</source>
|
||||||
<translation type="unfinished">Allgemein</translation>
|
<translation>Allgemein</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -370,47 +371,47 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="123"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="123"/>
|
||||||
<source>Screenshot</source>
|
<source>Screenshot</source>
|
||||||
<translation type="unfinished">Bildschirmfoto</translation>
|
<translation>Bildschirmfoto</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="124"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="124"/>
|
||||||
<source>Take a screenshot</source>
|
<source>Take a screenshot</source>
|
||||||
<translation type="unfinished">Erstelle ein Bildschirmfoto</translation>
|
<translation>Bildschirmfoto erstellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="125"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="125"/>
|
||||||
<source>Region</source>
|
<source>Region</source>
|
||||||
<translation type="unfinished">Bereich</translation>
|
<translation>Bereich</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="126"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="126"/>
|
||||||
<source>Whole screen</source>
|
<source>Whole screen</source>
|
||||||
<translation type="unfinished">Genzer Bildschirm</translation>
|
<translation>Gesamter Bildschirm</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="127"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="127"/>
|
||||||
<source>Current window only</source>
|
<source>Current window only</source>
|
||||||
<translation type="unfinished">Nur aktuelles Fenster</translation>
|
<translation>Nur aktuelles Fenster</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="128"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="128"/>
|
||||||
<source>Include mouse cursor</source>
|
<source>Include mouse cursor</source>
|
||||||
<translation type="unfinished">Einschließlich Mauszeiger</translation>
|
<translation>Einschließlich Mauszeiger</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="129"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="129"/>
|
||||||
<source> seconds</source>
|
<source> seconds</source>
|
||||||
<translation type="unfinished"> Sekunden</translation>
|
<translation> Sekunden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="130"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="130"/>
|
||||||
<source>Delay:</source>
|
<source>Delay:</source>
|
||||||
<translation type="unfinished">Verzögerung:</translation>
|
<translation>Verzögerung:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../build/src/ui_screenshotdialog.h" line="131"/>
|
<location filename="../../build/src/ui_screenshotdialog.h" line="131"/>
|
||||||
<source>Include window title and frame</source>
|
<source>Include window title and frame</source>
|
||||||
<translation type="unfinished">Einschließlich Fenstertitel und Rahmen</translation>
|
<translation>Einschließlich Fenstertitel und Rahmen</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
4
src/translations/lximage-qt_el.desktop
Normal file
4
src/translations/lximage-qt_el.desktop
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#Translations
|
||||||
|
Name[el]=LXImage
|
||||||
|
GenericName[el]=Προβολέας εικόνων
|
||||||
|
Comment[el]=Ο προβολέας εικόνων του LXQt
|
414
src/translations/lximage-qt_el.ts
Normal file
414
src/translations/lximage-qt_el.ts
Normal file
@ -0,0 +1,414 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!DOCTYPE TS>
|
||||||
|
<TS version="2.1" language="el">
|
||||||
|
<context>
|
||||||
|
<name>LxImage::Application</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../application.cpp" line="112"/>
|
||||||
|
<source>Take a screenshot</source>
|
||||||
|
<translation>Λήψη ενός στιγμιότυπου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../application.cpp" line="113"/>
|
||||||
|
<source>[FILE1, FILE2,...]</source>
|
||||||
|
<translation>[ΑΡΧΕΙΟ1, ΑΡΧΕΙΟ2,...]</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>LxImage::MainWindow</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="144"/>
|
||||||
|
<source>About</source>
|
||||||
|
<translation>Σχετικά</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="145"/>
|
||||||
|
<source>LXImage - a simple and fast image viewer
|
||||||
|
|
||||||
|
Copyright (C) 2013
|
||||||
|
LXDE Project: http://lxde.org/
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||||
|
<translation>LXImage - ένας απλός και γρήγορος προβολέας εικόνων
|
||||||
|
|
||||||
|
Πνευματικά δικαιώματα (C) 2013
|
||||||
|
Έργο LXDE: http://lxde.org/
|
||||||
|
|
||||||
|
Συγγραφείς:
|
||||||
|
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="238"/>
|
||||||
|
<source>Open File</source>
|
||||||
|
<translation>Άνοιγμα αρχείου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="239"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="260"/>
|
||||||
|
<source>Image files (%1)</source>
|
||||||
|
<translation>Αρχεία εικόνων (%1)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="260"/>
|
||||||
|
<source>Save File</source>
|
||||||
|
<translation>Αποθήκευση αρχείου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="516"/>
|
||||||
|
<source>%1 (Loading...) - Image Viewer</source>
|
||||||
|
<translation>%1 (Φορτώνεται....) - Προβολέας εικόνων</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="521"/>
|
||||||
|
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||||
|
<translation>%1 (Αποτυχία φόρτωσης) - Προβολέας εικόνων</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="525"/>
|
||||||
|
<source>%1 (%2x%3) - Image Viewer</source>
|
||||||
|
<translation>%1 (%2x%3) - Προβολέας εικόνων</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="535"/>
|
||||||
|
<source>Image Viewer</source>
|
||||||
|
<translation>Προβολέας εικόνων</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="710"/>
|
||||||
|
<source>Thumbnails</source>
|
||||||
|
<translation>Εικόνες επισκόπησης</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>MainWindow</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="412"/>
|
||||||
|
<source>Image Viewer</source>
|
||||||
|
<translation>Προβολέας εικόνων</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
||||||
|
<source>&About</source>
|
||||||
|
<translation>&Σχετικά</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
||||||
|
<source>&Open File</source>
|
||||||
|
<translation>&Άνοιγμα αρχείου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
||||||
|
<source>Ctrl+O</source>
|
||||||
|
<translation>Ctrl+O</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="416"/>
|
||||||
|
<source>&Save</source>
|
||||||
|
<translation>Απο&θήκευση</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
||||||
|
<source>Ctrl+S</source>
|
||||||
|
<translation>Ctrl+S</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
||||||
|
<source>Save &As</source>
|
||||||
|
<translation>Αποθήκευση &ως</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
||||||
|
<source>Ctrl+A</source>
|
||||||
|
<translation>Ctrl+A</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
||||||
|
<source>&Close</source>
|
||||||
|
<translation>&Κλείσιμο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
||||||
|
<source>Ctrl+W</source>
|
||||||
|
<translation>Ctrl+W</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
||||||
|
<source>Zoom &In</source>
|
||||||
|
<translation>Μεγέ&θυνση</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
||||||
|
<source>Ctrl++</source>
|
||||||
|
<translation>Ctrl++</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||||
|
<source>Zoom &Out</source>
|
||||||
|
<translation>Σμίκρ&υνση</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||||
|
<source>Ctrl+-</source>
|
||||||
|
<translation>Ctrl+-</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
||||||
|
<source>&Copy to Clipboard</source>
|
||||||
|
<translation>Αντιγραφή στο πρό&χειρο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="427"/>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="429"/>
|
||||||
|
<source>Next File</source>
|
||||||
|
<translation>Επόμενο αρχείο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="432"/>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="434"/>
|
||||||
|
<source>Previous File</source>
|
||||||
|
<translation>Προηγούμενο αρχείο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||||
|
<source>PgDown</source>
|
||||||
|
<translation>PgDown</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="436"/>
|
||||||
|
<source>PgUp</source>
|
||||||
|
<translation>PgUp</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
||||||
|
<source>Original Size</source>
|
||||||
|
<translation>Αρχικό Μέγεθος</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
||||||
|
<source>&Fit</source>
|
||||||
|
<translation>&Ταίριασμα</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
||||||
|
<source>&Rotate Clockwise</source>
|
||||||
|
<translation>Περιστροφή &δεξιόστροφα</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
||||||
|
<source>Rotate &Counterclockwise</source>
|
||||||
|
<translation>Περιστροφή &αριστερόστροφα</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
||||||
|
<source>P&references</source>
|
||||||
|
<translation>&Επιλογές</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
||||||
|
<source>&Print</source>
|
||||||
|
<translation>Εκτύ&πωση</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
||||||
|
<source>Ctrl+P</source>
|
||||||
|
<translation>Ctrl+P</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
||||||
|
<source>First File</source>
|
||||||
|
<translation>Πρώτο αρχείο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
||||||
|
<source>Home</source>
|
||||||
|
<translation>Αρχική</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
||||||
|
<source>Last File</source>
|
||||||
|
<translation>Τελευταίο αρχείο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
||||||
|
<source>End</source>
|
||||||
|
<translation>Τέλος</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="448"/>
|
||||||
|
<source>&New Window</source>
|
||||||
|
<translation>&Νέο παράθυρο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
||||||
|
<source>Ctrl+N</source>
|
||||||
|
<translation>Ctrl+N</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
||||||
|
<source>Flip &Horizontally</source>
|
||||||
|
<translation>Αναστροφή &οριζόντια</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
||||||
|
<source>Capture Screenshot</source>
|
||||||
|
<translation>Λήψη στιγμιότυπου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="452"/>
|
||||||
|
<source>F&ull Screen</source>
|
||||||
|
<translation>Π&λήρης οθόνη</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
||||||
|
<source>F11</source>
|
||||||
|
<translation>F11</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
||||||
|
<source>Flip &Vertically</source>
|
||||||
|
<translation>Αναστροφή &κατακόρυφα</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
||||||
|
<source>&Paste from Clipboard</source>
|
||||||
|
<translation>&Επικόλληση από το πρόχειρο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
||||||
|
<source>&Slide Show</source>
|
||||||
|
<translation>&Προβολή διαφάνειας</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
||||||
|
<source>&Delete</source>
|
||||||
|
<translation>&Διαγραφή</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
||||||
|
<source>Del</source>
|
||||||
|
<translation>Del</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||||
|
<source>Show Thumbnails</source>
|
||||||
|
<translation>Εμφάνιση εικόνων επισκόπησης</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||||
|
<source>File Properties</source>
|
||||||
|
<translation>Ιδιότητες αρχείου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||||
|
<source>&File</source>
|
||||||
|
<translation>&Αρχείο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="462"/>
|
||||||
|
<source>&Help</source>
|
||||||
|
<translation>&Βοήθεια</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="463"/>
|
||||||
|
<source>Go</source>
|
||||||
|
<translation>Μετάβαση</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="464"/>
|
||||||
|
<source>&View</source>
|
||||||
|
<translation>&Προβολή</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="465"/>
|
||||||
|
<source>&Edit</source>
|
||||||
|
<translation>&Επεξεργασία</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
||||||
|
<source>Toolbar</source>
|
||||||
|
<translation>Γραμμή εργαλείων</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>PreferencesDialog</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||||
|
<source>Preferences</source>
|
||||||
|
<translation>Προτιμήσεις</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||||
|
<source>Icon theme:</source>
|
||||||
|
<translation>Θέμα εικονιδίων:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||||
|
<source>Normal background color:</source>
|
||||||
|
<translation>Τυπικό χρώμα παρασκηνίου:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||||
|
<source>Fullscreen background color:</source>
|
||||||
|
<translation>Χρώμα παρασκηνίου πλήρους οθόνης: </translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||||
|
<source>Slide show interval (seconds):</source>
|
||||||
|
<translation>Χρονική καθυστέρηση προβολής διαφανειών (δευτερόλεπτα):</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||||
|
<source>General</source>
|
||||||
|
<translation>Γενικά</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ScreenshotDialog</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="123"/>
|
||||||
|
<source>Screenshot</source>
|
||||||
|
<translation>Στιγμιότυπο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="124"/>
|
||||||
|
<source>Take a screenshot</source>
|
||||||
|
<translation>Λήψη στιγμιότυπου</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="125"/>
|
||||||
|
<source>Region</source>
|
||||||
|
<translation>Περιοχή</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="126"/>
|
||||||
|
<source>Whole screen</source>
|
||||||
|
<translation>Ολόκληρη η οθόνη</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="127"/>
|
||||||
|
<source>Current window only</source>
|
||||||
|
<translation>Μόνον το τρέχον παράθυρο</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="128"/>
|
||||||
|
<source>Include mouse cursor</source>
|
||||||
|
<translation>Συμπερίληψη του δρομέα του ποντικιού</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="129"/>
|
||||||
|
<source> seconds</source>
|
||||||
|
<translation> δευτερόλεπτα</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="130"/>
|
||||||
|
<source>Delay:</source>
|
||||||
|
<translation>Καθυστέρηση:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="131"/>
|
||||||
|
<source>Include window title and frame</source>
|
||||||
|
<translation>Συμπερίληψη του τίτλου και του πλαισίου του παραθύρου</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
</TS>
|
6
src/translations/lximage-qt_hu.desktop
Normal file
6
src/translations/lximage-qt_hu.desktop
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name[hu]=LXQt képnéző
|
||||||
|
GenericName[hu]=Képmegjelenítő
|
||||||
|
Comment[hu]=Az LXQt képnézegetője
|
||||||
|
|
||||||
|
#TRANSLATIONS_DIR=translations
|
414
src/translations/lximage-qt_hu.ts
Normal file
414
src/translations/lximage-qt_hu.ts
Normal file
@ -0,0 +1,414 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!DOCTYPE TS>
|
||||||
|
<TS version="2.1" language="hu_HU">
|
||||||
|
<context>
|
||||||
|
<name>LxImage::Application</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../application.cpp" line="112"/>
|
||||||
|
<source>Take a screenshot</source>
|
||||||
|
<translation>Képernyőkép</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../application.cpp" line="113"/>
|
||||||
|
<source>[FILE1, FILE2,...]</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>LxImage::MainWindow</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="144"/>
|
||||||
|
<source>About</source>
|
||||||
|
<translation>Rólunk</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="145"/>
|
||||||
|
<source>LXImage - a simple and fast image viewer
|
||||||
|
|
||||||
|
Copyright (C) 2013
|
||||||
|
LXDE Project: http://lxde.org/
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||||
|
<translation>LXImage - az egyszerű és gyors képnéző
|
||||||
|
|
||||||
|
Copyright (C) 2013
|
||||||
|
LXDE Project: http://lxde.org/
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="238"/>
|
||||||
|
<source>Open File</source>
|
||||||
|
<translation>Fájl megnyitás</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="239"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="260"/>
|
||||||
|
<source>Image files (%1)</source>
|
||||||
|
<translation>Képfájlok (%1)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="260"/>
|
||||||
|
<source>Save File</source>
|
||||||
|
<translation>Fájl mentés</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="516"/>
|
||||||
|
<source>%1 (Loading...) - Image Viewer</source>
|
||||||
|
<translation>%1 (Betöltés...) - Képnéző</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="521"/>
|
||||||
|
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||||
|
<translation>%1 (Betöltés sikertelen) - Képnéző</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="525"/>
|
||||||
|
<source>%1 (%2x%3) - Image Viewer</source>
|
||||||
|
<translation>%1 (Loading...) - Képnéző</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="535"/>
|
||||||
|
<source>Image Viewer</source>
|
||||||
|
<translation>Képnéző</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="710"/>
|
||||||
|
<source>Thumbnails</source>
|
||||||
|
<translation>Bélyegképek</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>MainWindow</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="412"/>
|
||||||
|
<source>Image Viewer</source>
|
||||||
|
<translation>Képnéző</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
||||||
|
<source>&About</source>
|
||||||
|
<translation>Ról&am</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
||||||
|
<source>&Open File</source>
|
||||||
|
<translation>&Fájlnyitás</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
||||||
|
<source>Ctrl+O</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="416"/>
|
||||||
|
<source>&Save</source>
|
||||||
|
<translation>&Ment</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
||||||
|
<source>Ctrl+S</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
||||||
|
<source>Save &As</source>
|
||||||
|
<translation>&Másként ment</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
||||||
|
<source>Ctrl+A</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
||||||
|
<source>&Close</source>
|
||||||
|
<translation>&Bezár</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
||||||
|
<source>Ctrl+W</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
||||||
|
<source>Zoom &In</source>
|
||||||
|
<translation>&Nagyít</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
||||||
|
<source>Ctrl++</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||||
|
<source>Zoom &Out</source>
|
||||||
|
<translation>&Kicsinyít</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||||
|
<source>Ctrl+-</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
||||||
|
<source>&Copy to Clipboard</source>
|
||||||
|
<translation>&Vágólapra másol</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="427"/>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="429"/>
|
||||||
|
<source>Next File</source>
|
||||||
|
<translation>Következő fájl</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="432"/>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="434"/>
|
||||||
|
<source>Previous File</source>
|
||||||
|
<translation>Előző fájl</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||||
|
<source>PgDown</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="436"/>
|
||||||
|
<source>PgUp</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
||||||
|
<source>Original Size</source>
|
||||||
|
<translation>Eredeti méret</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
||||||
|
<source>&Fit</source>
|
||||||
|
<translation>&Kitölt</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
||||||
|
<source>&Rotate Clockwise</source>
|
||||||
|
<translation>&Jobbra forgat</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
||||||
|
<source>Rotate &Counterclockwise</source>
|
||||||
|
<translation>&Balra forgat</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
||||||
|
<source>P&references</source>
|
||||||
|
<translation>&Beállítások</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
||||||
|
<source>&Print</source>
|
||||||
|
<translation>&Nyomtat</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
||||||
|
<source>Ctrl+P</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
||||||
|
<source>First File</source>
|
||||||
|
<translation>Első fájl</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
||||||
|
<source>Home</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
||||||
|
<source>Last File</source>
|
||||||
|
<translation>Utolsó fájl</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
||||||
|
<source>End</source>
|
||||||
|
<translation>Vége</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="448"/>
|
||||||
|
<source>&New Window</source>
|
||||||
|
<translation>&Új ablak</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
||||||
|
<source>Ctrl+N</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
||||||
|
<source>Flip &Horizontally</source>
|
||||||
|
<translation>Vízszintesen átfordít</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
||||||
|
<source>Capture Screenshot</source>
|
||||||
|
<translation>Képernyókép készítés</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="452"/>
|
||||||
|
<source>F&ull Screen</source>
|
||||||
|
<translation>&Teljes kép</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
||||||
|
<source>F11</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
||||||
|
<source>Flip &Vertically</source>
|
||||||
|
<translation>&Fejtetőre állít</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
||||||
|
<source>&Paste from Clipboard</source>
|
||||||
|
<translation>Vágóla&pról beilleszt</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
||||||
|
<source>&Slide Show</source>
|
||||||
|
<translation>&Diavetítés</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
||||||
|
<source>&Delete</source>
|
||||||
|
<translation>&Törlés</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
||||||
|
<source>Del</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||||
|
<source>Show Thumbnails</source>
|
||||||
|
<translation>Bélyegképek</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||||
|
<source>File Properties</source>
|
||||||
|
<translation>Fájljellemzők</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||||
|
<source>&File</source>
|
||||||
|
<translation>&Fájl</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="462"/>
|
||||||
|
<source>&Help</source>
|
||||||
|
<translation>&Segítség</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="463"/>
|
||||||
|
<source>Go</source>
|
||||||
|
<translation>Ugrás</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="464"/>
|
||||||
|
<source>&View</source>
|
||||||
|
<translation>&Nézet</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="465"/>
|
||||||
|
<source>&Edit</source>
|
||||||
|
<translation>&Szerkeszt</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
||||||
|
<source>Toolbar</source>
|
||||||
|
<translation>Eszközsáv</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>PreferencesDialog</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||||
|
<source>Preferences</source>
|
||||||
|
<translation>Beállítások</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||||
|
<source>Icon theme:</source>
|
||||||
|
<translation>Ikontéma:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||||
|
<source>Normal background color:</source>
|
||||||
|
<translation>Normál háttérszín:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||||
|
<source>Fullscreen background color:</source>
|
||||||
|
<translation>Teljeskép háttérszín:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||||
|
<source>Slide show interval (seconds):</source>
|
||||||
|
<translation>Diaváltás (másodperc):</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||||
|
<source>General</source>
|
||||||
|
<translation>Általános</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ScreenshotDialog</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="123"/>
|
||||||
|
<source>Screenshot</source>
|
||||||
|
<translation>Képernyőkép</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="124"/>
|
||||||
|
<source>Take a screenshot</source>
|
||||||
|
<translation>Képernyőfénykép</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="125"/>
|
||||||
|
<source>Region</source>
|
||||||
|
<translation>Terület</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="126"/>
|
||||||
|
<source>Whole screen</source>
|
||||||
|
<translation>Teljes kép</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="127"/>
|
||||||
|
<source>Current window only</source>
|
||||||
|
<translation>Aktuális ablak</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="128"/>
|
||||||
|
<source>Include mouse cursor</source>
|
||||||
|
<translation>Egérkurzor is</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="129"/>
|
||||||
|
<source> seconds</source>
|
||||||
|
<translation> másodperc</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="130"/>
|
||||||
|
<source>Delay:</source>
|
||||||
|
<translation>Késleltetés:</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../build/src/ui_screenshotdialog.h" line="131"/>
|
||||||
|
<source>Include window title and frame</source>
|
||||||
|
<translation>Ablakkeret és fejléc is</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
</TS>
|
Loading…
x
Reference in New Issue
Block a user