diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 513eaeb..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -build -*.kdev4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 4197c35..109d1f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,9 +4,6 @@ project(lximage-qt) include(GNUInstallDirs) -# additional cmake files -list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") - set(MAJOR_VERSION 0) set(MINOR_VERSION 4) set(PATCH_VERSION 0) @@ -42,6 +39,7 @@ find_package(Qt5PrintSupport REQUIRED QUIET) find_package(Qt5X11Extras REQUIRED QUIET) find_package(Qt5LinguistTools REQUIRED QUIET) find_package(fm-qt REQUIRED QUIET) +find_package(lxqt REQUIRED) #just a build dependency for .desktop files translation message(STATUS "Building with Qt ${Qt5Core_VERSION_STRING}") find_package(PkgConfig REQUIRED) diff --git a/cmake/LXQtTranslateDesktop.cmake b/cmake/LXQtTranslateDesktop.cmake deleted file mode 100644 index 522ed68..0000000 --- a/cmake/LXQtTranslateDesktop.cmake +++ /dev/null @@ -1,107 +0,0 @@ -#============================================================================= -# The lxqt_translate_desktop() function was copied from the the -# LXQt LxQtTranste.cmake -# -# Original Author: Alexander Sokolov -# -# funtion lxqt_translate_desktop(_RESULT -# SOURCES -# [TRANSLATION_DIR] translation_directory -# ) -# Output: -# _RESULT The generated .desktop (.desktop) files -# -# Input: -# -# SOURCES List of input desktop files (.destktop.in) to be translated -# (merged), relative to the CMakeList.txt. -# -# TRANSLATION_DIR Optional path to the directory with the .ts files, -# relative to the CMakeList.txt. Defaults to -# "translations". -# -#============================================================================= - -function(lxqt_translate_desktop _RESULT) - # Parse arguments *************************************** - set(oneValueArgs TRANSLATION_DIR) - set(multiValueArgs SOURCES) - - cmake_parse_arguments(_ARGS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - - # check for unknown arguments - set(_UNPARSED_ARGS ${_ARGS_UNPARSED_ARGUMENTS}) - if (NOT ${_UNPARSED_ARGS} STREQUAL "") - MESSAGE(FATAL_ERROR - "Unknown arguments '${_UNPARSED_ARGS}'.\n" - "See lxqt_translate_desktop() documenation for more information.\n" - ) - endif() - - if (NOT DEFINED _ARGS_SOURCES) - set(${_RESULT} "" PARENT_SCOPE) - return() - else() - set(_sources ${_ARGS_SOURCES}) - endif() - - if (NOT DEFINED _ARGS_TRANSLATION_DIR) - set(_translationDir "translations") - else() - set(_translationDir ${_ARGS_TRANSLATION_DIR}) - endif() - - - get_filename_component (_translationDir ${_translationDir} ABSOLUTE) - - foreach (_inFile ${_sources}) - get_filename_component(_inFile ${_inFile} ABSOLUTE) - get_filename_component(_fileName ${_inFile} NAME_WE) - #Extract the real extension ............ - get_filename_component(_fileExt ${_inFile} EXT) - string(REPLACE ".in" "" _fileExt ${_fileExt}) - #....................................... - set(_outFile "${CMAKE_CURRENT_BINARY_DIR}/${_fileName}${_fileExt}") - - file(GLOB _translations - ${_translationDir}/${_fileName}_*${_fileExt} - ${_translationDir}/local/${_fileName}_*${_fileExt} - ) - - set(_pattern "'\\[.*]\\s*='") - if (_translations) - add_custom_command(OUTPUT ${_outFile} - COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile} - COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile} - COMMENT "Generating ${_fileName}${_fileExt}" - ) - else() - add_custom_command(OUTPUT ${_outFile} - COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile} - COMMENT "Generating ${_fileName}${_fileExt}" - ) - endif() - - set(__result ${__result} ${_outFile}) - - - # TX file *********************************************** - set(_txFile "${CMAKE_BINARY_DIR}/tx/${_fileName}${_fileExt}.tx.sh") - string(REPLACE "${CMAKE_SOURCE_DIR}/" "" _tx_translationDir ${_translationDir}) - string(REPLACE "${CMAKE_SOURCE_DIR}/" "" _tx_inFile ${_inFile}) - string(REPLACE "." "" _fileType ${_fileExt}) - - file(WRITE ${_txFile} - "[ -f ${_inFile} ] || exit 0\n" - "echo '[lxde-qt.${_fileName}_${_fileType}]'\n" - "echo 'type = DESKTOP'\n" - "echo 'source_lang = en'\n" - "echo 'source_file = ${_tx_inFile}'\n" - "echo 'file_filter = ${_tx_translationDir}/${_fileName}_${_fileExt}'\n" - "echo ''\n" - ) - - endforeach() - - set(${_RESULT} ${__result} PARENT_SCOPE) -endfunction(lxqt_translate_desktop) diff --git a/debian/.gitignore b/debian/.gitignore index 2010897..e556b3e 100644 --- a/debian/.gitignore +++ b/debian/.gitignore @@ -2,5 +2,6 @@ /*.log /*.substvars /files + /lximage-qt/ /lximage-qt-dbg/ diff --git a/debian/changelog b/debian/changelog index 9196b99..392694f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,23 @@ +lximage-qt (0.4.1~38-gf8fc532-1) experimental; urgency=medium + + * Cherry-picking upstream version 0.4.1~38-gf8fc532. + * Preparing the upcoming release, switch to experimental + * Added new build dependendies: + - gcc (>= 4:6) + - g++ (>= 4:6) + - libkf5windowsystem-dev, + - liblxqt0-dev (>= 0.10.96~), + - libqt5xdg-dev (>= 1.3.1~), + * Bumped Standards to 3.9.8, no changes needed + * Added Recommends lxqtimage-qt-l10n + * Fixed copyrights Format field to https + * Dropped patches, applied upstream + * Added translation control to rules + * Set CMAKE_BUILD_TYPE=RelWithDebInfo + * Exported LC_ALL=C.UTF-8, make builds reproducible + + -- Alf Gaida Wed, 20 Jul 2016 18:54:13 +0200 + lximage-qt (0.4.0+20160108-3) unstable; urgency=medium * Add missing patch from 0.4.0+20160108-2. diff --git a/debian/control b/debian/control index 8170279..9cd830f 100644 --- a/debian/control +++ b/debian/control @@ -7,26 +7,32 @@ Section: x11 Priority: optional Build-Depends: debhelper (>= 9), cmake (>= 3.0.2), + gcc (>= 4:6), + g++ (>= 4:6), libexif-dev, libglib2.0-dev, libfm-dev, - libfm-qt-dev, + libfm-qt-dev (>= 0.11.1~), + libkf5windowsystem-dev, + liblxqt0-dev (>= 0.10.96~), libmenu-cache-dev, libqt5x11extras5-dev, + libqt5xdg-dev (>= 1.3.1~), libx11-dev, libxfixes-dev, pkg-config, qttools5-dev, qttools5-dev-tools -Standards-Version: 3.9.7 -Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lximage-qt.git/?h=debian/sid -Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lximage-qt.git -b debian/sid +Standards-Version: 3.9.8 +Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lximage-qt.git/?h=debian/experimental +Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lximage-qt.git -b debian/experimental Homepage: https://github.com/lxde/lximage-qt Package: lximage-qt Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} +Recommends: lxqtimage-qt-l10n Description: Image viewer for LXQt lximage-qt is a simple image viewer for LXQt. . diff --git a/debian/copyright b/debian/copyright index 2f1a521..87d2c0a 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lximage-qt Source: https://github.com/lxde/lximage-qt diff --git a/debian/gbp.conf b/debian/gbp.conf index 04ac689..b79c958 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -1,5 +1,5 @@ [DEFAULT] -debian-branch = debian/sid +debian-branch = debian/experimental pristine-tar = True [import-orig] diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 7ab0073..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -unicode-grep.patch diff --git a/debian/patches/unicode-grep.patch b/debian/patches/unicode-grep.patch deleted file mode 100644 index 5edcd49..0000000 --- a/debian/patches/unicode-grep.patch +++ /dev/null @@ -1,22 +0,0 @@ -Author: Eduard Sanou -Description: Fix misdetection as binary input when LC_ALL=C - ---- lximage-qt-0.4.0+20160108.orig/cmake/LXQtTranslateDesktop.cmake -+++ lximage-qt-0.4.0+20160108/cmake/LXQtTranslateDesktop.cmake -@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT) - set(_pattern "'\\[.*]\\s*='") - if (_translations) - add_custom_command(OUTPUT ${_outFile} -- COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile} -- COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile} -+ COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile} -+ COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile} - COMMENT "Generating ${_fileName}${_fileExt}" - ) - else() - add_custom_command(OUTPUT ${_outFile} -- COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile} -+ COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile} - COMMENT "Generating ${_fileName}${_fileExt}" - ) - endif() diff --git a/debian/rules b/debian/rules index e620df4..5858ca7 100755 --- a/debian/rules +++ b/debian/rules @@ -1,9 +1,16 @@ #!/usr/bin/make -f -#export DH_VERBOSE=1 +# export DH_VERBOSE=1 -export DEB_BUILD_MAINT_OPTIONS = hardening=+all +export LC_ALL=C.UTF-8 export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed +export DEB_BUILD_MAINT_OPTIONS = hardening=+all %: - dh ${@} --buildsystem cmake \ - --parallel \ + dh ${@} --buildsystem cmake\ + --parallel + +override_dh_auto_configure: + dh_auto_configure -- \ + -DPULL_TRANSLATIONS=OFF\ + -DUPDATE_TRANSLATIONS=OFF\ + -DCMAKE_BUILD_TYPE=RelWithDebInfo diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cfef7d0..bc75837 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -42,16 +42,23 @@ set(lximage-qt_UIS qt5_wrap_ui(lximage-qt_UI_H ${lximage-qt_UIS}) # add translation for lximage-qt -file(GLOB TS_FILES translations/*.ts) -option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files") -if(UPDATE_TRANSLATIONS) - qt5_create_translation(QM_FILES ${lximage-qt_SRCS} ${lximage-qt_UI_H} ${TS_FILES}) -else() - qt5_add_translation(QM_FILES ${TS_FILES}) -endif() - -add_custom_target (lximage-qt_translations DEPENDS ${QM_FILES}) -install(FILES ${QM_FILES} DESTINATION share/lximage-qt/translations) +include(LXQtTranslateTs) +lxqt_translate_ts(QM_FILES + UPDATE_TRANSLATIONS ${UPDATE_TRANSLATIONS} + SOURCES + ${lximage-qt_SRCS} + ${lximage-qt_UIS} + INSTALL_DIR + "${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}/translations" + PULL_TRANSLATIONS + ${PULL_TRANSLATIONS} + CLEAN_TRANSLATIONS + ${CLEAN_TRANSLATIONS} + TRANSLATIONS_REPO + ${TRANSLATIONS_REPO} + TRANSLATIONS_REFSPEC + ${TRANSLATIONS_REFSPEC} +) # prevent the generated files from being deleted during make clean set_directory_properties(PROPERTIES CLEAN_NO_CUSTOM true) diff --git a/src/translations/lximage-qt_ca.ts b/src/translations/lximage-qt_ca.ts deleted file mode 100644 index a92e89a..0000000 --- a/src/translations/lximage-qt_ca.ts +++ /dev/null @@ -1,408 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - - - - - [FILE1, FILE2,...] - - - - - LxImage::MainWindow - - - About - - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -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 - - - - - MainWindow - - - Image Viewer - - - - - &About - - - - - &Open File - - - - - Ctrl+O - - - - - &Save - - - - - Ctrl+S - - - - - Save &As - - - - - Ctrl+A - - - - - &Close - - - - - Ctrl+W - - - - - Zoom &In - - - - - Ctrl++ - - - - - Zoom &Out - - - - - Ctrl+- - - - - - &Copy to Clipboard - - - - - - Next File - - - - - - Previous File - - - - - PgDown - - - - - PgUp - - - - - Original Size - - - - - &Fit - - - - - &Rotate Clockwise - - - - - Rotate &Counterclockwise - - - - - P&references - - - - - &Print - - - - - Ctrl+P - - - - - First File - - - - - Home - - - - - Last File - - - - - End - - - - - &New Window - - - - - Ctrl+N - - - - - Flip &Horizontally - - - - - Capture Screenshot - - - - - F&ull Screen - - - - - F11 - - - - - Flip &Vertically - - - - - &Paste from Clipboard - - - - - &Slide Show - - - - - &Delete - - - - - Del - - - - - Show Thumbnails - - - - - File Properties - - - - - &File - - - - - &Help - - - - - Go - - - - - &View - - - - - &Edit - - - - - Toolbar - - - - - PreferencesDialog - - - Preferences - - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - - ScreenshotDialog - - - Screenshot - - - - - Take a screenshot - - - - - Region - - - - - Whole screen - - - - - Current window only - - - - - Include mouse cursor - - - - - seconds - - - - - Delay: - - - - - Include window title and frame - - - - diff --git a/src/translations/lximage-qt_de.desktop b/src/translations/lximage-qt_de.desktop index 735428a..37a3574 100644 --- a/src/translations/lximage-qt_de.desktop +++ b/src/translations/lximage-qt_de.desktop @@ -1,5 +1,5 @@ [Desktop Entry] GenericName[de]=Bildbetrachter -Comment[de]=Der LXQt Bildbetrachter +Comment[de]=Der LXQt-Bildbetrachter #TRANSLATIONS_DIR=translations diff --git a/src/translations/lximage-qt_de.ts b/src/translations/lximage-qt_de.ts deleted file mode 100644 index 3dce942..0000000 --- a/src/translations/lximage-qt_de.ts +++ /dev/null @@ -1,417 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Bildschirmfoto erstellen - - - - [FILE1, FILE2,...] - [Datei1, Datei2,...] - - - - LxImage::MainWindow - - - About - Über - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - ein einfacher und schneller Bildbetrachter - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Autor: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - Open File - Datei öffnen - - - - - Image files (%1) - Bilddateien (%1) - - - - Save File - Datei speichern - - - - %1 (Loading...) - Image Viewer - %1 (Lade...) - Bildbetrachter - - - - %1 (Failed to Load) - Image Viewer - %1 (Fehler beim Laden) - Bildbetrachter - - - - %1 (%2x%3) - Image Viewer - %1 (%2x%3) - Bildbetrachter - - - - Image Viewer - Bildbetrachter - - - - Thumbnails - Miniaturen - - - - MainWindow - - - Image Viewer - Bildbetrachter - - - - &About - &Über - - - - &Open File - This should be "&Open" (without "File") imho. We are in the File menu. - Ö&ffnen - - - - Ctrl+O - Shortcuts are translated automatically. No need to manually translate it to "Strg+O". - - - - - &Save - &Speichern - - - - Ctrl+S - - - - - Save &As - Speichern &unter - - - - Ctrl+A - - - - - &Close - Sch&ließen - - - - Ctrl+W - - - - - Zoom &In - Ver&größern - - - - Ctrl++ - - - - - Zoom &Out - Ver&kleinern - - - - Ctrl+- - - - - - &Copy to Clipboard - In die &Zwischenablage einfügen - - - - - Next File - Nächste Datei - - - - - Previous File - Vorige Datei - - - - PgDown - - - - - PgUp - - - - - Original Size - Originalgröße - - - - &Fit - Passen&d - - - - &Rotate Clockwise - Im &Uhrzeigersinn drehen - - - - Rotate &Counterclockwise - &Gegen den Uhrzeigersinn drehen - - - - P&references - Einste&llungen - - - - &Print - &Drucken - - - - Ctrl+P - - - - - First File - Erste Datei - - - - Home - - - - - Last File - Letzte Datei - - - - End - - - - - &New Window - &Neues Fenster - - - - Ctrl+N - - - - - Flip &Horizontally - &Horizontal spiegeln - - - - Capture Screenshot - Bildschirmfoto erstellen - - - - F&ull Screen - &Gesamter Bildschirm - - - - F11 - - - - - Flip &Vertically - &Vertikal spiegeln - - - - &Paste from Clipboard - &Aus Zwischenablage einfügen - - - - &Slide Show - &Diaschau - - - - &Delete - &Löschen - - - - Del - - - - - Show Thumbnails - Miniaturen anzeigen - - - - File Properties - Translation of 'file' skipped, it is redundant (this is the file menu). - Eigenschaften - - - - &File - &Datei - - - - &Help - &Hilfe - - - - Go - Gehe zu - - - - &View - &Ansicht - - - - &Edit - &Bearbeiten - - - - Toolbar - Werkzeugleiste - - - - PreferencesDialog - - - Preferences - Einstellungen - - - - Icon theme: - Symboldesign: - - - - Normal background color: - Normale Hintergrundfarbe: - - - - Fullscreen background color: - Vollbild-Hintergrundfarbe: - - - - Slide show interval (seconds): - Diaschau Bildwechsel (Sekunden): - - - - General - Allgemein - - - - ScreenshotDialog - - - Screenshot - Bildschirmfoto - - - - Take a screenshot - Bildschirmfoto erstellen - - - - Region - Bereich - - - - Whole screen - Gesamter Bildschirm - - - - Current window only - Nur aktuelles Fenster - - - - Include mouse cursor - Einschließlich Mauszeiger - - - - seconds - Sekunden - - - - Delay: - Verzögerung: - - - - Include window title and frame - Einschließlich Fenstertitel und Rahmen - - - diff --git a/src/translations/lximage-qt_el.ts b/src/translations/lximage-qt_el.ts deleted file mode 100644 index c563c09..0000000 --- a/src/translations/lximage-qt_el.ts +++ /dev/null @@ -1,414 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Λήψη ενός στιγμιότυπου - - - - [FILE1, FILE2,...] - [ΑΡΧΕΙΟ1, ΑΡΧΕΙΟ2,...] - - - - LxImage::MainWindow - - - About - Σχετικά - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - ένας απλός και γρήγορος προβολέας εικόνων - -Πνευματικά δικαιώματα (C) 2013 -Έργο 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 - Εικόνες επισκόπησης - - - - MainWindow - - - Image Viewer - Προβολέας εικόνων - - - - &About - &Σχετικά - - - - &Open File - &Άνοιγμα αρχείου - - - - Ctrl+O - Ctrl+O - - - - &Save - Απο&θήκευση - - - - Ctrl+S - Ctrl+S - - - - Save &As - Αποθήκευση &ως - - - - Ctrl+A - Ctrl+A - - - - &Close - &Κλείσιμο - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - Μεγέ&θυνση - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - Σμίκρ&υνση - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - Αντιγραφή στο πρό&χειρο - - - - - Next File - Επόμενο αρχείο - - - - - Previous File - Προηγούμενο αρχείο - - - - PgDown - PgDown - - - - PgUp - PgUp - - - - Original Size - Αρχικό Μέγεθος - - - - &Fit - &Ταίριασμα - - - - &Rotate Clockwise - Περιστροφή &δεξιόστροφα - - - - Rotate &Counterclockwise - Περιστροφή &αριστερόστροφα - - - - P&references - &Επιλογές - - - - &Print - Εκτύ&πωση - - - - Ctrl+P - Ctrl+P - - - - First File - Πρώτο αρχείο - - - - Home - Αρχική - - - - Last File - Τελευταίο αρχείο - - - - End - Τέλος - - - - &New Window - &Νέο παράθυρο - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Αναστροφή &οριζόντια - - - - Capture Screenshot - Λήψη στιγμιότυπου - - - - F&ull Screen - Π&λήρης οθόνη - - - - F11 - F11 - - - - Flip &Vertically - Αναστροφή &κατακόρυφα - - - - &Paste from Clipboard - &Επικόλληση από το πρόχειρο - - - - &Slide Show - &Προβολή διαφάνειας - - - - &Delete - &Διαγραφή - - - - Del - Del - - - - Show Thumbnails - Εμφάνιση εικόνων επισκόπησης - - - - File Properties - Ιδιότητες αρχείου - - - - &File - &Αρχείο - - - - &Help - &Βοήθεια - - - - Go - Μετάβαση - - - - &View - &Προβολή - - - - &Edit - &Επεξεργασία - - - - Toolbar - Γραμμή εργαλείων - - - - PreferencesDialog - - - Preferences - Προτιμήσεις - - - - Icon theme: - Θέμα εικονιδίων: - - - - Normal background color: - Τυπικό χρώμα παρασκηνίου: - - - - Fullscreen background color: - Χρώμα παρασκηνίου πλήρους οθόνης: - - - - Slide show interval (seconds): - Χρονική καθυστέρηση προβολής διαφανειών (δευτερόλεπτα): - - - - General - Γενικά - - - - ScreenshotDialog - - - Screenshot - Στιγμιότυπο - - - - Take a screenshot - Λήψη στιγμιότυπου - - - - Region - Περιοχή - - - - Whole screen - Ολόκληρη η οθόνη - - - - Current window only - Μόνον το τρέχον παράθυρο - - - - Include mouse cursor - Συμπερίληψη του δρομέα του ποντικιού - - - - seconds - δευτερόλεπτα - - - - Delay: - Καθυστέρηση: - - - - Include window title and frame - Συμπερίληψη του τίτλου και του πλαισίου του παραθύρου - - - diff --git a/src/translations/lximage-qt_es.ts b/src/translations/lximage-qt_es.ts deleted file mode 100644 index c4b5a60..0000000 --- a/src/translations/lximage-qt_es.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Capturar la pantalla - - - - [FILE1, FILE2,...] - [ARCHIVO1, ARCHIVO2, …] - - - - LxImage::MainWindow - - - About - Acerca de - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage: un visor de imágenes sencillo y rápido - -Copyright © 2013 -Proyecto LXDE: http://lxde.org/ - -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 - - - - - MainWindow - - - Image Viewer - Visor de imágenes - - - - &About - &Acerca de - - - - &Open File - &Abrir un archivo - - - - Ctrl+O - Ctrl+O - - - - &Save - &Guardar - - - - Ctrl+S - Ctrl+S - - - - Save &As - G&uardar como… - - - - Ctrl+A - Ctrl+A - - - - &Close - &Cerrar - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - &Ampliar - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - &Reducir - - - - Ctrl+- - Ctrl+− - - - - &Copy to Clipboard - &Copiar al portapapeles - - - - - Next File - Archivo siguiente - - - Right - - - - - - Previous File - Archivo anterior - - - Left - - - - - PgDown - - - - - PgUp - - - - - Original Size - Tamaño original - - - - &Fit - A&justar - - - - &Rotate Clockwise - &Girar a la derecha - - - - Rotate &Counterclockwise - G&irar a la izquierda - - - - P&references - P&referencias - - - - &Print - &Imprimir - - - - Ctrl+P - - - - - First File - Primer archivo - - - - Home - Inicio - - - - Last File - Último archivo - - - - End - Fin - - - - &New Window - Ventana &nueva - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Voltear &horizontalmente - - - - Capture Screenshot - Capturar la pantalla - - - - F&ull Screen - Pa&ntalla completa - - - - F11 - F11 - - - - Flip &Vertically - Voltear &verticalmente - - - - &Paste from Clipboard - &Pegar del portapapeles - - - - &Slide Show - Pa&se de diapositivas - - - - &Delete - &Eliminar - - - - Del - Supr - - - - Show Thumbnails - - - - - File Properties - - - - - &File - &Archivo - - - - &Help - Ay&uda - - - - Go - Ir - - - - &View - &Ver - - - - &Edit - &Editar - - - - Toolbar - - - - toolBar - Barra de herramientas - - - - PreferencesDialog - - - Preferences - Preferencias - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - Por hacer: Añadir opciones de configuración aquí - - - Tab 1 - Pestaña 1 - - - Tab 2 - Pestaña 2 - - - - ScreenshotDialog - - - Screenshot - Captura de pantalla - - - - Take a screenshot - Capturar la pantalla - - - - Region - Región - - - - Whole screen - Toda la pantalla - - - - Current window only - Solo la ventana actual - - - - Include mouse cursor - Incluir el puntero del ratón - - - - seconds - segundos - - - - Delay: - Retardo: - - - - Include window title and frame - Incluir el marco y el título de la ventana - - - diff --git a/src/translations/lximage-qt_gl.ts b/src/translations/lximage-qt_gl.ts deleted file mode 100644 index 36976a3..0000000 --- a/src/translations/lximage-qt_gl.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Obter unha captura de pantalla - - - - [FILE1, FILE2,...] - [FICHEIRO1, FICHEIRO2,...] - - - - LxImage::MainWindow - - - About - Sobre - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - un visor de imaxes rápido e sinxelo - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -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 - - - - - MainWindow - - - Image Viewer - Visor de imaxes - - - - &About - &Sobre - - - - &Open File - &Abrir ficheiro - - - - Ctrl+O - Ctrl+O - - - - &Save - &Gardar - - - - Ctrl+S - Ctrl+S - - - - Save &As - Gardar &como - - - - Ctrl+A - Ctrl+A - - - - &Close - &Pechar - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - A&chegar - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - A&fastar - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Copiar ao portapapeis - - - - - Next File - Ficheiro seguinte - - - Right - Dereita - - - - - Previous File - Ficheiro anterior - - - Left - Esquerda - - - - PgDown - - - - - PgUp - - - - - Original Size - Tamaño orixinal - - - - &Fit - A&xustar - - - - &Rotate Clockwise - Xirar en sentido &horario - - - - Rotate &Counterclockwise - Xirar en sentido &antihorario - - - - P&references - P&referencias - - - - &Print - Im&primir - - - - Ctrl+P - - - - - First File - Primeiro ficheiro - - - - Home - Cartafol persoal - - - - Last File - Último ficheiro - - - - End - Fin - - - - &New Window - &Nova xanela - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Inverter na & horizontal - - - - Capture Screenshot - Captura de pantalla - - - - F&ull Screen - Pantalla c&ompleta - - - - F11 - F11 - - - - Flip &Vertically - Inverter na &vertical - - - - &Paste from Clipboard - &Pegar do portapapeis - - - - &Slide Show - &Diaporama - - - - &Delete - &Eliminar - - - - Del - Supr - - - - Show Thumbnails - - - - - File Properties - - - - - &File - &Ficheiro - - - - &Help - &Axuda - - - - Go - Ir a - - - - &View - &Ver - - - - &Edit - &Editar - - - - Toolbar - - - - toolBar - Barra de ferramentas - - - - PreferencesDialog - - - Preferences - Preferencias - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - Por facer: Engadir aquí as opcións de configuración - - - Tab 1 - Lapela 1 - - - Tab 2 - Lapela 2 - - - - ScreenshotDialog - - - Screenshot - Captura de pantalla - - - - Take a screenshot - Obter unha captura de pantalla - - - - Region - Área - - - - Whole screen - Pantalla completa - - - - Current window only - Só a xanela actual - - - - Include mouse cursor - Incluír o punteiro do rato - - - - seconds - segundos - - - - Delay: - Demora: - - - - Include window title and frame - Incluír o marco e o título da xanela - - - diff --git a/src/translations/lximage-qt_hr.ts b/src/translations/lximage-qt_hr.ts deleted file mode 100644 index 31ca247..0000000 --- a/src/translations/lximage-qt_hr.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Napravi sliku zaslona - - - - [FILE1, FILE2,...] - [DATOTEKA1, DATOTEKA2,...] - - - - LxImage::MainWindow - - - About - O programu - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - jednostavni i brzi preglednik slika - -Autorska prava (C) 2013 -LXDE Project: http://lxde.org/ - -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 - - - - - MainWindow - - - Image Viewer - Preglednik slika - - - - &About - &O programu - - - - &Open File - &Otvori datoteku - - - - Ctrl+O - Ctrl+O - - - - &Save - &Spremi - - - - Ctrl+S - Ctrl+S - - - - Save &As - Spremi &kao - - - - Ctrl+A - Ctrl+A - - - - &Close - &Zatvori - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - - - - - - Next File - Slijedeća datoteka - - - Right - Desno - - - - - Previous File - Prethodna datoteka - - - Left - Lijevo - - - - PgDown - - - - - PgUp - - - - - Original Size - Izvorna veličina - - - - &Fit - - - - - &Rotate Clockwise - &Rotiraj u smjeru kazaljke na satu - - - - Rotate &Counterclockwise - Rotiraj &obrnuto od smjera kazaljke na satu - - - - P&references - O&sobitosti - - - - &Print - &Ispis - - - - Ctrl+P - - - - - First File - Prva datoteka - - - - Home - Osobna mapa - - - - Last File - Zadnja datoteka - - - - End - Kraj - - - - &New Window - &Novi prozor - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Obrni &vodoravno - - - - Capture Screenshot - Uhvati sliku zaslona - - - - F&ull Screen - C&ijeli zaslon - - - - F11 - F11 - - - - Flip &Vertically - Obrni &okomito - - - - &Paste from Clipboard - - - - - &Slide Show - &Klizni prikaz - - - - &Delete - &Izbriši - - - - Del - Del - - - - Show Thumbnails - - - - - File Properties - - - - - &File - &Datoteka - - - - &Help - &Pomoć - - - - Go - Idi - - - - &View - &Pogled - - - - &Edit - &Uredi - - - - Toolbar - - - - toolBar - alatna traka - - - - PreferencesDialog - - - Preferences - Osobitosti - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - TODO: Dodaj konfiguracijske opcije ovdje - - - Tab 1 - Kartica 1 - - - Tab 2 - Kartica 2 - - - - ScreenshotDialog - - - Screenshot - Snimka zaslona - - - - Take a screenshot - Napravi snimku zaslona - - - - Region - Regija - - - - Whole screen - Cijeli zaslon - - - - Current window only - Samo trenutni prozor - - - - Include mouse cursor - uključi pokazivač miša - - - - seconds - sekundi - - - - Delay: - Odgoda: - - - - Include window title and frame - Uključi naslov prozora i okvir - - - diff --git a/src/translations/lximage-qt_hu.ts b/src/translations/lximage-qt_hu.ts deleted file mode 100644 index 38a36a8..0000000 --- a/src/translations/lximage-qt_hu.ts +++ /dev/null @@ -1,414 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Képernyőkép - - - - [FILE1, FILE2,...] - - - - - LxImage::MainWindow - - - About - Rólunk - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - 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> - - - - 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 - - - - MainWindow - - - Image Viewer - Képnéző - - - - &About - Ról&am - - - - &Open File - &Fájlnyitás - - - - Ctrl+O - - - - - &Save - &Ment - - - - Ctrl+S - - - - - Save &As - &Másként ment - - - - Ctrl+A - - - - - &Close - &Bezár - - - - Ctrl+W - - - - - Zoom &In - &Nagyít - - - - Ctrl++ - - - - - Zoom &Out - &Kicsinyít - - - - Ctrl+- - - - - - &Copy to Clipboard - &Vágólapra másol - - - - - Next File - Következő fájl - - - - - Previous File - Előző fájl - - - - PgDown - - - - - PgUp - - - - - Original Size - Eredeti méret - - - - &Fit - &Kitölt - - - - &Rotate Clockwise - &Jobbra forgat - - - - Rotate &Counterclockwise - &Balra forgat - - - - P&references - &Beállítások - - - - &Print - &Nyomtat - - - - Ctrl+P - - - - - First File - Első fájl - - - - Home - - - - - Last File - Utolsó fájl - - - - End - Vége - - - - &New Window - &Új ablak - - - - Ctrl+N - - - - - Flip &Horizontally - Vízszintesen átfordít - - - - Capture Screenshot - Képernyókép készítés - - - - F&ull Screen - &Teljes kép - - - - F11 - - - - - Flip &Vertically - &Fejtetőre állít - - - - &Paste from Clipboard - Vágóla&pról beilleszt - - - - &Slide Show - &Diavetítés - - - - &Delete - &Törlés - - - - Del - - - - - Show Thumbnails - Bélyegképek - - - - File Properties - Fájljellemzők - - - - &File - &Fájl - - - - &Help - &Segítség - - - - Go - Ugrás - - - - &View - &Nézet - - - - &Edit - &Szerkeszt - - - - Toolbar - Eszközsáv - - - - 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 - - - - ScreenshotDialog - - - Screenshot - Képernyőkép - - - - Take a screenshot - Képernyőfénykép - - - - Region - Terület - - - - Whole screen - Teljes kép - - - - Current window only - Aktuális ablak - - - - Include mouse cursor - Egérkurzor is - - - - seconds - másodperc - - - - Delay: - Késleltetés: - - - - Include window title and frame - Ablakkeret és fejléc is - - - diff --git a/src/translations/lximage-qt_id.ts b/src/translations/lximage-qt_id.ts deleted file mode 100644 index 6c01d72..0000000 --- a/src/translations/lximage-qt_id.ts +++ /dev/null @@ -1,440 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Ambil cuplikan layar - - - - [FILE1, FILE2,...] - [BERKAS1, BERKAS2, ...] - - - - LxImage::MainWindow - - - About - Tentang - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - suatu penampil gambar yang sederhana dan cepat - -Hak cipta (C) 2013 -Projek LXDE: http://lxde.org/ - -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 - - - - - MainWindow - - - Image Viewer - Penampil Gambar - - - - &About - Tent&ang - - - - &Open File - &Buka Berkas - - - - Ctrl+O - Ctrl+O - - - - &Save - &Simpan - - - - Ctrl+S - Ctrl+S - - - - Save &As - Simpan Seb&agai - - - - Ctrl+A - Ctrl+A - - - - &Close - &Tutup - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - Per&besar - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - Per&kecil - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Salin ke Papan Klip - - - - - Next File - Berkas Selanjutnya - - - Right - Kanan - - - - - Previous File - Berkas Sebelumnya - - - Left - Kiri - - - - PgDown - - - - - PgUp - - - - - Original Size - Ukuran Asli - - - - &Fit - &Pas - - - - &Rotate Clockwise - Puta&r Searah Jarum Jam - - - - Rotate &Counterclockwise - Putar Ber&lawanan Jarum Jam - - - - P&references - P&referensi - - - - &Print - &Cetak - - - - Ctrl+P - - - - - First File - Berkas Pertama - - - - Home - asumsi: nama tombol - Home - - - - Last File - Berkas Terakhir - - - - End - asumsi: nama tombol - End - - - - &New Window - Je&ndela Baru - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Balikkan Arah &Horisontal - - - - Capture Screenshot - Ambil Cuplikan Layar - - - - F&ull Screen - Layar Pen&uh - - - - F11 - F11 - - - - Flip &Vertically - Balikkan Arah &Vertikal - - - - &Paste from Clipboard - Tem&pel dari Papan Klip - - - - &Slide Show - Pertunjukan &Salindia - - - - &Delete - &Hapus - - - - Del - Del - - - - Show Thumbnails - - - - - File Properties - - - - - &File - &Berkas - - - - &Help - B&antuan - - - - Go - Pergi - - - - &View - &Lihat - - - - &Edit - &Sunting - - - - Toolbar - - - - toolBar - Bilah Alat - - - - PreferencesDialog - - - Preferences - Preferensi - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - TODO: Tambahkan opsi konfigurasi di sini - - - Tab 1 - Tab 1 - - - Tab 2 - Tab 2 - - - - ScreenshotDialog - - - Screenshot - Cuplikan layar - - - - Take a screenshot - Ambil cuplikan layar - - - - Region - Wilayah - - - - Whole screen - Seluruh layar - - - - Current window only - Hanya jendela saat ini - - - - Include mouse cursor - Sertakan kursor tetikus - - - - seconds - detik - - - - Delay: - Tundaan: - - - - Include window title and frame - Sertakan rangka dan judul jendela - - - diff --git a/src/translations/lximage-qt_is.ts b/src/translations/lximage-qt_is.ts deleted file mode 100644 index c4a7053..0000000 --- a/src/translations/lximage-qt_is.ts +++ /dev/null @@ -1,408 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - - - - - [FILE1, FILE2,...] - - - - - LxImage::MainWindow - - - About - - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -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 - - - - - MainWindow - - - Image Viewer - - - - - &About - - - - - &Open File - - - - - Ctrl+O - - - - - &Save - - - - - Ctrl+S - - - - - Save &As - - - - - Ctrl+A - - - - - &Close - - - - - Ctrl+W - - - - - Zoom &In - - - - - Ctrl++ - - - - - Zoom &Out - - - - - Ctrl+- - - - - - &Copy to Clipboard - - - - - - Next File - - - - - - Previous File - - - - - PgDown - - - - - PgUp - - - - - Original Size - - - - - &Fit - - - - - &Rotate Clockwise - - - - - Rotate &Counterclockwise - - - - - P&references - - - - - &Print - - - - - Ctrl+P - - - - - First File - - - - - Home - - - - - Last File - - - - - End - - - - - &New Window - - - - - Ctrl+N - - - - - Flip &Horizontally - - - - - Capture Screenshot - - - - - F&ull Screen - - - - - F11 - - - - - Flip &Vertically - - - - - &Paste from Clipboard - - - - - &Slide Show - - - - - &Delete - - - - - Del - - - - - Show Thumbnails - - - - - File Properties - - - - - &File - - - - - &Help - - - - - Go - - - - - &View - - - - - &Edit - - - - - Toolbar - - - - - PreferencesDialog - - - Preferences - - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - - ScreenshotDialog - - - Screenshot - - - - - Take a screenshot - - - - - Region - - - - - Whole screen - - - - - Current window only - - - - - Include mouse cursor - - - - - seconds - - - - - Delay: - - - - - Include window title and frame - - - - diff --git a/src/translations/lximage-qt_it.ts b/src/translations/lximage-qt_it.ts deleted file mode 100644 index 9ad8cf0..0000000 --- a/src/translations/lximage-qt_it.ts +++ /dev/null @@ -1,417 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Cattura una schermata - - - - [FILE1, FILE2,...] - [File1, File2,...] - - - - LxImage::MainWindow - - - About - Informazioni - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - need update... - LXImage - un visualizzatore immagini semplice e veloce - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Autori: -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 (Caricamento in corso...) - Visualizzatore immagini - - - - %1 (Failed to Load) - Image Viewer - %1 (Caricamento non riuscito) - Visualizzatore immagini - - - - %1 (%2x%3) - Image Viewer - %1 (%2x%3) - Visualizzatore immagini - - - - Image Viewer - Visualizzatore immagini - - - - Thumbnails - Miniature - - - - MainWindow - - - Image Viewer - Visualizzatore immagini - - - - &About - Inform&azioni - - - - &Open File - &Apri file - - - - Ctrl+O - Shortcuts werden automatisch übersetzt - - - - - &Save - &Salva - - - - Ctrl+S - Ctrl+S - - - - Save &As - Salva &come - - - - Ctrl+A - Ctrl+A - - - - &Close - &Chiudi - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - &Ingrandisci - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - &Rimpicciolisci - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Copia negli appunti - - - - - Next File - File successivo - - - - - Previous File - File precedente - - - - PgDown - Pagina giù - - - - PgUp - Pagina su - - - - Original Size - Dimensioni originali - - - - &Fit - &Adatta - - - - &Rotate Clockwise - &Ruota in senso orario - - - - Rotate &Counterclockwise - Ruota in &senso antiorario - - - - P&references - P&referenze - - - - &Print - Stam&pa - - - - Ctrl+P - Ctrl+P - - - - First File - Primo file - - - - Home - Home - - - - Last File - Ultimo file - - - - End - Fine - - - - &New Window - &Nuova finestra - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Rispecchia &orizzontalmente - - - - Capture Screenshot - Cattura schermata - - - - F&ull Screen - &Schermo intero - - - - F11 - F11 - - - - Flip &Vertically - Rispecchia &verticalmente - - - - &Paste from Clipboard - &Incolla dagli appunti - - - - &Slide Show - &Presentazione - - - - &Delete - &Elimina - - - - Del - Canc - - - - Show Thumbnails - Mostra miniature - - - - File Properties - Übersetzung von 'file' weggelassen, da redundant. - Proprietà del file - - - - &File - &File - - - - &Help - &Aiuto - - - - Go - Vai - - - - &View - &Visualizza - - - - &Edit - &Modifica - - - - Toolbar - Barra degli strumenti - - - - 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 - - - - ScreenshotDialog - - - Screenshot - Schermata - - - - Take a screenshot - Catturta schermata - - - - Region - Regione - - - - Whole screen - Schermo intero - - - - Current window only - Finestra attuale - - - - Include mouse cursor - Includi cursore - - - - seconds - secondi - - - - Delay: - Ritardo: - - - - Include window title and frame - Includi cornice finestra - - - diff --git a/src/translations/lximage-qt_ja.ts b/src/translations/lximage-qt_ja.ts deleted file mode 100644 index 09ee825..0000000 --- a/src/translations/lximage-qt_ja.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - スクリーンショットを撮る - - - - [FILE1, FILE2,...] - [ファイル1, ファイル2,...] - - - - LxImage::MainWindow - - - About - このアプリケーションについて - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - シンプルで高速な画像ビューワ - -Copyright (C) 2013 -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 - - - - - MainWindow - - - Image Viewer - 画像ビューワ - - - - &About - このアプリケーションについて(&A) - - - - &Open File - ファイルを開く(&O) - - - - Ctrl+O - Ctrl+O - - - - &Save - 保存(&S) - - - - Ctrl+S - Ctrl+S - - - - Save &As - 名前を付けて保存(&A) - - - - Ctrl+A - Ctrl+A - - - - &Close - 閉じる(&C) - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - 拡大(&I) - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - 縮小(&O) - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - クリップボードへコピー(&C) - - - - - Next File - 次のファイル - - - Right - - - - - - Previous File - 前のファイル - - - Left - - - - - PgDown - - - - - PgUp - - - - - Original Size - 原寸大 - - - - &Fit - フィット(&F) - - - - &Rotate Clockwise - 時計方向に回転(&R) - - - - Rotate &Counterclockwise - 反時計方向に回転(&C) - - - - P&references - 設定(&R) - - - - &Print - 印刷(&P) - - - - Ctrl+P - - - - - First File - 最初のファイル - - - - Home - Home - - - - Last File - 最後のファイル - - - - End - End - - - - &New Window - 新規ウィンドウ(&N) - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - 水平方向に反転(&H) - - - - Capture Screenshot - スクリーンショットを撮る - - - - F&ull Screen - 全画面(&U) - - - - F11 - F11 - - - - Flip &Vertically - 垂直方向に反転(&V) - - - - &Paste from Clipboard - クリップボードからペースト(&P) - - - - &Slide Show - スライドショー(&S) - - - - &Delete - 削除(&D) - - - - Del - Del - - - - Show Thumbnails - - - - - File Properties - - - - - &File - ファイル(&F) - - - - &Help - ヘルプ(&H) - - - - Go - 移動 - - - - &View - 表示(&V) - - - - &Edit - 編集(&E) - - - - Toolbar - - - - toolBar - ツールバー - - - - PreferencesDialog - - - Preferences - 設定 - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - TODO: Add configuration options here - - - Tab 1 - タブ 1 - - - Tab 2 - タブ 2 - - - - ScreenshotDialog - - - Screenshot - スクリーンショット - - - - Take a screenshot - スクリーンショットを撮る - - - - Region - 領域 - - - - Whole screen - 画面全体 - - - - Current window only - 現在のウィンドウのみ - - - - Include mouse cursor - マウスカーソルを含む - - - - seconds - - - - - Delay: - 遅延: - - - - Include window title and frame - ウィンドウのタイトルと枠を含む - - - diff --git a/src/translations/lximage-qt_pa.ts b/src/translations/lximage-qt_pa.ts deleted file mode 100644 index ecb0313..0000000 --- a/src/translations/lximage-qt_pa.ts +++ /dev/null @@ -1,408 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - - - - - [FILE1, FILE2,...] - - - - - LxImage::MainWindow - - - About - - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -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 - - - - - MainWindow - - - Image Viewer - - - - - &About - - - - - &Open File - - - - - Ctrl+O - - - - - &Save - - - - - Ctrl+S - - - - - Save &As - - - - - Ctrl+A - - - - - &Close - - - - - Ctrl+W - - - - - Zoom &In - - - - - Ctrl++ - - - - - Zoom &Out - - - - - Ctrl+- - - - - - &Copy to Clipboard - - - - - - Next File - - - - - - Previous File - - - - - PgDown - - - - - PgUp - - - - - Original Size - - - - - &Fit - - - - - &Rotate Clockwise - - - - - Rotate &Counterclockwise - - - - - P&references - - - - - &Print - - - - - Ctrl+P - - - - - First File - - - - - Home - - - - - Last File - - - - - End - - - - - &New Window - - - - - Ctrl+N - - - - - Flip &Horizontally - - - - - Capture Screenshot - - - - - F&ull Screen - - - - - F11 - - - - - Flip &Vertically - - - - - &Paste from Clipboard - - - - - &Slide Show - - - - - &Delete - - - - - Del - - - - - Show Thumbnails - - - - - File Properties - - - - - &File - - - - - &Help - - - - - Go - - - - - &View - - - - - &Edit - - - - - Toolbar - - - - - PreferencesDialog - - - Preferences - - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - - ScreenshotDialog - - - Screenshot - - - - - Take a screenshot - - - - - Region - - - - - Whole screen - - - - - Current window only - - - - - Include mouse cursor - - - - - seconds - - - - - Delay: - - - - - Include window title and frame - - - - diff --git a/src/translations/lximage-qt_pl.ts b/src/translations/lximage-qt_pl.ts deleted file mode 100644 index 4102e60..0000000 --- a/src/translations/lximage-qt_pl.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Wykonaj zrzut ekranu - - - - [FILE1, FILE2,...] - [PLIK1, PLIK2,...] - - - - LxImage::MainWindow - - - About - O programie - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - prosta i szybka przeglądarka obrazów - -Prawa autorskie (C) 2013 -Projekt LXDE: http://lxde.org/ - -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 - Miniaturki - - - - MainWindow - - - Image Viewer - Przeglądarka obrazów - - - - &About - &O programie - - - - &Open File - O&twórz plik - - - - Ctrl+O - Ctrl+O - - - - &Save - &Zapisz - - - - Ctrl+S - Ctrl+S - - - - Save &As - Z&apisz jako - - - - Ctrl+A - Ctrl+A - - - - &Close - &Zamknij - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - Po&większ - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - Po&mniejsz - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Kopiuj do schowka - - - - - Next File - Następny plik - - - Right - W prawo - - - - - Previous File - Poprzedni plik - - - Left - W lewo - - - - PgDown - - - - - PgUp - - - - - Original Size - Rozmiar oryginalny - - - - &Fit - Dopa&sowanie - - - - &Rotate Clockwise - Obróć &zgodnie z ruchem wskazówek zegara - - - - Rotate &Counterclockwise - Ob&róć przeciwnie do ruchu wskazówek zegara - - - - P&references - Pre&ferencje - - - - &Print - &Drukuj - - - - Ctrl+P - - - - - First File - Pierwszy plik - - - - Home - Początek - - - - Last File - Ostatni plik - - - - End - Koniec - - - - &New Window - &Nowe okno - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Od&bij w poziomie - - - - Capture Screenshot - Przechwyć zrzut ekranu - - - - F&ull Screen - &Pełny ekran - - - - F11 - F11 - - - - Flip &Vertically - Odbi&j w pionie - - - - &Paste from Clipboard - &Wklej ze schowka - - - - &Slide Show - Pokaz s&lajdów - - - - &Delete - &Usuń - - - - Del - Usuń - - - - Show Thumbnails - Pokaż miniaturki - - - - File Properties - Właściwości pliku - - - - &File - &Plik - - - - &Help - Pomo&c - - - - Go - Przejdź - - - - &View - &Widok - - - - &Edit - &Edycja - - - - Toolbar - Pasek narzędziowy - - - toolBar - Pasek narzędzi - - - - PreferencesDialog - - - Preferences - Ustawienia - - - - Icon theme: - Zestaw ikon: - - - - Normal background color: - Kolor tła: - - - - Fullscreen background color: - Kolor tła dla pełnego ekranu: - - - - Slide show interval (seconds): - Interwał pokazu slajdów (sekundy): - - - - General - Ogólne - - - TODO: Add configuration options here - Do zrobienia: Dodać tutaj opcje konfiguracyjne - - - Tab 1 - Karta 1 - - - Tab 2 - Karta 2 - - - - ScreenshotDialog - - - Screenshot - Zrzut ekranu - - - - Take a screenshot - Wykonaj zrzut ekranu - - - - Region - Obszar - - - - Whole screen - Cały ekran - - - - Current window only - Tylko bieżące okno - - - - Include mouse cursor - Dołącz kursor myszy - - - - seconds - sekund - - - - Delay: - Opóźnienie: - - - - Include window title and frame - Dołącz tytuł okna i obramowanie - - - diff --git a/src/translations/lximage-qt_pt.desktop b/src/translations/lximage-qt_pt.desktop index b887169..c1fb48b 100644 --- a/src/translations/lximage-qt_pt.desktop +++ b/src/translations/lximage-qt_pt.desktop @@ -1,4 +1,4 @@ #Translations Name[pt]=LXImage-Qt GenericName[pt]=Visualizador de imagens -Comment[pt]=O visualizador de imagens do LxQt +Comment[pt]=O visualizador de imagens do LXQt diff --git a/src/translations/lximage-qt_pt.ts b/src/translations/lximage-qt_pt.ts deleted file mode 100644 index b6ed3fe..0000000 --- a/src/translations/lximage-qt_pt.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Obter captura de ecrã - - - - [FILE1, FILE2,...] - [Ficheiro1, ficheiro2,...] - - - - LxImage::MainWindow - - - About - Sobre - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - um visualizador de imagens simples e rápido - -Direitos de autor (C) 2013-2015 -Projeto LXDE: http://lxde.org/ - -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 - - - - MainWindow - - - Image Viewer - Visualizador de imagens - - - - &About - &Sobre - - - - &Open File - A&brir ficheiro - - - - Ctrl+O - Ctrl+O - - - - &Save - &Gravar - - - - Ctrl+S - Ctrl+S - - - - Save &As - Gravar &como - - - - Ctrl+A - Ctrl+A - - - - &Close - Fe&char - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - Ampl&iar - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - Redu&zir - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Copiar para a área de transferência - - - - - Next File - Próximo ficheiro - - - Right - Direita - - - - - Previous File - Ficheiro anterior - - - Left - Esquerda - - - - PgDown - PageDown - - - - PgUp - PageUp - - - - Original Size - Tamanho original - - - - &Fit - Aj&ustar - - - - &Rotate Clockwise - &Rodar à direita - - - - Rotate &Counterclockwise - Rodar à &esquerda - - - - P&references - P&referências - - - - &Print - Im&primir - - - - Ctrl+P - Ctrl+P - - - - First File - Primeiro ficheiro - - - - Home - Home - - - - Last File - Último ficheiro - - - - End - End - - - - &New Window - &Nova janela - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Inversão &horizontal - - - - Capture Screenshot - Captura de ecrã - - - - F&ull Screen - Ecrã co&mpleto - - - - F11 - F11 - - - - Flip &Vertically - Inversão &vertical - - - - &Paste from Clipboard - Colar da área de tran&sferência - - - - &Slide Show - Apre&sentação - - - - &Delete - E&liminar - - - - Del - Del - - - - Show Thumbnails - Mostrar miniaturas - - - - File Properties - Propriedades do ficheiro - - - - &File - &Ficheiro - - - - &Help - Aj&uda - - - - Go - Ir - - - - &View - &Ver - - - - &Edit - &Editar - - - - Toolbar - Barra de ferramentas - - - toolBar - Barra de ferramentas - - - - 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 - - - Tab 1 - Separador 1 - - - Tab 2 - Separador 2 - - - - ScreenshotDialog - - - Screenshot - Captura de ecrã - - - - Take a screenshot - Obter captura de ecrã - - - - Region - Região - - - - Whole screen - Todo o ecrã - - - - Current window only - Apenas janela atual - - - - Include mouse cursor - Incluir cursor do rato - - - - seconds - segundos - - - - Delay: - Atraso: - - - - Include window title and frame - Incluir título e moldura da janela - - - diff --git a/src/translations/lximage-qt_pt_BR.ts b/src/translations/lximage-qt_pt_BR.ts deleted file mode 100644 index db088db..0000000 --- a/src/translations/lximage-qt_pt_BR.ts +++ /dev/null @@ -1,439 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Capturar uma imagem da tela - - - - [FILE1, FILE2,...] - [FILE1, FILE2,...] - - - - LxImage::MainWindow - - - About - Sobre - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - é um simples e rápido visualizador de imagens - -Copyright (C) 2013 -Projeto LXDE: http://lxde.org/ - -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 - - - - - MainWindow - - - Image Viewer - Visualizador de Imagens - - - - &About - So&bre - - - - &Open File - Abrir &Arquivo - - - - Ctrl+O - Ctrl+O - - - - &Save - &Salvar - - - - Ctrl+S - Ctrl+S - - - - Save &As - Sal&var Como - - - - Ctrl+A - Ctrl+A - - - - &Close - Fe&char - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - Ampl&iar - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - Redu&zir - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Copiar para a Área de Transferência - - - - - Next File - Próximo Arquivo - - - Right - Direita - - - - - Previous File - Arquivo Anterior - - - Left - Esquerda - - - - PgDown - - - - - PgUp - - - - - Original Size - Tamanho Original - - - - &Fit - Ajustar - - - - &Rotate Clockwise - &Rotacionar em sentido horário - - - - Rotate &Counterclockwise - Rota&cionar em sentido anti-horário - - - - P&references - P&referências - - - - &Print - Im&primir - - - - Ctrl+P - - - - - First File - Primeiro arquivo - - - - Home - Inicio - - - - Last File - Último arquivo - - - - End - Fim - - - - &New Window - &Nova Janela - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Espelhar horizontalmente - - - - Capture Screenshot - Capturar Tela - - - - F&ull Screen - &Tela Cheia - - - - F11 - F11 - - - - Flip &Vertically - Espelhar &Verticalmente - - - - &Paste from Clipboard - Has a problem, no similar caracter for shortcut. - Colar da Área de Transferência - - - - &Slide Show - Apresentação de Slides - - - - &Delete - &Excluir - - - - Del - Remover - - - - Show Thumbnails - - - - - File Properties - - - - - &File - &Arquivo - - - - &Help - &Ajuda - - - - Go - Ir - - - - &View - &Visualizar - - - - &Edit - &Editar - - - - Toolbar - - - - toolBar - Barra de Ferramentas - - - - PreferencesDialog - - - Preferences - Preferências - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - FAZER: Adicionar opções de configurações aqui - - - Tab 1 - Aba 1 - - - Tab 2 - Aba 2 - - - - ScreenshotDialog - - - Screenshot - Captura de tela - - - - Take a screenshot - Capturar a tela - - - - Region - Região - - - - Whole screen - Tela Inteira - - - - Current window only - Somente a janela ativa - - - - Include mouse cursor - Incluir o cursor do mouse - - - - seconds - segundos - - - - Delay: - Atraso: - - - - Include window title and frame - Incluir título da janela e moldura - - - diff --git a/src/translations/lximage-qt_ru.ts b/src/translations/lximage-qt_ru.ts deleted file mode 100644 index 64b257e..0000000 --- a/src/translations/lximage-qt_ru.ts +++ /dev/null @@ -1,414 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Сделать снимок экрана - - - - [FILE1, FILE2,...] - [ФАЙЛ1, ФАЙЛ2, ...] - - - - LxImage::MainWindow - - - About - О программе - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - простой и быстрый просмотрщик изображений - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -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 - Эскизы - - - - MainWindow - - - Image Viewer - Просмотрщик изображений - - - - &About - О &программе - - - - &Open File - &Открыть файл - - - - Ctrl+O - - - - - &Save - &Сохранить - - - - Ctrl+S - - - - - Save &As - Сохранить &как - - - - Ctrl+A - - - - - &Close - &Закрыть - - - - Ctrl+W - - - - - Zoom &In - При&близить - - - - Ctrl++ - - - - - Zoom &Out - От&далить - - - - Ctrl+- - - - - - &Copy to Clipboard - Скопировать в &буфер обмена - - - - - Next File - Следующий файл - - - - - Previous File - Предыдущий файл - - - - PgDown - - - - - PgUp - - - - - Original Size - Исходный размер - - - - &Fit - &Заполнить - - - - &Rotate Clockwise - Пове&рнуть по часовой стрелке - - - - Rotate &Counterclockwise - Повернуть &против часовой стрелки - - - - P&references - &Настройки - - - - &Print - &Печать - - - - Ctrl+P - - - - - First File - Первый файл - - - - Home - - - - - Last File - Последний файл - - - - End - - - - - &New Window - Новое &окно - - - - Ctrl+N - - - - - Flip &Horizontally - Отразить &горизонтально - - - - Capture Screenshot - Сделать снимок экрана - - - - F&ull Screen - Полный &экран - - - - F11 - - - - - Flip &Vertically - Отразить &вертикально - - - - &Paste from Clipboard - &Вставить из буфера обмена - - - - &Slide Show - &Слайд-шоу - - - - &Delete - &Удалить - - - - Del - - - - - Show Thumbnails - Показать эскизы - - - - File Properties - Свойства файла - - - - &File - &Файл - - - - &Help - &Помощь - - - - Go - Перейти - - - - &View - &Вид - - - - &Edit - &Редактировать - - - - Toolbar - Панель инструментов - - - - PreferencesDialog - - - Preferences - Настройки - - - - Icon theme: - Тема значков: - - - - Normal background color: - Обычный цвет фона: - - - - Fullscreen background color: - Цвет фона для режима полного экрана: - - - - Slide show interval (seconds): - Интервал слайд-шоу (в секундах): - - - - General - Общие - - - - ScreenshotDialog - - - Screenshot - Снимок экрана - - - - Take a screenshot - Сделать снимок экрана - - - - Region - Область - - - - Whole screen - Весь экран - - - - Current window only - Только активное окно - - - - Include mouse cursor - Показывать курсор мыши - - - - seconds - секунд(ы) - - - - Delay: - Задержка: - - - - Include window title and frame - Показывать заголовок и обрамление окна - - - diff --git a/src/translations/lximage-qt_sv.ts b/src/translations/lximage-qt_sv.ts deleted file mode 100644 index 704a165..0000000 --- a/src/translations/lximage-qt_sv.ts +++ /dev/null @@ -1,497 +0,0 @@ - - - - - ../data/lxinput.desktop.in.h:1 - - Keyboard and Mouse - Tangentbord och mus - - - - ../data/lxinput.desktop.in.h:2 - - Configure keyboard, mouse, and other input devices - Inställningar för tangentbord, mus och andra inmatningsenheter - - - - ../data/lxinput.ui.h:1 - - Input Device Preferences - Egenskaper för inmatningsenhet - - - - ../data/lxinput.ui.h:10 - - Mouse - Mus - - - - ../data/lxinput.ui.h:11 - - Delay before each key starts repeating - Tid innan varje tangent repeteras - - - - ../data/lxinput.ui.h:12 - - Repeat delay: - Tid innan upprepning: - - - - ../data/lxinput.ui.h:13 - - Interval between each key repeat - Intervall mellan upprening av tangenter - - - - ../data/lxinput.ui.h:14 - - Long - Lång - - - - ../data/lxinput.ui.h:15 - - Short - Kort - - - - ../data/lxinput.ui.h:16 - - Repeat interval: - Tid mellan upprepningar: - - - - ../data/lxinput.ui.h:17 - - Type in the following box to test your keyboard settings - För att pröva dina inställningar kan du skriva i följande ruta - - - - ../data/lxinput.ui.h:18 - - <b>Character Repeat</b> - <b>Teckenupprepning</b> - - - - ../data/lxinput.ui.h:19 - - Beep when there is an error of keyboard input - Avge ett pip när ett fel uppstår vid tangentbordsinmatning - - - - ../data/lxinput.ui.h:2 - - Sensitivity: - Känslighet: - - - - ../data/lxinput.ui.h:20 - - <b>Keyboard layout</b> - <b>Tangentbordsupplägg</b> - - - - ../data/lxinput.ui.h:21 - - Keyboard - Tangentbord - - - - ../data/lxinput.ui.h:22 - - Touch Pad - Pekplatta - - - - ../data/lxinput.ui.h:3 - - High - Hög - - - - ../data/lxinput.ui.h:4 - - Low - Låg - - - - ../data/lxinput.ui.h:5 - - Fast - Snabb - - - - ../data/lxinput.ui.h:6 - - Slow - Långsam - - - - ../data/lxinput.ui.h:7 - - Acceleration: - Acceleration: - - - - ../data/lxinput.ui.h:8 - - <b>Motion</b> - <b>Förflyttning</b> - - - - ../data/lxinput.ui.h:9 - - Left handed (Swap left and right mouse buttons) - Vänsterhänt (byt funktioner för vänster och höger musknapp) - - - - LxImage::Application - - Take a screenshot - - - - [FILE1, FILE2,...] - - - - - LxImage::MainWindow - - About - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -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 - - - - - MainWindow - - Image Viewer - - - - &About - - - - &Open File - - - - Ctrl+O - - - - &Save - - - - Ctrl+S - - - - Save &As - - - - Ctrl+A - - - - &Close - - - - Ctrl+W - - - - Zoom &In - - - - Ctrl++ - - - - Zoom &Out - - - - Ctrl+- - - - - &Copy to Clipboard - - - - Next File - - - - Previous File - - - - Original Size - - - - &Fit - - - - &Rotate Clockwise - - - - Rotate &Counterclockwise - - - - P&references - - - - &Print - - - - First File - - - - Home - - - - Last File - - - - End - - - - &New Window - - - - Ctrl+N - - - - Flip &Horizontally - - - - Capture Screenshot - - - - F&ull Screen - - - - F11 - - - - Flip &Vertically - - - - &Paste from Clipboard - - - - &Slide Show - - - - &Delete - - - - Del - - - - &File - - - - &Help - - - - Go - - - - &View - - - - &Edit - - - - Toolbar - - - - PgDown - - - - PgUp - - - - Ctrl+P - - - - Show Thumbnails - - - - File Properties - - - - - PreferencesDialog - - Preferences - - - - Icon theme: - - - - Normal background color: - - - - Fullscreen background color: - - - - Slide show interval (seconds): - - - - General - - - - - ScreenshotDialog - - Screenshot - - - - Take a screenshot - - - - Region - - - - Whole screen - - - - Current window only - - - - Include mouse cursor - - - - seconds - - - - Delay: - - - - Include window title and frame - - - - diff --git a/src/translations/lximage-qt_template.ts b/src/translations/lximage-qt_template.ts deleted file mode 100644 index a97cc93..0000000 --- a/src/translations/lximage-qt_template.ts +++ /dev/null @@ -1,408 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - - - - - [FILE1, FILE2,...] - - - - - LxImage::MainWindow - - - About - - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -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 - - - - - MainWindow - - - Image Viewer - - - - - &About - - - - - &Open File - - - - - Ctrl+O - - - - - &Save - - - - - Ctrl+S - - - - - Save &As - - - - - Ctrl+A - - - - - &Close - - - - - Ctrl+W - - - - - Zoom &In - - - - - Ctrl++ - - - - - Zoom &Out - - - - - Ctrl+- - - - - - &Copy to Clipboard - - - - - - Next File - - - - - - Previous File - - - - - PgDown - - - - - PgUp - - - - - Original Size - - - - - &Fit - - - - - &Rotate Clockwise - - - - - Rotate &Counterclockwise - - - - - P&references - - - - - &Print - - - - - Ctrl+P - - - - - First File - - - - - Home - - - - - Last File - - - - - End - - - - - &New Window - - - - - Ctrl+N - - - - - Flip &Horizontally - - - - - Capture Screenshot - - - - - F&ull Screen - - - - - F11 - - - - - Flip &Vertically - - - - - &Paste from Clipboard - - - - - &Slide Show - - - - - &Delete - - - - - Del - - - - - Show Thumbnails - - - - - File Properties - - - - - &File - - - - - &Help - - - - - Go - - - - - &View - - - - - &Edit - - - - - Toolbar - - - - - PreferencesDialog - - - Preferences - - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - - ScreenshotDialog - - - Screenshot - - - - - Take a screenshot - - - - - Region - - - - - Whole screen - - - - - Current window only - - - - - Include mouse cursor - - - - - seconds - - - - - Delay: - - - - - Include window title and frame - - - - diff --git a/src/translations/lximage-qt_uk.ts b/src/translations/lximage-qt_uk.ts deleted file mode 100644 index 753737b..0000000 --- a/src/translations/lximage-qt_uk.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - Зробити знімок - - - - [FILE1, FILE2,...] - [ФАЙЛ1, ФАЙЛ2,...] - - - - LxImage::MainWindow - - - About - Про програму - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - простий та швидкий переглядач зображень - -Copyright (C) 2013 -Проект 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 - - - - - MainWindow - - - Image Viewer - Переглядач зображень - - - - &About - &Про програму - - - - &Open File - &Відкрити файл - - - - Ctrl+O - Ctrl+O - - - - &Save - &Зберегти - - - - Ctrl+S - Ctrl+S - - - - Save &As - Зберегти &як - - - - Ctrl+A - Ctrl+A - - - - &Close - &Закрити - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - З&більшити - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - &Зменшити - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - &Копіювати до буфера - - - - - Next File - Наступний файл - - - Right - Праворуч - - - - - Previous File - Попередній Файл - - - Left - Ліворуч - - - - PgDown - - - - - PgUp - - - - - Original Size - Оригінальний розмір - - - - &Fit - &Підігнати - - - - &Rotate Clockwise - &Обернути за год. стрілкою - - - - Rotate &Counterclockwise - Обернути проти &год. стрілки - - - - P&references - На&лаштування - - - - &Print - &Друк - - - - Ctrl+P - - - - - First File - Перший файл - - - - Home - Home - - - - Last File - Останній файл - - - - End - End - - - - &New Window - &Нове вікно - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - Віддзеркалити &горизонтально - - - - Capture Screenshot - Зробити знімок екрана - - - - F&ull Screen - П&овний екран - - - - F11 - F11 - - - - Flip &Vertically - Віддзеркалити &вертикально - - - - &Paste from Clipboard - &Вставити з буфера обміну - - - - &Slide Show - &Показ слайдів - - - - &Delete - В&илучити - - - - Del - Del - - - - Show Thumbnails - - - - - File Properties - - - - - &File - &Файл - - - - &Help - &Довідка - - - - Go - Перейти - - - - &View - П&ерегляд - - - - &Edit - &Редагування - - - - Toolbar - - - - toolBar - Панель інструментів - - - - PreferencesDialog - - - Preferences - Налаштування - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - Далі буде... - - - Tab 1 - Вкладка 1 - - - Tab 2 - Вкладка 2 - - - - ScreenshotDialog - - - Screenshot - Знімок екрану - - - - Take a screenshot - Зробити знімок - - - - Region - Регіон - - - - Whole screen - Екран цілком - - - - Current window only - Лише поточне вікно - - - - Include mouse cursor - Включаючи вказівник миші - - - - seconds - секунд - - - - Delay: - Затримка: - - - - Include window title and frame - Включаючи заголовок вікна та кадр - - - diff --git a/src/translations/lximage-qt_zh_CN.ts b/src/translations/lximage-qt_zh_CN.ts deleted file mode 100644 index 6f9853a..0000000 --- a/src/translations/lximage-qt_zh_CN.ts +++ /dev/null @@ -1,438 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - 抓取屏幕截图 - - - - [FILE1, FILE2,...] - [文件1, 文件2,...] - - - - LxImage::MainWindow - - - About - 关于 - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - 一款简单快速的图像查看器 - -版权所有 (C) 2013 -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 - - - - - MainWindow - - - Image Viewer - 图像查看器 - - - - &About - 关于(&A) - - - - &Open File - 打开文件(&O) - - - - Ctrl+O - Ctrl+O - - - - &Save - 保存(&S) - - - - Ctrl+S - Ctrl+S - - - - Save &As - 另存为(&A) - - - - Ctrl+A - Ctrl+A - - - - &Close - 关闭(&C) - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - 放大(&I) - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - 缩小(&O) - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - 复制到剪贴板(&C) - - - - - Next File - 下一个文件 - - - Right - - - - - - Previous File - 上一个文件 - - - Left - - - - - PgDown - - - - - PgUp - - - - - Original Size - 原始尺寸 - - - - &Fit - 适合(&F) - - - - &Rotate Clockwise - 顺时针旋转(&R) - - - - Rotate &Counterclockwise - 逆时针旋转(&C) - - - - P&references - 偏好设置(&R) - - - - &Print - 打印(&P) - - - - Ctrl+P - - - - - First File - 第一个文件 - - - - Home - 起始 - - - - Last File - 最后一个文件 - - - - End - 结束 - - - - &New Window - 新建窗口(&N) - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - 水平翻转(&H) - - - - Capture Screenshot - 抓取屏幕截图 - - - - F&ull Screen - 全屏(&U) - - - - F11 - F11 - - - - Flip &Vertically - 垂直翻转(&V) - - - - &Paste from Clipboard - 从剪贴板粘贴(&P) - - - - &Slide Show - 幻灯片放映(&S) - - - - &Delete - 删除(&D) - - - - Del - 删除 - - - - Show Thumbnails - - - - - File Properties - - - - - &File - 文件(&F) - - - - &Help - 帮助(&H) - - - - Go - 转到 - - - - &View - 查看(&V) - - - - &Edit - 编辑(&E) - - - - Toolbar - - - - toolBar - 工具栏 - - - - PreferencesDialog - - - Preferences - 偏好设置 - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - TODO: Add configuration options here - TODO: Add configuration options here - - - Tab 1 - 标签 1 - - - Tab 2 - 标签 2 - - - - ScreenshotDialog - - - Screenshot - 屏幕截图 - - - - Take a screenshot - 抓取屏幕截图 - - - - Region - 区域 - - - - Whole screen - 整个屏幕 - - - - Current window only - 仅当前窗口 - - - - Include mouse cursor - 包括鼠标光标 - - - - seconds - - - - - Delay: - 延迟: - - - - Include window title and frame - 包括窗口标题和框架 - - - diff --git a/src/translations/lximage-qt_zh_TW.ts b/src/translations/lximage-qt_zh_TW.ts deleted file mode 100644 index 308453c..0000000 --- a/src/translations/lximage-qt_zh_TW.ts +++ /dev/null @@ -1,426 +0,0 @@ - - - - - LxImage::Application - - - Take a screenshot - 拍攝螢幕快照 - - - - [FILE1, FILE2,...] - [檔案1、檔案2...] - - - - LxImage::MainWindow - - - About - 關於 - - - - LXImage - a simple and fast image viewer - -Copyright (C) 2013 -LXDE Project: http://lxde.org/ - -Authors: -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - LXImage - 簡單快速的圖片檢視程式r - -版權所有 (C) 2013 -LXDE 專案: http://lxde.org/ - -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 - - - - - MainWindow - - - Image Viewer - 圖片檢視程式 - - - - &About - 關於(&A) - - - - &Open File - 開啟檔案(&O) - - - - Ctrl+O - Ctrl+O - - - - &Save - 儲存(&S) - - - - Ctrl+S - Ctrl+S - - - - Save &As - 另存新檔(&A) - - - - Ctrl+A - Ctrl+A - - - - &Close - 關閉(&C) - - - - Ctrl+W - Ctrl+W - - - - Zoom &In - 拉近(&I) - - - - Ctrl++ - Ctrl++ - - - - Zoom &Out - 拉遠(&O) - - - - Ctrl+- - Ctrl+- - - - - &Copy to Clipboard - 複製到剪貼簿(&C) - - - - - Next File - 下一個檔案 - - - Right - - - - - - Previous File - 前一個檔案 - - - Left - - - - - PgDown - - - - - PgUp - - - - - Original Size - 原尺寸 - - - - &Fit - 適合視窗大小(&F) - - - - &Rotate Clockwise - 順時鐘旋轉(&R) - - - - Rotate &Counterclockwise - 逆時鐘旋轉(&C) - - - - P&references - 偏好設定(&R) - - - - &Print - 列印(&P) - - - - Ctrl+P - - - - - First File - 第一個檔案 - - - - Home - - - - - Last File - 最後一個檔案 - - - - End - - - - - &New Window - 新視窗(&N) - - - - Ctrl+N - Ctrl+N - - - - Flip &Horizontally - 水平翻轉(&H) - - - - Capture Screenshot - 拍攝螢幕快照 - - - - F&ull Screen - 全螢幕(&U) - - - - F11 - F11 - - - - Flip &Vertically - 垂直翻轉(&V) - - - - &Paste from Clipboard - 從剪貼簿貼上(&P) - - - - &Slide Show - 投影片播放(&S) - - - - &Delete - 刪除(&D) - - - - Del - Del - - - - Show Thumbnails - - - - - File Properties - - - - - &File - 檔案(&F) - - - - &Help - 說明(&H) - - - - Go - 前往 - - - - &View - 檢視(&V) - - - - &Edit - 編輯(&E) - - - - Toolbar - - - - toolBar - 工具列 - - - - PreferencesDialog - - - Preferences - 偏好設定 - - - - Icon theme: - - - - - Normal background color: - - - - - Fullscreen background color: - - - - - Slide show interval (seconds): - - - - - General - - - - - ScreenshotDialog - - - Screenshot - 螢幕快照 - - - - Take a screenshot - 拍攝螢幕快照 - - - - Region - 區域 - - - - Whole screen - 整個螢幕 - - - - Current window only - 只有目前的視窗 - - - - Include mouse cursor - 包含滑鼠游標 - - - - seconds - - - - - Delay: - 延遲: - - - - Include window title and frame - 包含視窗標題和邊框 - - -