Compare commits
4 Commits
ubuntu/que
...
upstream/0
Author | SHA1 | Date | |
---|---|---|---|
|
4ac585f605 | ||
|
bc98f04c8a | ||
|
7a6ecc3364 | ||
|
95a2f6c084 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
build
|
||||
*.kdev4
|
||||
|
4
AUTHORS
4
AUTHORS
@ -3,7 +3,7 @@ Upstream Authors:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
|
||||
|
||||
Copyright:
|
||||
Copyright (c) 2013-2014 LXQt team
|
||||
Copyright (c) 2013-2015 LXQt team
|
||||
|
||||
License: GPL-2 and LGPL-2.1+
|
||||
License: GPL-2+ and LGPL-2.1+
|
||||
The full text of the licenses can be found in the 'COPYING' file.
|
||||
|
@ -1,35 +1,54 @@
|
||||
cmake_minimum_required(VERSION 2.8.11)
|
||||
cmake_minimum_required(VERSION 3.0.2)
|
||||
|
||||
project(lximage-qt)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
# 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(MINOR_VERSION 4)
|
||||
set(PATCH_VERSION 0)
|
||||
set(LXIMAGE_VERSION ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})
|
||||
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
# C++ 11 support
|
||||
if (CMAKE_VERSION VERSION_LESS "3.1")
|
||||
include(CheckCXXCompilerFlag)
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
|
||||
if(COMPILER_SUPPORTS_CXX11)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
else()
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
|
||||
# -std=c++0x is deprecated but some tools e.g. qmake or older gcc are still using it
|
||||
if(COMPILER_SUPPORTS_CXX0X)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
||||
else()
|
||||
message(FATAL_ERROR "Compiler ${CMAKE_CXX_COMPILER} does not support c++11/c++0x")
|
||||
endif()
|
||||
endif()
|
||||
else()
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
endif()
|
||||
|
||||
|
||||
find_package(Qt5Widgets REQUIRED)
|
||||
find_package(Qt5DBus REQUIRED)
|
||||
find_package(Qt5PrintSupport REQUIRED QUIET)
|
||||
find_package(Qt5X11Extras REQUIRED QUIET)
|
||||
find_package(Qt5LinguistTools REQUIRED QUIET)
|
||||
find_package(fm-qt REQUIRED QUIET)
|
||||
message(STATUS "Building with Qt ${Qt5Core_VERSION_STRING}")
|
||||
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(GLIB REQUIRED glib-2.0)
|
||||
|
||||
# FIXME: we'll need this to provide detail info for photos in the future
|
||||
pkg_check_modules(EXIF REQUIRED libexif)
|
||||
|
||||
pkg_check_modules(LIBFM_QT REQUIRED libfm-qt5 libfm>=1.2)
|
||||
|
||||
# TODO: make the X11 stuff optional.
|
||||
# for screenshot support
|
||||
find_package(X11 REQUIRED)
|
||||
|
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
|
||||
Exec=lximage-qt --screenshot
|
||||
Icon=camera-photo
|
||||
Categories=Graphics;Utility;Core;Qt;
|
||||
Categories=Graphics;Core;Qt;
|
||||
StartupNotify=true
|
||||
|
@ -4,8 +4,8 @@ Name=LXImage
|
||||
GenericName=Image Viewer
|
||||
Comment=The LXQt image viewer
|
||||
Icon=lximage-qt
|
||||
Exec=lximage-qt
|
||||
Exec=lximage-qt %F
|
||||
StartupNotify=true
|
||||
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;
|
||||
|
@ -1,4 +0,0 @@
|
||||
[Project]
|
||||
Name=lximage-qt
|
||||
Manager=KDevCMakeManager
|
||||
VersionControl=
|
28
release.sh
Executable file
28
release.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
PROJECT="lximage-qt"
|
||||
version="$1"
|
||||
prefix=$PROJECT-$version
|
||||
shift
|
||||
|
||||
if [[ -z $version ]]; then
|
||||
>&2 echo "USAGE: $0 <tag>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p "dist/$version"
|
||||
echo "Creating $prefix.tar.gz"
|
||||
git archive -9 --format tar.gz $version --prefix="$prefix/" > "dist/$version/$prefix.tar.gz"
|
||||
gpg --armor --detach-sign "dist/$version/$prefix.tar.gz"
|
||||
echo "Creating $prefix.tar.xz"
|
||||
git archive -9 --format tar.xz $version --prefix="$prefix/" > "dist/$version/$prefix.tar.xz"
|
||||
gpg --armor --detach-sign "dist/$version/$prefix.tar.xz"
|
||||
cd "dist/$version"
|
||||
|
||||
sha1sum --tag *.tar.gz *.tar.xz >> CHECKSUMS
|
||||
sha256sum --tag *.tar.gz *.tar.xz >> CHECKSUMS
|
||||
|
||||
cd ..
|
||||
echo "Uploading to lxqt.org..."
|
||||
|
||||
scp -r "$version" "downloads.lxqt.org:/srv/downloads.lxqt.org/$PROJECT/"
|
@ -1,12 +1,7 @@
|
||||
# set visibility to hidden to hide symbols, unlesss they're exporeted manually in the code
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_KEYWORDS -fno-exceptions")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions")
|
||||
|
||||
include_directories(
|
||||
${QTX_INCLUDE_DIRS}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${GLIB_INCLUDE_DIRS}
|
||||
${EXIF_INCLUDE_DIRS}
|
||||
${LIBFM_QT_INCLUDE_DIRS}
|
||||
${X11_INCLUDE_DIR}
|
||||
${XFIXES_INCLUDE_DIRS}
|
||||
)
|
||||
@ -76,16 +71,15 @@ add_executable(lximage-qt
|
||||
|
||||
add_definitions(
|
||||
-DLXIMAGE_DATA_DIR="${CMAKE_INSTALL_PREFIX}/share/lximage-qt"
|
||||
-DLIBFM_QT_API=Q_DECL_IMPORT # FIXME: This should be done in libfm-qt headers instead :-(
|
||||
-DLXIMAGE_VERSION="${LXIMAGE_VERSION}"
|
||||
)
|
||||
|
||||
set(QT_LIBRARIES Qt5::Widgets Qt5::Core Qt5::DBus Qt5::PrintSupport Qt5::X11Extras)
|
||||
|
||||
target_link_libraries(lximage-qt
|
||||
fm-qt
|
||||
${QT_LIBRARIES}
|
||||
${GLIB_LIBRARIES}
|
||||
${EXIF_LIBRARIES}
|
||||
${LIBFM_QT_LIBRARIES}
|
||||
${X11_LIBRARIES}
|
||||
${XFIXES_LIBRARIES}
|
||||
)
|
||||
|
@ -19,6 +19,7 @@
|
||||
|
||||
|
||||
#include "application.h"
|
||||
#include <QCommandLineParser>
|
||||
#include <QDBusConnection>
|
||||
#include <QDBusInterface>
|
||||
#include <QPixmapCache>
|
||||
@ -36,6 +37,7 @@ Application::Application(int& argc, char** argv):
|
||||
QApplication(argc, argv),
|
||||
windowCount_(0),
|
||||
libFm() {
|
||||
setApplicationVersion(LXIMAGE_VERSION);
|
||||
}
|
||||
|
||||
bool Application::init(int argc, char** argv) {
|
||||
@ -57,10 +59,11 @@ bool Application::init(int argc, char** argv) {
|
||||
// we successfully registered the service
|
||||
isPrimaryInstance = true;
|
||||
setQuitOnLastWindowClosed(false); // do not quit even when there're no windows
|
||||
|
||||
|
||||
new ApplicationAdaptor(this);
|
||||
dbus.registerObject("/Application", this);
|
||||
// connect(this, SIGNAL(aboutToQuit()), SLOT(onAboutToQuit()));
|
||||
|
||||
connect(this, SIGNAL(aboutToQuit()), SLOT(onAboutToQuit()));
|
||||
|
||||
if(settings_.useFallbackIconTheme())
|
||||
QIcon::setThemeName(settings_.fallbackIconTheme());
|
||||
@ -72,81 +75,39 @@ bool Application::init(int argc, char** argv) {
|
||||
}
|
||||
|
||||
QPixmapCache::setCacheLimit(1024); // avoid pixmap caching.
|
||||
|
||||
if(!parseCommandLineArgs(argc, argv))
|
||||
return false;
|
||||
return true;
|
||||
|
||||
return parseCommandLineArgs();
|
||||
}
|
||||
|
||||
bool Application::parseCommandLineArgs(int argc, char** argv) {
|
||||
bool Application::parseCommandLineArgs() {
|
||||
QCommandLineParser parser;
|
||||
parser.addHelpOption();
|
||||
parser.addVersionOption();
|
||||
|
||||
struct FakeTr {
|
||||
FakeTr(int reserved = 20) {
|
||||
strings.reserve(reserved);
|
||||
}
|
||||
QCommandLineOption screenshotOption(
|
||||
QStringList() << "s" << "screenshot",
|
||||
tr("Take a screenshot")
|
||||
);
|
||||
parser.addOption(screenshotOption);
|
||||
|
||||
const char* operator()(const char* str) {
|
||||
QString translated = QApplication::translate(NULL, str);
|
||||
strings.push_back(translated.toUtf8());
|
||||
return strings.back().constData();
|
||||
}
|
||||
QVector<QByteArray> strings;
|
||||
};
|
||||
const QString files = tr("[FILE1, FILE2,...]");
|
||||
parser.addPositionalArgument("files", files, files);
|
||||
|
||||
parser.process(*this);
|
||||
|
||||
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;
|
||||
// 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) {
|
||||
settings_.load();
|
||||
keepRunning = true;
|
||||
|
||||
if(screenshotTool) {
|
||||
screenshot();
|
||||
}
|
||||
@ -164,8 +125,6 @@ bool Application::parseCommandLineArgs(int argc, char** argv) {
|
||||
else
|
||||
iface.call("newWindow", paths);
|
||||
}
|
||||
// cleanup
|
||||
g_strfreev(file_names);
|
||||
return keepRunning;
|
||||
}
|
||||
|
||||
@ -179,13 +138,25 @@ void Application::newWindow(QStringList files) {
|
||||
LxImage::MainWindow* window;
|
||||
if(files.empty()) {
|
||||
window = createWindow();
|
||||
|
||||
window->resize(settings_.windowWidth(), settings_.windowHeight());
|
||||
if(settings_.windowMaximized())
|
||||
window->setWindowState(window->windowState() | Qt::WindowMaximized);
|
||||
|
||||
window->show();
|
||||
}
|
||||
else {
|
||||
Q_FOREACH(QString fileName, files) {
|
||||
window = createWindow();
|
||||
window->openImageFile(fileName);
|
||||
window->show();
|
||||
|
||||
window->resize(settings_.windowWidth(), settings_.windowHeight());
|
||||
if(settings_.windowMaximized())
|
||||
window->setWindowState(window->windowState() | Qt::WindowMaximized);
|
||||
|
||||
/* when there's an image, we show the window AFTER resizing
|
||||
and centering it appropriately at MainWindow::updateUI() */
|
||||
//window->show();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -206,3 +177,8 @@ void Application::editPreferences() {
|
||||
PreferencesDialog* dlg = new PreferencesDialog();
|
||||
dlg->show();
|
||||
}
|
||||
|
||||
void Application::onAboutToQuit() {
|
||||
qDebug("aboutToQuit");
|
||||
settings_.save();
|
||||
}
|
||||
|
@ -34,18 +34,18 @@ class Application : public QApplication {
|
||||
public:
|
||||
Application(int& argc, char** argv);
|
||||
bool init(int argc, char** argv);
|
||||
bool parseCommandLineArgs(int argc, char** argv);
|
||||
bool parseCommandLineArgs();
|
||||
|
||||
void newWindow(QStringList files = QStringList());
|
||||
MainWindow* createWindow();
|
||||
|
||||
void addWindow() { // call this when you create a new toplevel window
|
||||
++windowCount_;
|
||||
qDebug("add");
|
||||
qDebug("add window");
|
||||
}
|
||||
|
||||
void removeWindow() { // call this when you destroy a toplevel window
|
||||
qDebug("remove");
|
||||
qDebug("remove window");
|
||||
--windowCount_;
|
||||
if(0 == windowCount_)
|
||||
quit();
|
||||
@ -61,6 +61,9 @@ public Q_SLOTS:
|
||||
void editPreferences();
|
||||
void screenshot();
|
||||
|
||||
protected Q_SLOTS:
|
||||
void onAboutToQuit();
|
||||
|
||||
private:
|
||||
Fm::LibFmQt libFm;
|
||||
bool isPrimaryInstance;
|
||||
|
@ -26,6 +26,8 @@
|
||||
#include <QPolygon>
|
||||
#include <QDebug>
|
||||
#include <QStyle>
|
||||
#include <QLabel>
|
||||
#include <QGraphicsProxyWidget>
|
||||
|
||||
namespace LxImage {
|
||||
|
||||
@ -33,6 +35,7 @@ ImageView::ImageView(QWidget* parent):
|
||||
QGraphicsView(parent),
|
||||
imageItem_(new QGraphicsRectItem()),
|
||||
scene_(new QGraphicsScene(this)),
|
||||
gifMovie_(NULL),
|
||||
autoZoomFit_(false),
|
||||
cacheTimer_(NULL),
|
||||
scaleFactor_(1.0) {
|
||||
@ -48,7 +51,9 @@ ImageView::ImageView(QWidget* parent):
|
||||
}
|
||||
|
||||
ImageView::~ImageView() {
|
||||
delete imageItem_;
|
||||
scene_->clear(); // deletes all items
|
||||
if(gifMovie_)
|
||||
delete gifMovie_;
|
||||
if(cacheTimer_) {
|
||||
cacheTimer_->stop();
|
||||
delete cacheTimer_;
|
||||
@ -130,7 +135,18 @@ void ImageView::zoomOriginal() {
|
||||
queueGenerateCache();
|
||||
}
|
||||
|
||||
void ImageView::setImage(QImage image) {
|
||||
void ImageView::setImage(QImage image, bool show) {
|
||||
if(gifMovie_ && show) { // a gif animation was shown
|
||||
scene_->clear();
|
||||
delete gifMovie_;
|
||||
gifMovie_ = NULL;
|
||||
// recreate the rect item
|
||||
imageItem_ = new QGraphicsRectItem();
|
||||
imageItem_->hide();
|
||||
imageItem_->setPen(QPen(Qt::NoPen));
|
||||
scene_->addItem(imageItem_);
|
||||
}
|
||||
|
||||
image_ = image;
|
||||
if(image.isNull()) {
|
||||
imageItem_->hide();
|
||||
@ -138,9 +154,11 @@ void ImageView::setImage(QImage image) {
|
||||
scene_->setSceneRect(0, 0, 0, 0);
|
||||
}
|
||||
else {
|
||||
imageItem_->setRect(0, 0, image_.width(), image_.height());
|
||||
imageItem_->setBrush(image_);
|
||||
imageItem_->show();
|
||||
if(show) {
|
||||
imageItem_->setRect(0, 0, image_.width(), image_.height());
|
||||
imageItem_->setBrush(image_);
|
||||
imageItem_->show();
|
||||
}
|
||||
scene_->setSceneRect(0, 0, image_.width(), image_.height());
|
||||
}
|
||||
|
||||
@ -149,6 +167,43 @@ void ImageView::setImage(QImage image) {
|
||||
queueGenerateCache();
|
||||
}
|
||||
|
||||
void ImageView::setGifAnimation(QString fileName) {
|
||||
QImage image(fileName);
|
||||
if(image.isNull()) {
|
||||
image_ = QImage();
|
||||
imageItem_->hide();
|
||||
imageItem_->setBrush(QBrush());
|
||||
scene_->setSceneRect(0, 0, 0, 0);
|
||||
}
|
||||
else {
|
||||
scene_->clear();
|
||||
imageItem_ = NULL; // it's deleted by clear();
|
||||
if(gifMovie_) {
|
||||
delete gifMovie_;
|
||||
gifMovie_ = NULL;
|
||||
}
|
||||
QPixmap pix(image.size());
|
||||
pix.fill(Qt::transparent);
|
||||
QGraphicsItem *gifItem = new QGraphicsPixmapItem(pix);
|
||||
QLabel *gifLabel = new QLabel();
|
||||
gifMovie_ = new QMovie(fileName);
|
||||
QGraphicsProxyWidget* gifWidget = new QGraphicsProxyWidget(gifItem);
|
||||
gifLabel->setAttribute(Qt::WA_NoSystemBackground);
|
||||
gifLabel->setMovie(gifMovie_);
|
||||
gifWidget->setWidget(gifLabel);
|
||||
gifMovie_->start();
|
||||
/* the first frame won't be shown but will be
|
||||
used for tracking position and dimensions */
|
||||
image_ = gifMovie_->currentImage();
|
||||
scene_->addItem(gifItem);
|
||||
scene_->setSceneRect(gifItem->boundingRect());
|
||||
}
|
||||
|
||||
if(autoZoomFit_)
|
||||
zoomFit();
|
||||
queueGenerateCache(); // deletes the cache timer in this case
|
||||
}
|
||||
|
||||
void ImageView::setScaleFactor(double factor) {
|
||||
if(factor != scaleFactor_) {
|
||||
scaleFactor_ = factor;
|
||||
@ -189,7 +244,8 @@ void ImageView::queueGenerateCache() {
|
||||
cachedPixmap_ = QPixmap();
|
||||
|
||||
// we don't need to cache the scaled image if its the same as the original image (scale:1.0)
|
||||
if(scaleFactor_ == 1.0) {
|
||||
// no cache for gif animations either
|
||||
if(scaleFactor_ == 1.0 || gifMovie_) {
|
||||
if(cacheTimer_) {
|
||||
cacheTimer_->stop();
|
||||
delete cacheTimer_;
|
||||
@ -198,12 +254,13 @@ void ImageView::queueGenerateCache() {
|
||||
return;
|
||||
}
|
||||
|
||||
if(!cacheTimer_) {
|
||||
if(!cacheTimer_ && !gifMovie_) {
|
||||
cacheTimer_ = new QTimer();
|
||||
cacheTimer_->setSingleShot(true);
|
||||
connect(cacheTimer_, SIGNAL(timeout()), SLOT(generateCache()));
|
||||
}
|
||||
cacheTimer_->start(200); // restart the timer
|
||||
if(cacheTimer_)
|
||||
cacheTimer_->start(200); // restart the timer
|
||||
}
|
||||
|
||||
// really generate the cache
|
||||
@ -226,6 +283,12 @@ void ImageView::generateCache() {
|
||||
const uchar* bits = image_.constBits();
|
||||
unsigned int offset = subRect.x() * image_.depth() / 8 + subRect.y() * image_.bytesPerLine();
|
||||
QImage subImage = QImage(bits + offset, subRect.width(), subRect.height(), image_.bytesPerLine(), image_.format());
|
||||
|
||||
// If the original image has a color table, also use it for the subImage
|
||||
QVector<QRgb> colorTable = image_.colorTable();
|
||||
if (!colorTable.empty())
|
||||
subImage.setColorTable(colorTable);
|
||||
|
||||
// QImage scaled = subImage.scaled(subRect.width() * scaleFactor_, subRect.height() * scaleFactor_, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
||||
QImage scaled = subImage.scaled(cachedRect_.width(), cachedRect_.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include <QGraphicsRectItem>
|
||||
#include <QImage>
|
||||
#include <QPixmap>
|
||||
#include <QMovie>
|
||||
#include <QRect>
|
||||
|
||||
class QTimer;
|
||||
@ -39,7 +40,8 @@ public:
|
||||
ImageView(QWidget* parent = 0);
|
||||
virtual ~ImageView();
|
||||
|
||||
void setImage(QImage image);
|
||||
void setImage(QImage image, bool show = true);
|
||||
void setGifAnimation(QString fileName);
|
||||
|
||||
QImage image() {
|
||||
return image_;
|
||||
@ -64,7 +66,7 @@ public:
|
||||
void setAutoZoomFit(bool value) {
|
||||
autoZoomFit_ = value;
|
||||
}
|
||||
|
||||
|
||||
protected:
|
||||
virtual void wheelEvent(QWheelEvent* event);
|
||||
virtual void mouseDoubleClickEvent(QMouseEvent* event);
|
||||
@ -83,6 +85,7 @@ private:
|
||||
QGraphicsScene* scene_; // the topmost container of all graphic items
|
||||
QGraphicsRectItem* imageItem_; // the rect item used to draw the image
|
||||
QImage image_; // image to show
|
||||
QMovie *gifMovie_; // gif animation to show (should be deleted explicitly)
|
||||
QPixmap cachedPixmap_; // caching of current viewport content (high quality scaled image)
|
||||
QRect cachedRect_; // rectangle containing the cached region (in viewport coordinate)
|
||||
QRect cachedSceneRect_; // rectangle containing the cached region (in scene/original image coordinate)
|
||||
|
@ -48,7 +48,7 @@ bool LoadImageJob::run() {
|
||||
GInputStream* inputStream = G_INPUT_STREAM(fileStream);
|
||||
while(!g_cancellable_is_cancelled(cancellable_)) {
|
||||
char buffer[4096];
|
||||
gssize readSize = g_input_stream_read(inputStream,
|
||||
gssize readSize = g_input_stream_read(inputStream,
|
||||
buffer, 4096,
|
||||
cancellable_, &error_);
|
||||
if(readSize == -1 || readSize == 0) // error or EOF
|
||||
@ -57,7 +57,7 @@ bool LoadImageJob::run() {
|
||||
imageBuffer.buffer().append(buffer, readSize);
|
||||
}
|
||||
g_input_stream_close(inputStream, NULL, NULL);
|
||||
|
||||
|
||||
// FIXME: maybe it's a better idea to implement a GInputStream based QIODevice.
|
||||
if(!error_ && !g_cancellable_is_cancelled(cancellable_)) { // load the image from buffer if there are no errors
|
||||
image_ = QImage::fromData(imageBuffer.buffer());
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include <QShortcut>
|
||||
#include <QDockWidget>
|
||||
#include <QScrollBar>
|
||||
#include <QDesktopWidget>
|
||||
#include "application.h"
|
||||
#include <libfm-qt/path.h>
|
||||
#include <libfm-qt/folderview.h>
|
||||
@ -66,24 +67,27 @@ MainWindow::MainWindow():
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
app->addWindow();
|
||||
|
||||
Settings& settings = app->settings();
|
||||
|
||||
ui.setupUi(this);
|
||||
connect(ui.actionScreenshot, SIGNAL(triggered(bool)), app, SLOT(screenshot()));
|
||||
connect(ui.actionPreferences, SIGNAL(triggered(bool)), app ,SLOT(editPreferences()));
|
||||
|
||||
|
||||
proxyModel_->addFilter(modelFilter_);
|
||||
proxyModel_->sort(Fm::FolderModel::ColumnFileName, Qt::AscendingOrder);
|
||||
proxyModel_->setSourceModel(folderModel_);
|
||||
|
||||
|
||||
// build context menu
|
||||
ui.view->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
connect(ui.view, SIGNAL(customContextMenuRequested(QPoint)), SLOT(onContextMenu(QPoint)));
|
||||
|
||||
// install an event filter on the image view
|
||||
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);
|
||||
|
||||
|
||||
contextMenu_->addAction(ui.actionPrevious);
|
||||
contextMenu_->addAction(ui.actionNext);
|
||||
contextMenu_->addSeparator();
|
||||
@ -255,7 +259,7 @@ QString MainWindow::saveFileName(QString defaultName) {
|
||||
break;
|
||||
}
|
||||
// FIXME: should we generate better filter strings? one format per item?
|
||||
|
||||
|
||||
QString fileName = QFileDialog::getSaveFileName(
|
||||
this, tr("Save File"), defaultName, tr("Image files (%1)").arg(filterStr));
|
||||
|
||||
@ -273,7 +277,13 @@ void MainWindow::on_actionOpenFile_triggered() {
|
||||
}
|
||||
|
||||
void MainWindow::on_actionNewWindow_triggered() {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
MainWindow* window = new MainWindow();
|
||||
window->resize(app->settings().windowWidth(), app->settings().windowHeight());
|
||||
|
||||
if(app->settings().windowMaximized())
|
||||
window->setWindowState(window->windowState() | Qt::WindowMaximized);
|
||||
|
||||
window->show();
|
||||
}
|
||||
|
||||
@ -428,6 +438,10 @@ void MainWindow::onImageLoaded(LoadImageJob* job) {
|
||||
// if there are errors
|
||||
// TODO: show a info bar?
|
||||
}
|
||||
|
||||
/* we resized and moved the window without showing
|
||||
it in updateUI(), so we need to show it here */
|
||||
show();
|
||||
}
|
||||
|
||||
void MainWindow::onImageSaved(SaveImageJob* job) {
|
||||
@ -513,28 +527,56 @@ void MainWindow::updateUI() {
|
||||
if(currentFile_) {
|
||||
char* dispName = fm_path_display_basename(currentFile_);
|
||||
if(loadJob_) { // if loading is in progress
|
||||
title = tr("%1 (Loading...) - Image Viewer")
|
||||
title = tr("[*]%1 (Loading...) - Image Viewer")
|
||||
.arg(QString::fromUtf8(dispName));
|
||||
}
|
||||
else {
|
||||
if(image_.isNull()) {
|
||||
title = tr("%1 (Failed to Load) - Image Viewer")
|
||||
title = tr("[*]%1 (Failed to Load) - Image Viewer")
|
||||
.arg(QString::fromUtf8(dispName));
|
||||
}
|
||||
else {
|
||||
title = tr("%1 (%2x%3) - Image Viewer")
|
||||
title = tr("[*]%1 (%2x%3) - Image Viewer")
|
||||
.arg(QString::fromUtf8(dispName))
|
||||
.arg(image_.width())
|
||||
.arg(image_.height());
|
||||
/* Here we try to implement the following behavior as far as possible:
|
||||
(1) A minimum size of 400x400 is assumed;
|
||||
(2) The window is scaled to fit the image;
|
||||
(3) But for too big images, the window is scaled down;
|
||||
(4) The window is centered on the screen. */
|
||||
if (!isVisible()) {
|
||||
/* To have a correct position, we should move the window BEFORE
|
||||
it's shown but we also need to know the dimensions of its view.
|
||||
Therefore, we use show() without really showing the window. */
|
||||
setAttribute(Qt::WA_DontShowOnScreen);
|
||||
show();
|
||||
int scrollThickness = style()->pixelMetric(QStyle::PM_ScrollBarExtent);
|
||||
QSize newSize = size() + image_.size() - ui.view->size() + QSize(scrollThickness, scrollThickness);
|
||||
QRect ag = QApplication::desktop()->availableGeometry();
|
||||
// since the window isn't decorated yet, we have to assume a max thickness for its frame
|
||||
QSize maxFrame = QSize(50, 100);
|
||||
if (newSize.width() > ag.width() - maxFrame.width() || newSize.height() > ag.height() - maxFrame.height())
|
||||
newSize.scale (ag.width() - maxFrame.width(), ag.height() - maxFrame.height(), Qt::KeepAspectRatio);
|
||||
// a minimum size of 400x400 is good
|
||||
if (newSize.width() < 400) newSize.rwidth() = 400;
|
||||
if (newSize.height() < 400 ) newSize.rheight() = 400;
|
||||
move (ag.x() + (ag.width() - newSize.width())/2,
|
||||
ag.y() + (ag.height() - newSize.height())/2);
|
||||
resize(newSize);
|
||||
hide(); // hide it to show it again later, at onImageLoaded()
|
||||
setAttribute(Qt::WA_DontShowOnScreen, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
g_free(dispName);
|
||||
// TODO: update status bar, show current index in the folder
|
||||
}
|
||||
else {
|
||||
title = tr("Image Viewer");
|
||||
title = tr("[*]Image Viewer");
|
||||
}
|
||||
setWindowTitle(title);
|
||||
setWindowModified(imageModified_);
|
||||
}
|
||||
|
||||
// Load the specified image file asynchronously in a worker thread.
|
||||
@ -558,11 +600,28 @@ void MainWindow::loadImage(FmPath* filePath, QModelIndex index) {
|
||||
// clear current image, but do not update the view now to prevent flickers
|
||||
image_ = QImage();
|
||||
|
||||
// start a new gio job to load the specified image
|
||||
loadJob_ = new LoadImageJob(this, filePath);
|
||||
loadJob_->start();
|
||||
const char* basename = fm_path_get_basename(currentFile_);
|
||||
char* mimeType = g_content_type_guess(basename, NULL, 0, NULL);
|
||||
if(mimeType && strcmp(mimeType, "image/gif") == 0) {
|
||||
g_free(mimeType);
|
||||
char *file_Name = fm_path_to_str(currentFile_);
|
||||
QString fileName(file_Name);
|
||||
g_free(file_Name);
|
||||
ui.view->setAutoZoomFit(true); // like in onImageLoaded()
|
||||
ui.view->setGifAnimation(fileName);
|
||||
image_ = ui.view->image();
|
||||
updateUI();
|
||||
show();
|
||||
}
|
||||
else {
|
||||
if(mimeType)
|
||||
g_free(mimeType);
|
||||
// start a new gio job to load the specified image
|
||||
loadJob_ = new LoadImageJob(this, filePath);
|
||||
loadJob_->start();
|
||||
|
||||
updateUI();
|
||||
updateUI();
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::saveImage(FmPath* filePath) {
|
||||
@ -574,24 +633,56 @@ void MainWindow::saveImage(FmPath* filePath) {
|
||||
// FIXME: add a cancel button to the UI? update status bar?
|
||||
}
|
||||
|
||||
QGraphicsItem* MainWindow::getGifItem() {
|
||||
if(!ui.view->items().isEmpty()) {
|
||||
QGraphicsItem *gifItem = ui.view->items().at(0);
|
||||
if(gifItem->isWidget()) // we have gif animation
|
||||
return gifItem;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void MainWindow::on_actionRotateClockwise_triggered() {
|
||||
QGraphicsItem *gifItem = getGifItem();
|
||||
if(!image_.isNull()) {
|
||||
QTransform transform;
|
||||
transform.rotate(90.0);
|
||||
image_ = image_.transformed(transform, Qt::SmoothTransformation);
|
||||
ui.view->setImage(image_);
|
||||
/* when this is a gif animation, we need to rotate the first frame
|
||||
without showing it to have the right measure for auto-zooming */
|
||||
ui.view->setImage(image_, gifItem ? false : true);
|
||||
setModified(true);
|
||||
}
|
||||
|
||||
if(gifItem) {
|
||||
QTransform transform;
|
||||
transform.translate(gifItem->sceneBoundingRect().height(), 0);
|
||||
transform.rotate(90);
|
||||
// we need to apply transformations in the reverse order
|
||||
QTransform prevTrans = gifItem->transform();
|
||||
gifItem->setTransform(transform, false);
|
||||
gifItem->setTransform(prevTrans, true);
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_actionRotateCounterclockwise_triggered() {
|
||||
QGraphicsItem *gifItem = getGifItem();
|
||||
if(!image_.isNull()) {
|
||||
QTransform transform;
|
||||
transform.rotate(-90.0);
|
||||
image_ = image_.transformed(transform, Qt::SmoothTransformation);
|
||||
ui.view->setImage(image_);
|
||||
ui.view->setImage(image_, gifItem ? false : true);
|
||||
setModified(true);
|
||||
}
|
||||
|
||||
if(gifItem) {
|
||||
QTransform transform;
|
||||
transform.translate(0, gifItem->sceneBoundingRect().width());
|
||||
transform.rotate(-90);
|
||||
QTransform prevTrans = gifItem->transform();
|
||||
gifItem->setTransform(transform, false);
|
||||
gifItem->setTransform(prevTrans, true);
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_actionCopy_triggered() {
|
||||
@ -617,26 +708,44 @@ void MainWindow::on_actionPaste_triggered() {
|
||||
}
|
||||
|
||||
void MainWindow::on_actionFlipVertical_triggered() {
|
||||
if(!image_.isNull()) {
|
||||
if(QGraphicsItem *gifItem = getGifItem()) {
|
||||
QTransform transform;
|
||||
transform.scale(1, -1);
|
||||
transform.translate(0, -gifItem->sceneBoundingRect().height());
|
||||
QTransform prevTrans = gifItem->transform();
|
||||
gifItem->setTransform(transform, false);
|
||||
gifItem->setTransform(prevTrans, true);
|
||||
setModified(true);
|
||||
/* we don't need to flip the first frame because its position
|
||||
and dimensions are the same as before while it isn't shown */
|
||||
}
|
||||
else if(!image_.isNull()) {
|
||||
image_ = image_.mirrored(false, true);
|
||||
ui.view->setImage(image_);
|
||||
setModified(true);
|
||||
}
|
||||
setModified(true);
|
||||
}
|
||||
|
||||
void MainWindow::on_actionFlipHorizontal_triggered() {
|
||||
if(!image_.isNull()) {
|
||||
if(QGraphicsItem *gifItem = getGifItem()) {
|
||||
QTransform transform;
|
||||
transform.scale(-1, 1);
|
||||
transform.translate(-gifItem->sceneBoundingRect().width(), 0);
|
||||
QTransform prevTrans = gifItem->transform();
|
||||
gifItem->setTransform(transform, false);
|
||||
gifItem->setTransform(prevTrans, true);
|
||||
setModified(true);
|
||||
}
|
||||
else if(!image_.isNull()) {
|
||||
image_ = image_.mirrored(true, false);
|
||||
ui.view->setImage(image_);
|
||||
setModified(true);
|
||||
}
|
||||
setModified(true);
|
||||
}
|
||||
|
||||
void MainWindow::setModified(bool modified) {
|
||||
imageModified_ = modified;
|
||||
updateUI(); // TODO: update title bar to reflect the state change
|
||||
updateUI();
|
||||
}
|
||||
|
||||
void MainWindow::applySettings() {
|
||||
@ -722,6 +831,13 @@ void MainWindow::setShowThumbnails(bool show) {
|
||||
thumbnailsView_->setFixedHeight(listView->gridSize().height() + scrollHeight);
|
||||
thumbnailsView_->setModel(proxyModel_);
|
||||
proxyModel_->setShowThumbnails(true);
|
||||
if (currentFile_) { // select the loaded image
|
||||
currentIndex_ = indexFromPath(currentFile_);
|
||||
listView->setCurrentIndex(currentIndex_);
|
||||
// wait to center the selection
|
||||
QCoreApplication::processEvents();
|
||||
listView->scrollTo(currentIndex_, QAbstractItemView::PositionAtCenter);
|
||||
}
|
||||
connect(thumbnailsView_->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SLOT(onThumbnailSelChanged(QItemSelection,QItemSelection)));
|
||||
}
|
||||
}
|
||||
@ -779,6 +895,33 @@ void MainWindow::changeEvent(QEvent* 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) {
|
||||
contextMenu_->exec(ui.view->mapToGlobal(pos));
|
||||
}
|
||||
|
@ -50,12 +50,12 @@ class MainWindow : public QMainWindow {
|
||||
public:
|
||||
friend class LoadImageJob;
|
||||
friend class SaveImageJob;
|
||||
|
||||
|
||||
MainWindow();
|
||||
virtual ~MainWindow();
|
||||
|
||||
void openImageFile(QString fileName);
|
||||
|
||||
|
||||
QImage image() const {
|
||||
return image_;
|
||||
}
|
||||
@ -76,10 +76,12 @@ protected:
|
||||
QString openFileName();
|
||||
QString saveFileName(QString defaultName = QString());
|
||||
virtual void changeEvent(QEvent * event);
|
||||
virtual void resizeEvent(QResizeEvent *event);
|
||||
virtual void closeEvent(QCloseEvent *event);
|
||||
|
||||
void onImageLoaded(LoadImageJob* job);
|
||||
void onImageSaved(SaveImageJob* job);
|
||||
|
||||
|
||||
virtual bool eventFilter(QObject* watched, QEvent* event);
|
||||
private Q_SLOTS:
|
||||
void on_actionAbout_triggered();
|
||||
@ -124,6 +126,7 @@ private:
|
||||
void updateUI();
|
||||
void setModified(bool modified);
|
||||
QModelIndex indexFromPath(FmPath* filePath);
|
||||
QGraphicsItem* getGifItem();
|
||||
|
||||
// GObject related signal handers and callbacks
|
||||
static void _onFolderLoaded(FmFolder* folder, MainWindow* _this) {
|
||||
|
@ -7,7 +7,7 @@
|
||||
<!-- file paths to open in new windows -->
|
||||
<arg type="as" direction="in"/>
|
||||
</method>
|
||||
|
||||
|
||||
<!-- launch a tool to take a screenshot -->
|
||||
<method name="screenshot" />
|
||||
|
||||
|
@ -33,7 +33,7 @@ PreferencesDialog::PreferencesDialog(QWidget* parent):
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
Settings& settings = app->settings();
|
||||
app->addWindow();
|
||||
|
||||
|
||||
initIconThemes(settings);
|
||||
ui.bgColor->setColor(settings.bgColor());
|
||||
ui.fullScreenBgColor->setColor(settings.fullScreenBgColor());
|
||||
@ -59,8 +59,8 @@ void PreferencesDialog::accept() {
|
||||
QIcon::setThemeName(newIconTheme);
|
||||
// update the UI by emitting a style change event
|
||||
Q_FOREACH(QWidget *widget, QApplication::allWidgets()) {
|
||||
QEvent event(QEvent::StyleChange);
|
||||
QApplication::sendEvent(widget, &event);
|
||||
QEvent event(QEvent::StyleChange);
|
||||
QApplication::sendEvent(widget, &event);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -68,7 +68,7 @@ void PreferencesDialog::accept() {
|
||||
settings.setBgColor(ui.bgColor->color());
|
||||
settings.setFullScreenBgColor(ui.fullScreenBgColor->color());
|
||||
settings.setSlideShowInterval(ui.slideShowInterval->value());
|
||||
|
||||
|
||||
settings.save();
|
||||
QDialog::accept();
|
||||
app->applySettings();
|
||||
@ -124,7 +124,7 @@ void PreferencesDialog::initIconThemes(Settings& settings) {
|
||||
for(i = 0; i < n; ++i) {
|
||||
QVariant itemData = ui.iconTheme->itemData(i);
|
||||
if(itemData == settings.fallbackIconTheme()) {
|
||||
break;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(i >= n)
|
||||
|
@ -33,7 +33,7 @@ class PreferencesDialog : public QDialog {
|
||||
public:
|
||||
explicit PreferencesDialog(QWidget* parent = 0);
|
||||
virtual ~PreferencesDialog();
|
||||
|
||||
|
||||
virtual void accept();
|
||||
virtual void done(int r);
|
||||
|
||||
|
@ -73,7 +73,11 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QSpinBox" name="slideShowInterval"/>
|
||||
<widget class="QSpinBox" name="slideShowInterval">
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
|
@ -40,7 +40,7 @@ SaveImageJob::~SaveImageJob() {
|
||||
// This is called from the worker thread, not main thread
|
||||
bool SaveImageJob::run() {
|
||||
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);
|
||||
|
||||
if(fileStream) { // if the file stream is successfually opened
|
||||
|
@ -29,7 +29,7 @@
|
||||
namespace LxImage {
|
||||
|
||||
class MainWindow;
|
||||
|
||||
|
||||
class SaveImageJob : public Job {
|
||||
|
||||
public:
|
||||
@ -46,7 +46,7 @@ public:
|
||||
protected:
|
||||
virtual bool run();
|
||||
virtual void finish();
|
||||
|
||||
|
||||
private:
|
||||
~SaveImageJob(); // prevent direct deletion
|
||||
|
||||
|
@ -47,7 +47,7 @@ ScreenshotDialog::ScreenshotDialog(QWidget* parent, Qt::WindowFlags f): QDialog(
|
||||
|
||||
ScreenshotDialog::~ScreenshotDialog() {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
app->removeWindow();
|
||||
app->removeWindow();
|
||||
}
|
||||
|
||||
void ScreenshotDialog::done(int r) {
|
||||
@ -150,7 +150,6 @@ void ScreenshotDialog::doScreenshot() {
|
||||
if(cursor) {
|
||||
if(cursor->pixels) { // pixles should be an ARGB array
|
||||
QImage cursorImage;
|
||||
quint32* buf = NULL;
|
||||
if(sizeof(long) == 4) {
|
||||
// FIXME: will we encounter byte-order problems here?
|
||||
cursorImage = QImage((uchar*)cursor->pixels, cursor->width, cursor->height, QImage::Format_ARGB32);
|
||||
@ -160,13 +159,11 @@ void ScreenshotDialog::doScreenshot() {
|
||||
quint32* buf = new quint32[len];
|
||||
for(long i = 0; i < len; ++i)
|
||||
buf[i] = (quint32)cursor->pixels[i];
|
||||
cursorImage = QImage((uchar*)buf, cursor->width, cursor->height, QImage::Format_ARGB32);
|
||||
cursorImage = QImage((uchar*)buf, cursor->width, cursor->height, QImage::Format_ARGB32, [](void* b) { delete[] (quint32*)b; }, buf);
|
||||
}
|
||||
// paint the cursor on the current image
|
||||
QPainter painter(&image);
|
||||
painter.drawImage(cursor->x - cursor->xhot, cursor->y - cursor->yhot, cursorImage);
|
||||
if(buf)
|
||||
delete []buf;
|
||||
}
|
||||
XFree(cursor);
|
||||
}
|
||||
|
@ -31,7 +31,12 @@ Settings::Settings():
|
||||
showSidePane_(false),
|
||||
fullScreenBgColor_(0, 0, 0),
|
||||
fallbackIconTheme_("oxygen"),
|
||||
slideShowInterval_(5) {
|
||||
slideShowInterval_(5),
|
||||
fixedWindowWidth_(640),
|
||||
fixedWindowHeight_(480),
|
||||
lastWindowWidth_(640),
|
||||
lastWindowHeight_(480),
|
||||
lastWindowMaximized_(false) {
|
||||
}
|
||||
|
||||
Settings::~Settings() {
|
||||
@ -45,15 +50,36 @@ bool Settings::load() {
|
||||
// showThumbnails_;
|
||||
// showSidePane_;
|
||||
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;
|
||||
}
|
||||
|
||||
bool Settings::save() {
|
||||
QSettings settings("lximage-qt", "settings");
|
||||
|
||||
settings.setValue("fallbackIconTheme", fallbackIconTheme_);
|
||||
settings.setValue("bgColor", bgColor_);
|
||||
settings.setValue("fullScreenBgColor", fullScreenBgColor_);
|
||||
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;
|
||||
}
|
||||
|
||||
|
@ -79,6 +79,63 @@ public:
|
||||
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:
|
||||
bool useFallbackIconTheme_;
|
||||
QColor bgColor_;
|
||||
@ -87,6 +144,13 @@ private:
|
||||
bool showSidePane_;
|
||||
int slideShowInterval_;
|
||||
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
|
6
src/translations/lximage-qt-screenshot_pl.desktop
Normal file
6
src/translations/lximage-qt-screenshot_pl.desktop
Normal file
@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Name[pl]=Zrzut ekranu
|
||||
GenericName[pl]=Zrzut ekranu
|
||||
Comment[pl]=Wykonaj zrzut ekranu
|
||||
|
||||
#TRANSLATIONS_DIR=translations
|
4
src/translations/lximage-qt-screenshot_ru.desktop
Normal file
4
src/translations/lximage-qt-screenshot_ru.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[ru]=Снимок экрана
|
||||
GenericName[ru]=Снимок экрана
|
||||
Comment[ru]=Сделать снимок экрана
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,28 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de_DE">
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished">Erstelle ein Bildschirmfoto</translation>
|
||||
<translation>Bildschirmfoto erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation type="unfinished">[Datei1, Datei2,...]</translation>
|
||||
<translation>[Datei1, Datei2,...]</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">Über</translation>
|
||||
<translation>Über</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -30,7 +30,7 @@ LXDE Project: http://lxde.org/
|
||||
|
||||
Authors:
|
||||
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
|
||||
LXDE Project: http://lxde.org/
|
||||
@ -39,45 +39,45 @@ Autor:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation type="unfinished">Öffne Datei</translation>
|
||||
<translation>Datei öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation type="unfinished">Bilddateien (%1)</translation>
|
||||
<translation>Bilddateien (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation type="unfinished">Speichere Datei</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>
|
||||
<translation>Datei speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<translation type="unfinished">%1 (%2x%3) - Bildbetrachter</translation>
|
||||
<translation>%1 (%2x%3) - Bildbetrachter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished">Bildbetrachter</translation>
|
||||
<translation>Bildbetrachter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished">Miniaturen</translation>
|
||||
<translation>Miniaturen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -85,28 +85,29 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="412"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished">Bildbetrachter</translation>
|
||||
<translation>Bildbetrachter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished">&Über</translation>
|
||||
<translation>&Über</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
||||
<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>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="416"/>
|
||||
<source>&Save</source>
|
||||
<translation type="unfinished">&Speichern</translation>
|
||||
<translation>&Speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
||||
@ -116,7 +117,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
||||
<source>Save &As</source>
|
||||
<translation type="unfinished">Speichern &unter</translation>
|
||||
<translation>Speichern &unter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
||||
@ -126,7 +127,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished">Sch&ließen</translation>
|
||||
<translation>Sch&ließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
||||
@ -136,7 +137,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
||||
<source>Zoom &In</source>
|
||||
<translation type="unfinished">Ver&größern</translation>
|
||||
<translation>Ver&größern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
||||
@ -146,7 +147,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||
<source>Zoom &Out</source>
|
||||
<translation type="unfinished">Ver&kleinern</translation>
|
||||
<translation>Ver&kleinern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||
@ -156,19 +157,19 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
||||
<source>&Copy to Clipboard</source>
|
||||
<translation type="unfinished">In die &Zwischenablage einfügen</translation>
|
||||
<translation>In die &Zwischenablage einfügen</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 type="unfinished">Nächste Datei</translation>
|
||||
<translation>Nächste Datei</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 type="unfinished">Vorige Datei</translation>
|
||||
<translation>Vorige Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||
@ -183,32 +184,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
||||
<source>Original Size</source>
|
||||
<translation type="unfinished">Originalgröße</translation>
|
||||
<translation>Originalgröße</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
||||
<source>&Fit</source>
|
||||
<translation type="unfinished">Passen&d</translation>
|
||||
<translation>Passen&d</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
||||
<source>&Rotate Clockwise</source>
|
||||
<translation type="unfinished">Im &Uhrzeigersinn drehen</translation>
|
||||
<translation>Im &Uhrzeigersinn drehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
||||
<source>Rotate &Counterclockwise</source>
|
||||
<translation type="unfinished">&Gegen den Uhrzeigersinn drehen</translation>
|
||||
<translation>&Gegen den Uhrzeigersinn drehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
||||
<source>P&references</source>
|
||||
<translation type="unfinished">Vo&rgaben</translation>
|
||||
<translation>Einste&llungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
||||
<source>&Print</source>
|
||||
<translation type="unfinished">&Drucken</translation>
|
||||
<translation>&Drucken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
||||
@ -218,7 +219,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
||||
<source>First File</source>
|
||||
<translation type="unfinished">Erste Datei</translation>
|
||||
<translation>Erste Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
||||
@ -228,7 +229,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
||||
<source>Last File</source>
|
||||
<translation type="unfinished">Letzte Datei</translation>
|
||||
<translation>Letzte Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
||||
@ -238,7 +239,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="448"/>
|
||||
<source>&New Window</source>
|
||||
<translation type="unfinished">&Neues Fenster</translation>
|
||||
<translation>&Neues Fenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
||||
@ -248,17 +249,17 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
||||
<source>Flip &Horizontally</source>
|
||||
<translation type="unfinished">&Horizontal spiegeln</translation>
|
||||
<translation>&Horizontal spiegeln</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
||||
<source>Capture Screenshot</source>
|
||||
<translation type="unfinished">Bildschirmfoto erstellen</translation>
|
||||
<translation>Bildschirmfoto erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="452"/>
|
||||
<source>F&ull Screen</source>
|
||||
<translation type="unfinished">&Gesamter Bildschirm</translation>
|
||||
<translation>&Gesamter Bildschirm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
||||
@ -268,22 +269,22 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
||||
<source>Flip &Vertically</source>
|
||||
<translation type="unfinished">&Vertikal spiegeln</translation>
|
||||
<translation>&Vertikal spiegeln</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
||||
<source>&Paste from Clipboard</source>
|
||||
<translation type="unfinished">&Aus Zwischenablage einfügen</translation>
|
||||
<translation>&Aus Zwischenablage einfügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
||||
<source>&Slide Show</source>
|
||||
<translation type="unfinished">&Diaschau</translation>
|
||||
<translation>&Diaschau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished">&Löschen</translation>
|
||||
<translation>&Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
||||
@ -293,76 +294,76 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||
<source>Show Thumbnails</source>
|
||||
<translation type="unfinished">Zeige Miniaturen</translation>
|
||||
<translation>Miniaturen anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||
<source>File Properties</source>
|
||||
<translatorcomment>Übersetzung von 'file' weggelassen, da redundant.</translatorcomment>
|
||||
<translation type="unfinished">Eigenschaften</translation>
|
||||
<translatorcomment>Translation of 'file' skipped, it is redundant (this is the file menu).</translatorcomment>
|
||||
<translation>Eigenschaften</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||
<source>&File</source>
|
||||
<translation type="unfinished">&Datei</translation>
|
||||
<translation>&Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="462"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished">&Hilfe</translation>
|
||||
<translation>&Hilfe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="463"/>
|
||||
<source>Go</source>
|
||||
<translation type="unfinished">Gehe zu</translation>
|
||||
<translation>Gehe zu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="464"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished">&Ansicht</translation>
|
||||
<translation>&Ansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="465"/>
|
||||
<source>&Edit</source>
|
||||
<translation type="unfinished">&Bearbeiten</translation>
|
||||
<translation>&Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
||||
<source>Toolbar</source>
|
||||
<translation type="unfinished">Werkzeugleiste</translation>
|
||||
<translation>Werkzeugleiste</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished">Vorgaben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished">Symboldesign:</translation>
|
||||
<source>Preferences</source>
|
||||
<translation>Einstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished">Normale Hintergrundfarbe:</translation>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Symboldesign:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished">Vollbild-Hintergrundfarbe:</translation>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Normale Hintergrundfarbe:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished">Diaschau Bildwechsel (Sekunden):</translation>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Vollbild-Hintergrundfarbe:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<translation type="unfinished">Allgemein</translation>
|
||||
<translation>Allgemein</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -370,47 +371,47 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="123"/>
|
||||
<source>Screenshot</source>
|
||||
<translation type="unfinished">Bildschirmfoto</translation>
|
||||
<translation>Bildschirmfoto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="124"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished">Erstelle ein Bildschirmfoto</translation>
|
||||
<translation>Bildschirmfoto erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="125"/>
|
||||
<source>Region</source>
|
||||
<translation type="unfinished">Bereich</translation>
|
||||
<translation>Bereich</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="126"/>
|
||||
<source>Whole screen</source>
|
||||
<translation type="unfinished">Genzer Bildschirm</translation>
|
||||
<translation>Gesamter Bildschirm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="127"/>
|
||||
<source>Current window only</source>
|
||||
<translation type="unfinished">Nur aktuelles Fenster</translation>
|
||||
<translation>Nur aktuelles Fenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="128"/>
|
||||
<source>Include mouse cursor</source>
|
||||
<translation type="unfinished">Einschließlich Mauszeiger</translation>
|
||||
<translation>Einschließlich Mauszeiger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="129"/>
|
||||
<source> seconds</source>
|
||||
<translation type="unfinished"> Sekunden</translation>
|
||||
<translation> Sekunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="130"/>
|
||||
<source>Delay:</source>
|
||||
<translation type="unfinished">Verzögerung:</translation>
|
||||
<translation>Verzögerung:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="131"/>
|
||||
<source>Include window title and frame</source>
|
||||
<translation type="unfinished">Einschließlich Fenstertitel und Rahmen</translation>
|
||||
<translation>Einschließlich Fenstertitel und Rahmen</translation>
|
||||
</message>
|
||||
</context>
|
||||
</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="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Λήψη ενός στιγμιότυπου</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[ΑΡΧΕΙΟ1, ΑΡΧΕΙΟ2,...]</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Σχετικά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<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="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Άνοιγμα αρχείου</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Αρχεία εικόνων (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Αποθήκευση αρχείου</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Φορτώνεται....) - Προβολέας εικόνων</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Αποτυχία φόρτωσης) - Προβολέας εικόνων</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Προβολέας εικόνων</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Προβολέας εικόνων</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<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="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Προτιμήσεις</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Θέμα εικονιδίων:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Τυπικό χρώμα παρασκηνίου:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Χρώμα παρασκηνίου πλήρους οθόνης: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation>Χρονική καθυστέρηση προβολής διαφανειών (δευτερόλεπτα):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<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>
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Capturar la pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[ARCHIVO1, ARCHIVO2, …]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Acerca de</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Autores:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Abrir un archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Imágenes (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Guardar el archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (cargando…) – Visor de imágenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (falló la carga) – Visor de imágenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2 × %3) – Visor de imágenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Visor de imágenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Obter unha captura de pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[FICHEIRO1, FICHEIRO2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Autores:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Abrir ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Ficheiros de imaxe (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Gardar o ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Cargando...) - visor de imaxes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Fallou a carga) - visor de imaxes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - visor de imaxes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Visor de imaxes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Napravi sliku zaslona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[DATOTEKA1, DATOTEKA2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>O programu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Autori:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Otvori datoteku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Datoteke slika (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Spremi datoteku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Učitavam...) - Preglednik slika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (neuspjelo učitavanje) - Pregledmik slika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Preglednik slika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Preglednik slika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Osobitosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
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="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Képernyőkép</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Rólunk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<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="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Fájl megnyitás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Képfájlok (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Fájl mentés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Betöltés...) - Képnéző</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<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="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (Loading...) - Képnéző</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Képnéző</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<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="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Beállítások</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Ikontéma:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Normál háttérszín:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Teljeskép háttérszín:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation>Diaváltás (másodperc):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<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>
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Ambil cuplikan layar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[BERKAS1, BERKAS2, ...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Tentang</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Penulis:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Buka Berkas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Berkas gambar (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Simpan Berkas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Memuat...) - Penampil Gambar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Gagal Dimuat) - Penampil Gambar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Penampil Gambar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Penampil Gambar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -347,32 +347,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferensi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="it" sourcelanguage="it">
|
||||
<TS version="2.0" language="it" sourcelanguage="it">
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Cattura una schermata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[File1, File2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>A proposito</translation>
|
||||
<translation>Informazioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -31,52 +31,52 @@ LXDE Project: http://lxde.org/
|
||||
Authors:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<translatorcomment>need update...</translatorcomment>
|
||||
<translation type="unfinished">LXImage - un visualizzatore immagini semplice e veloce
|
||||
<translation>LXImage - un visualizzatore immagini semplice e veloce
|
||||
|
||||
Copyright (C) 2013
|
||||
LXDE Project: http://lxde.org/
|
||||
|
||||
Autor:
|
||||
Autori:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Apri file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>File immagini (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Salva file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Caricando...) - Visualizzatore immagini</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Errore in caricamento) - Visualizzatore immagini</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Visualizzatore Immagini</translation>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Caricamento in corso...) - Visualizzatore immagini</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Caricamento non riuscito) - Visualizzatore immagini</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Visualizzatore immagini</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Visualizzatore immagini</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation>Miniature</translation>
|
||||
</message>
|
||||
@ -91,12 +91,12 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
||||
<source>&About</source>
|
||||
<translation>A &proposito</translation>
|
||||
<translation>Inform&azioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
||||
<source>&Open File</source>
|
||||
<translation>&Apri</translation>
|
||||
<translation>&Apri file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
||||
@ -112,7 +112,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
||||
<source>Ctrl+S</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl+S</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
||||
@ -122,7 +122,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
||||
@ -132,7 +132,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
||||
@ -142,7 +142,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
||||
<source>Ctrl++</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl++</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||
@ -152,7 +152,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||
<source>Ctrl+-</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl+-</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
||||
@ -163,13 +163,13 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="427"/>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="429"/>
|
||||
<source>Next File</source>
|
||||
<translation>Prossimo</translation>
|
||||
<translation>File successivo</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>Precedente</translation>
|
||||
<translation>File precedente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||
@ -179,57 +179,57 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="436"/>
|
||||
<source>PgUp</source>
|
||||
<translation>Pagina sù</translation>
|
||||
<translation>Pagina su</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
||||
<source>Original Size</source>
|
||||
<translation type="unfinished">&Dimensioni originiali</translation>
|
||||
<translation>Dimensioni originali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
||||
<source>&Fit</source>
|
||||
<translation>&Adatta alla finestra</translation>
|
||||
<translation>&Adatta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
||||
<source>&Rotate Clockwise</source>
|
||||
<translation>Gira a &destra</translation>
|
||||
<translation>&Ruota in senso orario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
||||
<source>Rotate &Counterclockwise</source>
|
||||
<translation>Gira a &sinistra</translation>
|
||||
<translation>Ruota in &senso antiorario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
||||
<source>P&references</source>
|
||||
<translation>&Preferenze</translation>
|
||||
<translation>P&referenze</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
||||
<source>&Print</source>
|
||||
<translation>&Stampa</translation>
|
||||
<translation>Stam&pa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
||||
<source>Ctrl+P</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl+P</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
||||
<source>First File</source>
|
||||
<translation>Primo</translation>
|
||||
<translation>Primo file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
||||
<source>Home</source>
|
||||
<translation></translation>
|
||||
<translation>Home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
||||
<source>Last File</source>
|
||||
<translation>Ultimo</translation>
|
||||
<translation>Ultimo file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
||||
@ -244,12 +244,12 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation></translation>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
||||
<source>Flip &Horizontally</source>
|
||||
<translation>Rispecchia &horizzontalmente</translation>
|
||||
<translation>Rispecchia &orizzontalmente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
||||
@ -264,7 +264,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
||||
<source>F11</source>
|
||||
<translation></translation>
|
||||
<translation>F11</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
||||
@ -274,7 +274,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
||||
<source>&Paste from Clipboard</source>
|
||||
<translation>&Incolla da appunti</translation>
|
||||
<translation>&Incolla dagli appunti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
||||
@ -284,23 +284,23 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Cestina</translation>
|
||||
<translation>&Elimina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
||||
<source>Del</source>
|
||||
<translation></translation>
|
||||
<translation>Canc</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||
<source>Show Thumbnails</source>
|
||||
<translation type="unfinished">&Mostra barra miniature</translation>
|
||||
<translation>Mostra miniature</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||
<source>File Properties</source>
|
||||
<translatorcomment>Übersetzung von 'file' weggelassen, da redundant.</translatorcomment>
|
||||
<translation>Proprietà</translation>
|
||||
<translation>Proprietà del file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||
@ -336,32 +336,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferenze</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Tema icone:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Colore sfondo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Colore sfondo schermo intero:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation>Ritardo presentazione (secondi):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation>Generali</translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>スクリーンショットを撮る</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[ファイル1, ファイル2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>このアプリケーションについて</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ LXDE Project: http://lxde.org/
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>ファイルを開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>画像ファイル (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>ファイルの保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (読み込み中...) - 画像ビューワ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (読み込みに失敗) - 画像ビューワ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - 画像ビューワ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>画像ビューワ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
5
src/translations/lximage-qt_pl.desktop
Normal file
5
src/translations/lximage-qt_pl.desktop
Normal file
@ -0,0 +1,5 @@
|
||||
[Desktop Entry]
|
||||
GenericName[pl]=Przeglądarka obrazów
|
||||
Comment[pl]=Przeglądarka obrazów LXQt
|
||||
|
||||
#TRANSLATIONS_DIR=translations
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Wykonaj zrzut ekranu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[PLIK1, PLIK2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>O programie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,45 +39,45 @@ Autorzy:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Otwórz plik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Pliki obrazów (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Zapisz plik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Wczytywanie...) - Przeglądarka obrazów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Błąd wczytywania) - Przeglądarka obrazów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Przeglądarka obrazów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Przeglądarka obrazów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Miniaturki</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -145,7 +145,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||
<source>Zoom &Out</source>
|
||||
<translation type="unfinished">Po&mniejsz</translation>
|
||||
<translation>Po&mniejsz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||
@ -300,12 +300,12 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||
<source>Show Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pokaż miniaturki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||
<source>File Properties</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Właściwości pliku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||
@ -335,7 +335,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
||||
<source>Toolbar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pasek narzędziowy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>toolBar</source>
|
||||
@ -345,34 +345,34 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Ustawienia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Zestaw ikon:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Kolor tła:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Kolor tła dla pełnego ekranu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation>Interwał pokazu slajdów (sekundy):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ogólne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>TODO: Add configuration options here</source>
|
||||
|
@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="pt">
|
||||
<TS version="2.1" language="pt">
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Obter captura de ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[Ficheiro1, ficheiro2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Autor:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Abrir ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Ficheiros de imagem (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Gravar ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (carregamento...) - Visualizador de imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (falha ao carregar) - Visualizador de imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Visualizador de imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Visualizador de imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation>Miniaturas</translation>
|
||||
</message>
|
||||
@ -165,7 +165,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Right</source>
|
||||
<translation>Direita</translation>
|
||||
<translation type="vanished">Direita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="432"/>
|
||||
@ -175,7 +175,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Left</source>
|
||||
<translation>Esquerda</translation>
|
||||
<translation type="vanished">Esquerda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||
@ -345,46 +345,46 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Tema de ícones:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Cor de fundo normal:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Cor de fundo em ecrã completo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation>Intervalo da apresentação (segundos):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation>Geral</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>TODO: Add configuration options here</source>
|
||||
<translation>Tarefas: Adicionar opções de configuração</translation>
|
||||
<translation type="vanished">Tarefas: Adicionar opções de configuração</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Tab 1</source>
|
||||
<translation>Separador 1</translation>
|
||||
<translation type="vanished">Separador 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Tab 2</source>
|
||||
<translation>Separador 2</translation>
|
||||
<translation type="vanished">Separador 2</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Capturar uma imagem da tela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[FILE1, FILE2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Autores:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Abrir Arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Arquivos de Images (1%)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Salvar Arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Carregando...) - Visualização da Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Falha ao Carregar) - Visualização da Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Visualização da Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Visualizador de Imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -346,32 +346,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
4
src/translations/lximage-qt_ru.desktop
Normal file
4
src/translations/lximage-qt_ru.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[ru]=LXImage
|
||||
GenericName[ru]=Просмотрщик изображений
|
||||
Comment[ru]=Просмотрщик изображений LXQt
|
@ -4,25 +4,25 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Сделать снимок экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>[ФАЙЛ1, ФАЙЛ2, ...]</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>О программе</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -30,48 +30,54 @@ LXDE Project: http://lxde.org/
|
||||
|
||||
Authors:
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXImage - простой и быстрый просмотрщик изображений
|
||||
|
||||
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"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Открыть файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Файлы изображений (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Сохранить файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Загружается...) - Просмотрщик изображений</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Ошибка загрузки) - Просмотрщик изображений</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 (%2x%3) - Просмотрщик изображений</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Просмотрщик изображений</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Эскизы</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -79,282 +85,282 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="412"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Просмотрщик изображений</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="413"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>О &программе</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="414"/>
|
||||
<source>&Open File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Открыть файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="415"/>
|
||||
<source>Ctrl+O</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="416"/>
|
||||
<source>&Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Сохранить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="417"/>
|
||||
<source>Ctrl+S</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="418"/>
|
||||
<source>Save &As</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Сохранить &как</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="419"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="420"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Закрыть</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="421"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="422"/>
|
||||
<source>Zoom &In</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>При&близить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="423"/>
|
||||
<source>Ctrl++</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="424"/>
|
||||
<source>Zoom &Out</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>От&далить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="425"/>
|
||||
<source>Ctrl+-</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="426"/>
|
||||
<source>&Copy to Clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<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 type="unfinished"></translation>
|
||||
<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 type="unfinished"></translation>
|
||||
<translation>Предыдущий файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="431"/>
|
||||
<source>PgDown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="436"/>
|
||||
<source>PgUp</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="437"/>
|
||||
<source>Original Size</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Исходный размер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="438"/>
|
||||
<source>&Fit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Заполнить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="439"/>
|
||||
<source>&Rotate Clockwise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Пове&рнуть по часовой стрелке</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="440"/>
|
||||
<source>Rotate &Counterclockwise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Повернуть &против часовой стрелки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="441"/>
|
||||
<source>P&references</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Настройки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="442"/>
|
||||
<source>&Print</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Печать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="443"/>
|
||||
<source>Ctrl+P</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="444"/>
|
||||
<source>First File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Первый файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="445"/>
|
||||
<source>Home</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="446"/>
|
||||
<source>Last File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Последний файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="447"/>
|
||||
<source>End</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="448"/>
|
||||
<source>&New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Новое &окно</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="449"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="450"/>
|
||||
<source>Flip &Horizontally</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Отразить &горизонтально</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="451"/>
|
||||
<source>Capture Screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Сделать снимок экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="452"/>
|
||||
<source>F&ull Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Полный &экран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="453"/>
|
||||
<source>F11</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="454"/>
|
||||
<source>Flip &Vertically</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Отразить &вертикально</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="455"/>
|
||||
<source>&Paste from Clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Вставить из буфера обмена</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="456"/>
|
||||
<source>&Slide Show</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Слайд-шоу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="457"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Удалить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="458"/>
|
||||
<source>Del</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="459"/>
|
||||
<source>Show Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Показать эскизы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="460"/>
|
||||
<source>File Properties</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Свойства файла</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="461"/>
|
||||
<source>&File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="462"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Помощь</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="463"/>
|
||||
<source>Go</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Перейти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="464"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Вид</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="465"/>
|
||||
<source>&Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Редактировать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_mainwindow.h" line="466"/>
|
||||
<source>Toolbar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Панель инструментов</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Preferences</source>
|
||||
<translation>Настройки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Тема значков:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Normal background color:</source>
|
||||
<translation>Обычный цвет фона:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation>Цвет фона для режима полного экрана:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation>Интервал слайд-шоу (в секундах):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Общие</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -362,47 +368,47 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="123"/>
|
||||
<source>Screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Снимок экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="124"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Сделать снимок экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="125"/>
|
||||
<source>Region</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Область</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="126"/>
|
||||
<source>Whole screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Весь экран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="127"/>
|
||||
<source>Current window only</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Только активное окно</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="128"/>
|
||||
<source>Include mouse cursor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Показывать курсор мыши</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="129"/>
|
||||
<source> seconds</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation> секунд(ы)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="130"/>
|
||||
<source>Delay:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Задержка:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_screenshotdialog.h" line="131"/>
|
||||
<source>Include window title and frame</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Показывать заголовок и обрамление окна</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></source>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>Зробити знімок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[ФАЙЛ1, ФАЙЛ2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>Про програму</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Copyright (C) 2013
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>Відкрити файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>Файли зображень (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>Зберегти файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (Завантаження...) - Переглядач зображень</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (Невдача завантаження) - Переглядач зображень</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - Переглядач зображень</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>Переглядач зображень</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Налаштування</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>抓取屏幕截图</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[文件1, 文件2,...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>关于</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ LXDE 项目:http://lxde.org/
|
||||
Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>打开文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>图像文件 (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>保存文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (正在加载...) - 图像查看器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (加载失败) - 图像查看器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - 图像查看器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>图像查看器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com></translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>偏好设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<context>
|
||||
<name>LxImage::Application</name>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="112"/>
|
||||
<location filename="../application.cpp" line="87"/>
|
||||
<source>Take a screenshot</source>
|
||||
<translation>拍攝螢幕快照</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="113"/>
|
||||
<location filename="../application.cpp" line="91"/>
|
||||
<source>[FILE1, FILE2,...]</source>
|
||||
<translation>[檔案1、檔案2...]</translation>
|
||||
</message>
|
||||
@ -17,12 +17,12 @@
|
||||
<context>
|
||||
<name>LxImage::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="144"/>
|
||||
<location filename="../mainwindow.cpp" line="147"/>
|
||||
<source>About</source>
|
||||
<translation>關於</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="145"/>
|
||||
<location filename="../mainwindow.cpp" line="148"/>
|
||||
<source>LXImage - a simple and fast image viewer
|
||||
|
||||
Copyright (C) 2013
|
||||
@ -39,43 +39,43 @@ Authors:
|
||||
洪任諭 (PCMan) <pcman.tw@gmail.com></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="238"/>
|
||||
<location filename="../mainwindow.cpp" line="241"/>
|
||||
<source>Open File</source>
|
||||
<translation>開啟檔案</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="239"/>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="242"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Image files (%1)</source>
|
||||
<translation>影像檔案 (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="260"/>
|
||||
<location filename="../mainwindow.cpp" line="263"/>
|
||||
<source>Save File</source>
|
||||
<translation>儲存檔案</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="516"/>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<source>%1 (Loading...) - Image Viewer</source>
|
||||
<translation>%1 (正在載入...) - 圖片檢視程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="521"/>
|
||||
<location filename="../mainwindow.cpp" line="530"/>
|
||||
<source>%1 (Failed to Load) - Image Viewer</source>
|
||||
<translation>%1 (載入失敗) - 圖片檢視程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="525"/>
|
||||
<location filename="../mainwindow.cpp" line="534"/>
|
||||
<source>%1 (%2x%3) - Image Viewer</source>
|
||||
<translation>%1 (%2x%3) - 圖片檢視程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="535"/>
|
||||
<location filename="../mainwindow.cpp" line="544"/>
|
||||
<source>Image Viewer</source>
|
||||
<translation>圖片檢視程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="710"/>
|
||||
<location filename="../mainwindow.cpp" line="719"/>
|
||||
<source>Thumbnails</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -345,32 +345,32 @@ Authors:
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="125"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<source>Preferences</source>
|
||||
<translation>偏好設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="126"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="127"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<source>Normal background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="128"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="129"/>
|
||||
<source>Fullscreen background color:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="131"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<source>Slide show interval (seconds):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="132"/>
|
||||
<location filename="../../build/src/ui_preferencesdialog.h" line="133"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
Loading…
x
Reference in New Issue
Block a user