From f0081d0c7c09ea362d3b624a372eeae92b5ed71c Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Thu, 19 Nov 2015 19:57:43 +0100 Subject: [PATCH] Cherry-picking upstream-version 0.4.0+20151117. Fixed VCS-Fields Added lintian-overrides Fixed copyright Fixed gbp.conf --- AUTHORS | 4 +- CMakeLists.txt | 20 ++++++++++ data/lximage-qt.desktop.in | 2 +- debian/changelog | 9 +++++ debian/control | 4 +- debian/copyright | 20 ++-------- debian/gbp.conf | 2 +- debian/lintian-overrides | 3 ++ release.sh | 28 ++++++++++++++ src/imageview.cpp | 6 +++ src/translations/lximage-qt_ca.ts | 38 +++++++++---------- src/translations/lximage-qt_el.ts | 38 +++++++++---------- src/translations/lximage-qt_es.ts | 38 +++++++++---------- src/translations/lximage-qt_gl.ts | 38 +++++++++---------- src/translations/lximage-qt_hr.ts | 38 +++++++++---------- src/translations/lximage-qt_hu.ts | 38 +++++++++---------- src/translations/lximage-qt_id.ts | 38 +++++++++---------- src/translations/lximage-qt_is.ts | 38 +++++++++---------- src/translations/lximage-qt_it.ts | 38 +++++++++---------- src/translations/lximage-qt_ja.ts | 38 +++++++++---------- src/translations/lximage-qt_pa.ts | 38 +++++++++---------- src/translations/lximage-qt_pl.ts | 38 +++++++++---------- src/translations/lximage-qt_pt.ts | 50 ++++++++++++------------- src/translations/lximage-qt_pt_BR.ts | 38 +++++++++---------- src/translations/lximage-qt_ru.ts | 38 +++++++++---------- src/translations/lximage-qt_template.ts | 38 +++++++++---------- src/translations/lximage-qt_uk.ts | 38 +++++++++---------- src/translations/lximage-qt_zh_CN.ts | 38 +++++++++---------- src/translations/lximage-qt_zh_TW.ts | 38 +++++++++---------- 29 files changed, 443 insertions(+), 389 deletions(-) create mode 100644 debian/lintian-overrides create mode 100755 release.sh diff --git a/AUTHORS b/AUTHORS index c8ffdcc..dba5c0a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,7 +3,7 @@ Upstream Authors: Hong Jen Yee (PCMan) 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. diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ac2873..aceea07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,26 @@ 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) diff --git a/data/lximage-qt.desktop.in b/data/lximage-qt.desktop.in index 9fa1f27..80bee7d 100644 --- a/data/lximage-qt.desktop.in +++ b/data/lximage-qt.desktop.in @@ -4,7 +4,7 @@ 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;Core;Qt;Viewer;RasterGraphics;2DGraphics;Photography; diff --git a/debian/changelog b/debian/changelog index b8c2d1e..33e7b54 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +lximage-qt (0.4.0+20151117-1) unstable; urgency=medium + + * Cherry-picked new upstream version 0.4.0+201511117. + * Added lintian-overrride + * Fixed VCS-Fields + * Removed not used GPL2 from copyright + + -- Alf Gaida Thu, 19 Nov 2015 19:57:17 +0100 + lximage-qt (0.4.0+20150828-2) unstable; urgency=medium * Add -fPIE -pie for lintian warning. diff --git a/debian/control b/debian/control index 3ec6547..2d7b588 100644 --- a/debian/control +++ b/debian/control @@ -18,8 +18,8 @@ Build-Depends: debhelper (>= 9), qttools5-dev, qttools5-dev-tools Standards-Version: 3.9.6 -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/lximage-qt.git -Vcs-Git: git://anonscm.debian.org/pkg-lxqt/lximage-qt.git +Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/lximage-qt.git/?h=debian/sid +Vcs-Git: git://anonscm.debian.org/pkg-lxqt/lximage-qt.git -b debian/sid Homepage: https://github.com/lxde/lximage-qt Package: lximage-qt diff --git a/debian/copyright b/debian/copyright index af312b2..036ad8d 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,8 +3,9 @@ Upstream-Name: lximage-qt Source: https://github.com/lxde/lximage-qt Files: * -Copyright: Copyright (c) 2013-2014 LXQt team -License: GPL-2 and LGPL-2.1+ +Copyright: 2013-2015 Hong Jen Yee (PCMan) + 2013-2015 LXQt team +License: GPL-2+ and LGPL-2.1+ Files: src/application.* src/loadimagejob.* @@ -13,7 +14,7 @@ Files: src/application.* src/preferencesdialog.* src/saveimagejob.* src/settings.* -Copyright: Copyright (C) 2013 - 2014 Hong Jen Yee (PCMan) +Copyright: 2013-2015 Hong Jen Yee (PCMan) License: GPL-2+ Files: src/imageview.* @@ -45,19 +46,6 @@ License: LGPL-2.1+ On Debian systems, the complete text of the GNU Lesser General Public License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". -License: GPL-2 - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2 of the License. - . - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in "/usr/share/common-licenses/GPL-2". - License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/debian/gbp.conf b/debian/gbp.conf index 9737966..04ac689 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -1,5 +1,5 @@ [DEFAULT] -debian-branch = debian +debian-branch = debian/sid pristine-tar = True [import-orig] diff --git a/debian/lintian-overrides b/debian/lintian-overrides new file mode 100644 index 0000000..5d32141 --- /dev/null +++ b/debian/lintian-overrides @@ -0,0 +1,3 @@ +# there will be a man page within the next release eventually +binary-without-manpage usr/bin/lximage-qt + diff --git a/release.sh b/release.sh new file mode 100755 index 0000000..d02564b --- /dev/null +++ b/release.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +PROJECT="lximage-qt" +version="$1" +prefix=$PROJECT-$version +shift + +if [[ -z $version ]]; then + >&2 echo "USAGE: $0 " + 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/" diff --git a/src/imageview.cpp b/src/imageview.cpp index 74a57ca..d88867f 100644 --- a/src/imageview.cpp +++ b/src/imageview.cpp @@ -226,6 +226,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 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); diff --git a/src/translations/lximage-qt_ca.ts b/src/translations/lximage-qt_ca.ts index 5b09d2f..a92e89a 100644 --- a/src/translations/lximage-qt_ca.ts +++ b/src/translations/lximage-qt_ca.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot - + [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File - - + + Image files (%1) - + Save File - + %1 (Loading...) - Image Viewer - + %1 (Failed to Load) - Image Viewer - + %1 (%2x%3) - Image Viewer - + Image Viewer - + Thumbnails @@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_el.ts b/src/translations/lximage-qt_el.ts index 1fede9c..c563c09 100644 --- a/src/translations/lximage-qt_el.ts +++ b/src/translations/lximage-qt_el.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Λήψη ενός στιγμιότυπου - + [FILE1, FILE2,...] [ΑΡΧΕΙΟ1, ΑΡΧΕΙΟ2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Σχετικά - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Άνοιγμα αρχείου - - + + Image files (%1) Αρχεία εικόνων (%1) - + Save File Αποθήκευση αρχείου - + %1 (Loading...) - Image Viewer %1 (Φορτώνεται....) - Προβολέας εικόνων - + %1 (Failed to Load) - Image Viewer %1 (Αποτυχία φόρτωσης) - Προβολέας εικόνων - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Προβολέας εικόνων - + Image Viewer Προβολέας εικόνων - + Thumbnails Εικόνες επισκόπησης @@ -333,32 +333,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Προτιμήσεις - + Icon theme: Θέμα εικονιδίων: - + Normal background color: Τυπικό χρώμα παρασκηνίου: - + Fullscreen background color: Χρώμα παρασκηνίου πλήρους οθόνης: - + Slide show interval (seconds): Χρονική καθυστέρηση προβολής διαφανειών (δευτερόλεπτα): - + General Γενικά diff --git a/src/translations/lximage-qt_es.ts b/src/translations/lximage-qt_es.ts index cf9da90..c4b5a60 100644 --- a/src/translations/lximage-qt_es.ts +++ b/src/translations/lximage-qt_es.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Capturar la pantalla - + [FILE1, FILE2,...] [ARCHIVO1, ARCHIVO2, …] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Acerca de - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Autores: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Abrir un archivo - - + + Image files (%1) Imágenes (%1) - + Save File Guardar el archivo - + %1 (Loading...) - Image Viewer %1 (cargando…) – Visor de imágenes - + %1 (Failed to Load) - Image Viewer %1 (falló la carga) – Visor de imágenes - + %1 (%2x%3) - Image Viewer %1 (%2 × %3) – Visor de imágenes - + Image Viewer Visor de imágenes - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Preferencias - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_gl.ts b/src/translations/lximage-qt_gl.ts index 30d1b8b..36976a3 100644 --- a/src/translations/lximage-qt_gl.ts +++ b/src/translations/lximage-qt_gl.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Obter unha captura de pantalla - + [FILE1, FILE2,...] [FICHEIRO1, FICHEIRO2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Sobre - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Autores: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Abrir ficheiro - - + + Image files (%1) Ficheiros de imaxe (%1) - + Save File Gardar o ficheiro - + %1 (Loading...) - Image Viewer %1 (Cargando...) - visor de imaxes - + %1 (Failed to Load) - Image Viewer %1 (Fallou a carga) - visor de imaxes - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - visor de imaxes - + Image Viewer Visor de imaxes - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Preferencias - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_hr.ts b/src/translations/lximage-qt_hr.ts index 20fcfd7..31ca247 100644 --- a/src/translations/lximage-qt_hr.ts +++ b/src/translations/lximage-qt_hr.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Napravi sliku zaslona - + [FILE1, FILE2,...] [DATOTEKA1, DATOTEKA2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About O programu - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Autori: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Otvori datoteku - - + + Image files (%1) Datoteke slika (%1) - + Save File Spremi datoteku - + %1 (Loading...) - Image Viewer %1 (Učitavam...) - Preglednik slika - + %1 (Failed to Load) - Image Viewer %1 (neuspjelo učitavanje) - Pregledmik slika - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Preglednik slika - + Image Viewer Preglednik slika - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Osobitosti - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_hu.ts b/src/translations/lximage-qt_hu.ts index 9543145..38a36a8 100644 --- a/src/translations/lximage-qt_hu.ts +++ b/src/translations/lximage-qt_hu.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Képernyőkép - + [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Rólunk - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Authors: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Fájl megnyitás - - + + Image files (%1) Képfájlok (%1) - + Save File Fájl mentés - + %1 (Loading...) - Image Viewer %1 (Betöltés...) - Képnéző - + %1 (Failed to Load) - Image Viewer %1 (Betöltés sikertelen) - Képnéző - + %1 (%2x%3) - Image Viewer %1 (Loading...) - Képnéző - + Image Viewer Képnéző - + Thumbnails Bélyegképek @@ -333,32 +333,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Beállítások - + Icon theme: Ikontéma: - + Normal background color: Normál háttérszín: - + Fullscreen background color: Teljeskép háttérszín: - + Slide show interval (seconds): Diaváltás (másodperc): - + General Általános diff --git a/src/translations/lximage-qt_id.ts b/src/translations/lximage-qt_id.ts index 83b8342..6c01d72 100644 --- a/src/translations/lximage-qt_id.ts +++ b/src/translations/lximage-qt_id.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Ambil cuplikan layar - + [FILE1, FILE2,...] [BERKAS1, BERKAS2, ...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Tentang - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Penulis: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Buka Berkas - - + + Image files (%1) Berkas gambar (%1) - + Save File Simpan Berkas - + %1 (Loading...) - Image Viewer %1 (Memuat...) - Penampil Gambar - + %1 (Failed to Load) - Image Viewer %1 (Gagal Dimuat) - Penampil Gambar - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Penampil Gambar - + Image Viewer Penampil Gambar - + Thumbnails @@ -347,32 +347,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Preferensi - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_is.ts b/src/translations/lximage-qt_is.ts index 29ba1a7..c4a7053 100644 --- a/src/translations/lximage-qt_is.ts +++ b/src/translations/lximage-qt_is.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot - + [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File - - + + Image files (%1) - + Save File - + %1 (Loading...) - Image Viewer - + %1 (Failed to Load) - Image Viewer - + %1 (%2x%3) - Image Viewer - + Image Viewer - + Thumbnails @@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_it.ts b/src/translations/lximage-qt_it.ts index 6d04911..7a48c0c 100644 --- a/src/translations/lximage-qt_it.ts +++ b/src/translations/lximage-qt_it.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Cattura una schermata - + [FILE1, FILE2,...] [File1, File2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About A proposito - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -40,43 +40,43 @@ Autor: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Apri file - - + + Image files (%1) File immagini (%1) - + Save File Salva file - + %1 (Loading...) - Image Viewer %1 (Caricando...) - Visualizzatore immagini - + %1 (Failed to Load) - Image Viewer %1 (Errore in caricamento) - Visualizzatore immagini - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Visualizzatore Immagini - + Image Viewer Visualizzatore immagini - + Thumbnails Miniature @@ -336,32 +336,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Preferenze - + Icon theme: Tema icone: - + Normal background color: Colore sfondo: - + Fullscreen background color: Colore sfondo schermo intero: - + Slide show interval (seconds): Ritardo presentazione (secondi): - + General Generali diff --git a/src/translations/lximage-qt_ja.ts b/src/translations/lximage-qt_ja.ts index d9b3526..09ee825 100644 --- a/src/translations/lximage-qt_ja.ts +++ b/src/translations/lximage-qt_ja.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot スクリーンショットを撮る - + [FILE1, FILE2,...] [ファイル1, ファイル2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About このアプリケーションについて - + 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> - + Open File ファイルを開く - - + + Image files (%1) 画像ファイル (%1) - + Save File ファイルの保存 - + %1 (Loading...) - Image Viewer %1 (読み込み中...) - 画像ビューワ - + %1 (Failed to Load) - Image Viewer %1 (読み込みに失敗) - 画像ビューワ - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - 画像ビューワ - + Image Viewer 画像ビューワ - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences 設定 - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_pa.ts b/src/translations/lximage-qt_pa.ts index 2ba865f..ecb0313 100644 --- a/src/translations/lximage-qt_pa.ts +++ b/src/translations/lximage-qt_pa.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot - + [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File - - + + Image files (%1) - + Save File - + %1 (Loading...) - Image Viewer - + %1 (Failed to Load) - Image Viewer - + %1 (%2x%3) - Image Viewer - + Image Viewer - + Thumbnails @@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_pl.ts b/src/translations/lximage-qt_pl.ts index 40688ff..1377cf1 100644 --- a/src/translations/lximage-qt_pl.ts +++ b/src/translations/lximage-qt_pl.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Wykonaj zrzut ekranu - + [FILE1, FILE2,...] [PLIK1, PLIK2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About O programie - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Autorzy: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Otwórz plik - - + + Image files (%1) Pliki obrazów (%1) - + Save File Zapisz plik - + %1 (Loading...) - Image Viewer %1 (Wczytywanie...) - Przeglądarka obrazów - + %1 (Failed to Load) - Image Viewer %1 (Błąd wczytywania) - Przeglądarka obrazów - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Przeglądarka obrazów - + Image Viewer Przeglądarka obrazów - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Ustawienia - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_pt.ts b/src/translations/lximage-qt_pt.ts index 24569d3..b6ed3fe 100644 --- a/src/translations/lximage-qt_pt.ts +++ b/src/translations/lximage-qt_pt.ts @@ -1,15 +1,15 @@ - + LxImage::Application - + Take a screenshot Obter captura de ecrã - + [FILE1, FILE2,...] [Ficheiro1, ficheiro2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Sobre - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Autor: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Abrir ficheiro - - + + Image files (%1) Ficheiros de imagem (%1) - + Save File Gravar ficheiro - + %1 (Loading...) - Image Viewer %1 (carregamento...) - Visualizador de imagens - + %1 (Failed to Load) - Image Viewer %1 (falha ao carregar) - Visualizador de imagens - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Visualizador de imagens - + Image Viewer Visualizador de imagens - + Thumbnails Miniaturas @@ -165,7 +165,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> Right - Direita + Direita @@ -175,7 +175,7 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> Left - Esquerda + Esquerda @@ -345,46 +345,46 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Preferências - + Icon theme: Tema de ícones: - + Normal background color: Cor de fundo normal: - + Fullscreen background color: Cor de fundo em ecrã completo: - + Slide show interval (seconds): Intervalo da apresentação (segundos): - + General Geral TODO: Add configuration options here - Tarefas: Adicionar opções de configuração + Tarefas: Adicionar opções de configuração Tab 1 - Separador 1 + Separador 1 Tab 2 - Separador 2 + Separador 2 diff --git a/src/translations/lximage-qt_pt_BR.ts b/src/translations/lximage-qt_pt_BR.ts index 825deb6..db088db 100644 --- a/src/translations/lximage-qt_pt_BR.ts +++ b/src/translations/lximage-qt_pt_BR.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Capturar uma imagem da tela - + [FILE1, FILE2,...] [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Sobre - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Autores: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File Abrir Arquivo - - + + Image files (%1) Arquivos de Images (1%) - + Save File Salvar Arquivo - + %1 (Loading...) - Image Viewer %1 (Carregando...) - Visualização da Imagem - + %1 (Failed to Load) - Image Viewer %1 (Falha ao Carregar) - Visualização da Imagem - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Visualização da Imagem - + Image Viewer Visualizador de Imagens - + Thumbnails @@ -346,32 +346,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Preferências - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_ru.ts b/src/translations/lximage-qt_ru.ts index 216d652..3368d39 100644 --- a/src/translations/lximage-qt_ru.ts +++ b/src/translations/lximage-qt_ru.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot - + [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File - - + + Image files (%1) - + Save File - + %1 (Loading...) - Image Viewer - + %1 (Failed to Load) - Image Viewer - + %1 (%2x%3) - Image Viewer - + Image Viewer - + Thumbnails @@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_template.ts b/src/translations/lximage-qt_template.ts index f0f891d..a97cc93 100644 --- a/src/translations/lximage-qt_template.ts +++ b/src/translations/lximage-qt_template.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot - + [FILE1, FILE2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -33,43 +33,43 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - + Open File - - + + Image files (%1) - + Save File - + %1 (Loading...) - Image Viewer - + %1 (Failed to Load) - Image Viewer - + %1 (%2x%3) - Image Viewer - + Image Viewer - + Thumbnails @@ -327,32 +327,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_uk.ts b/src/translations/lximage-qt_uk.ts index 1ca3382..753737b 100644 --- a/src/translations/lximage-qt_uk.ts +++ b/src/translations/lximage-qt_uk.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot Зробити знімок - + [FILE1, FILE2,...] [ФАЙЛ1, ФАЙЛ2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About Про програму - + 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> - + Open File Відкрити файл - - + + Image files (%1) Файли зображень (%1) - + Save File Зберегти файл - + %1 (Loading...) - Image Viewer %1 (Завантаження...) - Переглядач зображень - + %1 (Failed to Load) - Image Viewer %1 (Невдача завантаження) - Переглядач зображень - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - Переглядач зображень - + Image Viewer Переглядач зображень - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences Налаштування - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_zh_CN.ts b/src/translations/lximage-qt_zh_CN.ts index 495504b..6f9853a 100644 --- a/src/translations/lximage-qt_zh_CN.ts +++ b/src/translations/lximage-qt_zh_CN.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot 抓取屏幕截图 - + [FILE1, FILE2,...] [文件1, 文件2,...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About 关于 - + 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> - + Open File 打开文件 - - + + Image files (%1) 图像文件 (%1) - + Save File 保存文件 - + %1 (Loading...) - Image Viewer %1 (正在加载...) - 图像查看器 - + %1 (Failed to Load) - Image Viewer %1 (加载失败) - 图像查看器 - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - 图像查看器 - + Image Viewer 图像查看器 - + Thumbnails @@ -345,32 +345,32 @@ Hong Jen Yee (PCMan) <pcman.tw@gmail.com> PreferencesDialog - + Preferences 偏好设置 - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General diff --git a/src/translations/lximage-qt_zh_TW.ts b/src/translations/lximage-qt_zh_TW.ts index f4868c5..308453c 100644 --- a/src/translations/lximage-qt_zh_TW.ts +++ b/src/translations/lximage-qt_zh_TW.ts @@ -4,12 +4,12 @@ LxImage::Application - + Take a screenshot 拍攝螢幕快照 - + [FILE1, FILE2,...] [檔案1、檔案2...] @@ -17,12 +17,12 @@ LxImage::MainWindow - + About 關於 - + LXImage - a simple and fast image viewer Copyright (C) 2013 @@ -39,43 +39,43 @@ Authors: 洪任諭 (PCMan) <pcman.tw@gmail.com> - + Open File 開啟檔案 - - + + Image files (%1) 影像檔案 (%1) - + Save File 儲存檔案 - + %1 (Loading...) - Image Viewer %1 (正在載入...) - 圖片檢視程式 - + %1 (Failed to Load) - Image Viewer %1 (載入失敗) - 圖片檢視程式 - + %1 (%2x%3) - Image Viewer %1 (%2x%3) - 圖片檢視程式 - + Image Viewer 圖片檢視程式 - + Thumbnails @@ -345,32 +345,32 @@ Authors: PreferencesDialog - + Preferences 偏好設定 - + Icon theme: - + Normal background color: - + Fullscreen background color: - + Slide show interval (seconds): - + General