From ca7fa5be55b0d3bad9b71fbed11a2e2bb4b5fe33 Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Thu, 21 Jul 2016 00:17:52 +0200 Subject: [PATCH] Adding upstream version 0.11.1~11-g537bfc2. --- .gitignore | 2 - CMakeLists.txt | 2 + cmake/LXQtTranslateDesktop.cmake | 107 -- cmake/LXQtTranslateTs.cmake | 131 -- cmake/Qt5PatchedLinguistToolsMacros.cmake | 112 -- pcmanfm/CMakeLists.txt | 7 +- pcmanfm/application.cpp | 6 +- pcmanfm/autorundialog.cpp | 4 +- pcmanfm/desktop-preferences.ui | 19 + pcmanfm/desktoppreferencesdialog.cpp | 10 + pcmanfm/desktopwindow.cpp | 21 +- pcmanfm/desktopwindow.h | 1 + pcmanfm/main-win.ui | 4 +- pcmanfm/mainwindow.cpp | 34 +- pcmanfm/mainwindow.h | 3 +- pcmanfm/preferences.ui | 34 +- pcmanfm/preferencesdialog.cpp | 2 +- pcmanfm/settings.cpp | 10 +- pcmanfm/settings.h | 18 + pcmanfm/tabpage.cpp | 4 +- pcmanfm/translations/pcmanfm-qt.ts | 1258 ------------------ pcmanfm/translations/pcmanfm-qt_ar.ts | 1268 ------------------ pcmanfm/translations/pcmanfm-qt_cs_CZ.ts | 1307 ------------------ pcmanfm/translations/pcmanfm-qt_de.ts | 1462 --------------------- pcmanfm/translations/pcmanfm-qt_el.ts | 1456 -------------------- pcmanfm/translations/pcmanfm-qt_es.ts | 1450 -------------------- pcmanfm/translations/pcmanfm-qt_fr.ts | 1359 ------------------- pcmanfm/translations/pcmanfm-qt_gl.ts | 1372 ------------------- pcmanfm/translations/pcmanfm-qt_hu.ts | 1276 ------------------ pcmanfm/translations/pcmanfm-qt_it.ts | 1348 ------------------- pcmanfm/translations/pcmanfm-qt_ja.ts | 1403 -------------------- pcmanfm/translations/pcmanfm-qt_lt_LT.ts | 1361 ------------------- pcmanfm/translations/pcmanfm-qt_pl.ts | 1456 -------------------- pcmanfm/translations/pcmanfm-qt_pt.ts | 1408 -------------------- pcmanfm/translations/pcmanfm-qt_ru.ts | 1439 -------------------- pcmanfm/translations/pcmanfm-qt_tr_TR.ts | 1277 ------------------ pcmanfm/translations/pcmanfm-qt_zh_TW.ts | 1383 ------------------- 37 files changed, 149 insertions(+), 23665 deletions(-) delete mode 100644 .gitignore delete mode 100644 cmake/LXQtTranslateDesktop.cmake delete mode 100644 cmake/LXQtTranslateTs.cmake delete mode 100644 cmake/Qt5PatchedLinguistToolsMacros.cmake delete mode 100644 pcmanfm/translations/pcmanfm-qt.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_ar.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_cs_CZ.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_de.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_el.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_es.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_fr.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_gl.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_hu.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_it.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_ja.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_lt_LT.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_pl.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_pt.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_ru.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_tr_TR.ts delete mode 100644 pcmanfm/translations/pcmanfm-qt_zh_TW.ts 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 4200cb6..becda77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,6 +18,8 @@ find_package(Qt5DBus 5.2 REQUIRED) find_package(Qt5LinguistTools 5.2 REQUIRED) find_package(Qt5X11Extras 5.2 REQUIRED) find_package(fm-qt REQUIRED) +#Note: no run-time dependency on liblxqt, just a build dependency for lxqt_translate_ts/desktop +find_package(lxqt REQUIRED) find_package(PkgConfig REQUIRED) pkg_check_modules(LIB_XCB REQUIRED xcb) diff --git a/cmake/LXQtTranslateDesktop.cmake b/cmake/LXQtTranslateDesktop.cmake deleted file mode 100644 index 80e95d4..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 -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 -a -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/cmake/LXQtTranslateTs.cmake b/cmake/LXQtTranslateTs.cmake deleted file mode 100644 index 5998830..0000000 --- a/cmake/LXQtTranslateTs.cmake +++ /dev/null @@ -1,131 +0,0 @@ -#============================================================================= -# Copyright 2014 Luís Pereira -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# 1. Redistributions of source code must retain the copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. The name of the author may not be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#============================================================================= -# -# funtion lxqt_translate_ts(qmFiles -# [USE_QT5 [Yes | No]] -# [UPDATE_TRANSLATIONS [Yes | No]] -# SOURCES -# [TEMPLATE] translation_template -# [TRANSLATION_DIR] translation_directory -# [INSTALL_DIR] install_directory -# ) -# Output: -# qmFiles The generated compiled translations (.qm) files -# -# Input: -# USE_QT5 Optional flag to choose between Qt4 and Qt5. Defaults to Qt5 -# -# UPDATE_TRANSLATIONS Optional flag. Setting it to Yes, extracts and -# compiles the translations. Setting it No, only -# compiles them. -# -# TEMPLATE Optional translations files base name. Defaults to -# ${PROJECT_NAME}. An .ts extensions is added. -# -# TRANSLATION_DIR Optional path to the directory with the .ts files, -# relative to the CMakeList.txt. Defaults to -# "translations". -# -# INSTALL_DIR Optional destination of the file compiled files (qmFiles). -# If not present no installation is performed - - - -# CMake v2.8.3 needed to use the CMakeParseArguments module -cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR) - -# We use our patched version to round a annoying bug. -include(Qt5PatchedLinguistToolsMacros) - -function(lxqt_translate_ts qmFiles) - set(oneValueArgs USE_QT5 UPDATE_TRANSLATIONS TEMPLATE TRANSLATION_DIR INSTALL_DIR) - set(multiValueArgs SOURCES) - cmake_parse_arguments(TR "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - - if (NOT DEFINED TR_UPDATE_TRANSLATIONS) - set(TR_UPDATE_TRANSLATIONS "No") - endif() - - if (NOT DEFINED TR_USE_QT5) - set(TR_USE_QT5 "Yes") - endif() - - if(NOT DEFINED TR_TEMPLATE) - set(TR_TEMPLATE "${PROJECT_NAME}") - endif() - - if (NOT DEFINED TR_TRANSLATION_DIR) - set(TR_TRANSLATION_DIR "translations") - endif() - - file(GLOB tsFiles "${TR_TRANSLATION_DIR}/${TR_TEMPLATE}_*.ts") - set(templateFile "${TR_TRANSLATION_DIR}/${TR_TEMPLATE}.ts") - - if(TR_USE_QT5) - # Qt5 - if (TR_UPDATE_TRANSLATIONS) - qt5_patched_create_translation(QMS - ${TR_SOURCES} - ${templateFile} - OPTIONS -locations absolute - ) - qt5_patched_create_translation(QM - ${TR_SOURCES} - ${tsFiles} - OPTIONS -locations absolute - ) - else() - qt5_patched_add_translation(QM ${tsFiles}) - endif() - else() - # Qt4 - if(TR_UPDATE_TRANSLATIONS) - qt4_create_translation(QMS - ${TR_SOURCES} - ${templateFile} - OPTIONS -locations absolute - ) - qt4_create_translation(QM - ${TR_SOURCES} - ${tsFiles} - OPTIONS -locations absolute - ) - else() - qt4_add_translation(QM ${tsFiles}) - endif() - endif() - - if(TR_UPDATE_TRANSLATIONS) - add_custom_target("update_${TR_TEMPLATE}_ts" ALL DEPENDS ${QMS}) - endif() - - if(DEFINED TR_INSTALL_DIR) - install(FILES ${QM} DESTINATION ${TR_INSTALL_DIR}) - endif() - - set(${qmFiles} ${QM} PARENT_SCOPE) -endfunction() diff --git a/cmake/Qt5PatchedLinguistToolsMacros.cmake b/cmake/Qt5PatchedLinguistToolsMacros.cmake deleted file mode 100644 index e5c2f5c..0000000 --- a/cmake/Qt5PatchedLinguistToolsMacros.cmake +++ /dev/null @@ -1,112 +0,0 @@ -#============================================================================= -# Copyright 2005-2011 Kitware, Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# * Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# * Neither the name of Kitware, Inc. nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#============================================================================= - -include(CMakeParseArguments) - -function(QT5_PATCHED_CREATE_TRANSLATION _qm_files) - set(options) - set(oneValueArgs) - set(multiValueArgs OPTIONS) - - cmake_parse_arguments(_LUPDATE "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - set(_lupdate_files ${_LUPDATE_UNPARSED_ARGUMENTS}) - set(_lupdate_options ${_LUPDATE_OPTIONS}) - - set(_my_sources) - set(_my_tsfiles) - foreach(_file ${_lupdate_files}) - get_filename_component(_ext ${_file} EXT) - get_filename_component(_abs_FILE ${_file} ABSOLUTE) - if(_ext MATCHES "ts") - list(APPEND _my_tsfiles ${_abs_FILE}) - else() - list(APPEND _my_sources ${_abs_FILE}) - endif() - endforeach() - foreach(_ts_file ${_my_tsfiles}) - if(_my_sources) - # make a list file to call lupdate on, so we don't make our commands too - # long for some systems -# get_filename_component(_ts_name ${_ts_file} NAME_WE) - - get_filename_component(_name ${_ts_file} NAME) - string(REGEX REPLACE "^(.+)(\\.[^.]+)$" "\\1" _ts_name ${_name}) - - set(_ts_lst_file "${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${_ts_name}_lst_file") - set(_lst_file_srcs) - foreach(_lst_file_src ${_my_sources}) - set(_lst_file_srcs "${_lst_file_src}\n${_lst_file_srcs}") - endforeach() - - get_directory_property(_inc_DIRS INCLUDE_DIRECTORIES) - foreach(_pro_include ${_inc_DIRS}) - get_filename_component(_abs_include "${_pro_include}" ABSOLUTE) - set(_lst_file_srcs "-I${_pro_include}\n${_lst_file_srcs}") - endforeach() - - file(WRITE ${_ts_lst_file} "${_lst_file_srcs}") - endif() - add_custom_command(OUTPUT ${_ts_file} - COMMAND ${Qt5_LUPDATE_EXECUTABLE} - ARGS ${_lupdate_options} "@${_ts_lst_file}" -ts ${_ts_file} - DEPENDS ${_my_sources} ${_ts_lst_file} VERBATIM) - endforeach() - qt5_patched_add_translation(${_qm_files} ${_my_tsfiles}) - set(${_qm_files} ${${_qm_files}} PARENT_SCOPE) -endfunction() - - -function(QT5_PATCHED_ADD_TRANSLATION _qm_files) - foreach(_current_FILE ${ARGN}) - get_filename_component(_abs_FILE ${_current_FILE} ABSOLUTE) -# get_filename_component(qm ${_abs_FILE} NAME_WE) - - get_filename_component(_name ${_abs_FILE} NAME) - string(REGEX REPLACE "^(.+)(\\.[^.]+)$" "\\1" qm ${_name}) - - get_source_file_property(output_location ${_abs_FILE} OUTPUT_LOCATION) - if(output_location) - file(MAKE_DIRECTORY "${output_location}") - set(qm "${output_location}/${qm}.qm") - else() - set(qm "${CMAKE_CURRENT_BINARY_DIR}/${qm}.qm") - endif() - - add_custom_command(OUTPUT ${qm} - COMMAND ${Qt5_LRELEASE_EXECUTABLE} - ARGS ${_abs_FILE} -qm ${qm} - DEPENDS ${_abs_FILE} VERBATIM - ) - list(APPEND ${_qm_files} ${qm}) - endforeach() - set(${_qm_files} ${${_qm_files}} PARENT_SCOPE) -endfunction() diff --git a/pcmanfm/CMakeLists.txt b/pcmanfm/CMakeLists.txt index 02d54c0..247167b 100644 --- a/pcmanfm/CMakeLists.txt +++ b/pcmanfm/CMakeLists.txt @@ -38,6 +38,11 @@ qt5_wrap_ui(pcmanfm_UIS_H ${pcmanfm_UIS}) lxqt_translate_ts(QM_FILES UPDATE_TRANSLATIONS ${UPDATE_TRANSLATIONS} SOURCES ${pcmanfm_SRCS} ${pcmanfm_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} ) # translate desktop entry files for pcmanfm-qt and desktop preferences @@ -79,7 +84,5 @@ install(TARGETS pcmanfm-qt RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES ${DESKTOP_FILES} DESTINATION "${CMAKE_INSTALL_DATADIR}/applications" ) -install(FILES ${QM_FILES} DESTINATION "${CMAKE_INSTALL_DATADIR}/pcmanfm-qt/translations") - # prevent the generated files from being deleted during make clean set_directory_properties(PROPERTIES CLEAN_NO_CUSTOM true) diff --git a/pcmanfm/application.cpp b/pcmanfm/application.cpp index 21babe7..21c47f4 100644 --- a/pcmanfm/application.cpp +++ b/pcmanfm/application.cpp @@ -70,13 +70,13 @@ Application::Application(int& argc, char** argv): settings_(), profileName_("default"), daemonMode_(false), - desktopWindows_(), enableDesktopManager_(false), + desktopWindows_(), preferencesDialog_(), + editBookmarksialog_(), volumeMonitor_(NULL), userDirsWatcher_(NULL), - lxqtRunning_(false), - editBookmarksialog_() { + lxqtRunning_(false) { argc_ = argc; argv_ = argv; diff --git a/pcmanfm/autorundialog.cpp b/pcmanfm/autorundialog.cpp index 3c2dd1e..413b809 100644 --- a/pcmanfm/autorundialog.cpp +++ b/pcmanfm/autorundialog.cpp @@ -27,10 +27,10 @@ namespace PCManFM { AutoRunDialog::AutoRunDialog(GVolume* volume, GMount* mount, QWidget* parent, Qt::WindowFlags f): + QDialog(parent, f), cancellable(g_cancellable_new()), applications(NULL), - mount_(G_MOUNT(g_object_ref(mount))), - QDialog(parent, f) { + mount_(G_MOUNT(g_object_ref(mount))) { setAttribute(Qt::WA_DeleteOnClose); ui.setupUi(this); diff --git a/pcmanfm/desktop-preferences.ui b/pcmanfm/desktop-preferences.ui index f01c5bb..94b90f6 100644 --- a/pcmanfm/desktop-preferences.ui +++ b/pcmanfm/desktop-preferences.ui @@ -113,6 +113,25 @@ + + + + Icons + + + + + + Icon size: + + + + + + + + + diff --git a/pcmanfm/desktoppreferencesdialog.cpp b/pcmanfm/desktoppreferencesdialog.cpp index f414120..632ffe1 100644 --- a/pcmanfm/desktoppreferencesdialog.cpp +++ b/pcmanfm/desktoppreferencesdialog.cpp @@ -33,6 +33,8 @@ namespace PCManFM { +static int iconSizes[] = {96, 72, 64, 48, 36, 32, 24, 20}; + DesktopPreferencesDialog::DesktopPreferencesDialog(QWidget* parent, Qt::WindowFlags f): QDialog(parent, f), editDesktopFolderEnabled(false), @@ -78,6 +80,13 @@ DesktopPreferencesDialog::DesktopPreferencesDialog(QWidget* parent, Qt::WindowFl qDebug("wallpaper: %s", settings.wallpaper().toUtf8().data()); ui.imageFile->setText(settings.wallpaper()); + for(int i = 0; i < G_N_ELEMENTS(iconSizes); ++i) { + int size = iconSizes[i]; + ui.iconSize->addItem(QString("%1 x %1").arg(size), size); + if(settings.desktopIconSize() == size) + ui.iconSize->setCurrentIndex(i); + } + ui.font->setFont(settings.desktopFont()); ui.backgroundColor->setColor(settings.desktopBgColor()); @@ -132,6 +141,7 @@ void DesktopPreferencesDialog::applySettings() settings.setWallpaper(ui.imageFile->text()); int mode = ui.wallpaperMode->itemData(ui.wallpaperMode->currentIndex()).toInt(); settings.setWallpaperMode(mode); + settings.setDesktopIconSize(ui.iconSize->itemData(ui.iconSize->currentIndex()).toInt()); settings.setDesktopFont(ui.font->font()); settings.setDesktopBgColor(ui.backgroundColor->color()); settings.setDesktopFgColor(ui.textColor->color()); diff --git a/pcmanfm/desktopwindow.cpp b/pcmanfm/desktopwindow.cpp index fbabdd9..4037f7a 100644 --- a/pcmanfm/desktopwindow.cpp +++ b/pcmanfm/desktopwindow.cpp @@ -59,13 +59,13 @@ namespace PCManFM { DesktopWindow::DesktopWindow(int screenNum): View(Fm::FolderView::IconMode), - screenNum_(screenNum), - folder_(NULL), - model_(NULL), proxyModel_(NULL), + model_(NULL), + folder_(NULL), + wallpaperMode_(WallpaperNone), fileLauncher_(NULL), showWmMenu_(false), - wallpaperMode_(WallpaperNone), + screenNum_(screenNum), relayoutTimer_(NULL) { QDesktopWidget* desktopWidget = QApplication::desktop(); @@ -96,12 +96,14 @@ DesktopWindow::DesktopWindow(int screenNum): proxyModel_ = new Fm::ProxyFolderModel(); proxyModel_->setSourceModel(model_); proxyModel_->setShowThumbnails(settings.showThumbnails()); - proxyModel_->sort(Fm::FolderModel::ColumnFileMTime); + proxyModel_->sort(settings.desktopSortColumn(), settings.desktopSortOrder()); + proxyModel_->setFolderFirst(settings.desktopSortFolderFirst()); setModel(proxyModel_); connect(proxyModel_, &Fm::ProxyFolderModel::rowsInserted, this, &DesktopWindow::onRowsInserted); connect(proxyModel_, &Fm::ProxyFolderModel::rowsAboutToBeRemoved, this, &DesktopWindow::onRowsAboutToBeRemoved); connect(proxyModel_, &Fm::ProxyFolderModel::layoutChanged, this, &DesktopWindow::onLayoutChanged); + connect(proxyModel_, &Fm::ProxyFolderModel::sortFilterChanged, this, &DesktopWindow::onModelSortFilterChanged); connect(listView_, &QListView::indexesMoved, this, &DesktopWindow::onIndexesMoved); } @@ -343,7 +345,7 @@ void DesktopWindow::updateFromSettings(Settings& settings) { setWallpaperFile(settings.wallpaper()); setWallpaperMode(settings.wallpaperMode()); setFont(settings.desktopFont()); - setIconSize(Fm::FolderView::IconMode, QSize(settings.bigIconSize(), settings.bigIconSize())); + setIconSize(Fm::FolderView::IconMode, QSize(settings.desktopIconSize(), settings.desktopIconSize())); setMargins(settings.desktopCellMargins()); // setIconSize and setMargins may trigger relayout of items by QListView, so we need to do the layout again. queueRelayout(); @@ -426,6 +428,13 @@ void DesktopWindow::onLayoutChanged() { queueRelayout(); } +void DesktopWindow::onModelSortFilterChanged() { + Settings& settings = static_cast(qApp)->settings(); + settings.setDesktopSortColumn(static_cast(proxyModel_->sortColumn())); + settings.setDesktopSortOrder(proxyModel_->sortOrder()); + settings.setSesktopSortFolderFirst(proxyModel_->folderFirst()); +} + void DesktopWindow::onIndexesMoved(const QModelIndexList& indexes) { // remember the custom position for the items Q_FOREACH(const QModelIndex& index, indexes) { diff --git a/pcmanfm/desktopwindow.h b/pcmanfm/desktopwindow.h index 9d112d5..a6f5413 100644 --- a/pcmanfm/desktopwindow.h +++ b/pcmanfm/desktopwindow.h @@ -98,6 +98,7 @@ protected Q_SLOTS: void onRowsAboutToBeRemoved(const QModelIndex& parent, int start, int end); void onRowsInserted(const QModelIndex& parent, int start, int end); void onLayoutChanged(); + void onModelSortFilterChanged(); void onIndexesMoved(const QModelIndexList& indexes); void relayoutItems(); diff --git a/pcmanfm/main-win.ui b/pcmanfm/main-win.ui index 00509db..c70af4a 100644 --- a/pcmanfm/main-win.ui +++ b/pcmanfm/main-win.ui @@ -718,7 +718,7 @@ .. - Close &left tabs + Close &previous tabs @@ -727,7 +727,7 @@ .. - Close &right tabs + Close &next tabs diff --git a/pcmanfm/mainwindow.cpp b/pcmanfm/mainwindow.cpp index 4bb789a..f72c8cc 100644 --- a/pcmanfm/mainwindow.cpp +++ b/pcmanfm/mainwindow.cpp @@ -173,7 +173,7 @@ MainWindow::MainWindow(FmPath* path): addActions(ui.menubar->actions()); // Show or hide the menu bar - QMenu *menu = new QMenu(); + QMenu *menu = new QMenu(ui.toolBar); menu->addMenu(ui.menu_File); menu->addMenu(ui.menu_Editw); menu->addMenu(ui.menu_View); @@ -259,6 +259,9 @@ MainWindow::MainWindow(FmPath* path): if(settings.windowMaximized()) setWindowState(windowState() | Qt::WindowMaximized); } + + if(QApplication::layoutDirection() == Qt::RightToLeft) + setRTLIcons(true); } MainWindow::~MainWindow() { @@ -585,7 +588,7 @@ void MainWindow::onTabBarCloseRequested(int index) { void MainWindow::onResetFocus() { if(TabPage* page = currentPage()) { - currentPage()->folderView()->childView()->setFocus(); + page->folderView()->childView()->setFocus(); } } @@ -976,15 +979,34 @@ void MainWindow::on_actionPreferences_triggered() { app->preferences(QString()); } -/* -void MainWindow::changeEvent(QEvent* event) { +// change some icons according to layout direction +void MainWindow::setRTLIcons(bool isRTL) { + QIcon nxtIcn = QIcon::fromTheme("go-next"); + QIcon prevIcn = QIcon::fromTheme("go-previous"); + if(isRTL) { + ui.actionGoBack->setIcon(nxtIcn); + ui.actionCloseLeft->setIcon(nxtIcn); + ui.actionGoForward->setIcon(prevIcn); + ui.actionCloseRight->setIcon(prevIcn); + } + else { + ui.actionGoBack->setIcon(prevIcn); + ui.actionCloseLeft->setIcon(prevIcn); + ui.actionGoForward->setIcon(nxtIcn); + ui.actionCloseRight->setIcon(nxtIcn); + } +} + +void MainWindow::changeEvent(QEvent *event) { switch(event->type()) { - case QEvent::StyleChange: + case QEvent::LayoutDirectionChange: + setRTLIcons(QApplication::layoutDirection() == Qt::RightToLeft); + break; + default: break; } QWidget::changeEvent(event); } -*/ void MainWindow::onBackForwardContextMenu(QPoint pos) { // show a popup menu for browsing history here. diff --git a/pcmanfm/mainwindow.h b/pcmanfm/mainwindow.h index dc69494..0a93476 100644 --- a/pcmanfm/mainwindow.h +++ b/pcmanfm/mainwindow.h @@ -156,7 +156,7 @@ protected Q_SLOTS: void toggleMenuBar(bool checked); protected: - // void changeEvent( QEvent * event); + void changeEvent(QEvent *event); void closeTab(int index); virtual void resizeEvent(QResizeEvent *event); virtual void closeEvent(QCloseEvent *event); @@ -167,6 +167,7 @@ private: void updateUIForCurrentPage(); void updateViewMenuForCurrentPage(); void updateStatusBarForCurrentPage(); + void setRTLIcons(bool isRTL); private: Ui::MainWindow ui; diff --git a/pcmanfm/preferences.ui b/pcmanfm/preferences.ui index 81bb67b..c7e6c9d 100644 --- a/pcmanfm/preferences.ui +++ b/pcmanfm/preferences.ui @@ -245,33 +245,54 @@ + + Used by Icon View + Size of big icons: - + + + Used by Icon View + + + + Used by Compact View and Detailed List View + Size of small icons: - + + + Used by Compact View and Detailed List View + + + + Used by Thumbnail View + Size of thumbnails: - + + + Used by Thumbnail View + + @@ -440,6 +461,10 @@ A space is also reserved for 3 lines of text. + + When unchecked, the tab bar will be shown +only if there are more than one tab. + Always show the tab bar @@ -644,6 +669,9 @@ above the folder-view and not above the left pane. + + Needs ffmpegthumbnailer + Show thumbnails of files diff --git a/pcmanfm/preferencesdialog.cpp b/pcmanfm/preferencesdialog.cpp index b230bba..7abe5ca 100644 --- a/pcmanfm/preferencesdialog.cpp +++ b/pcmanfm/preferencesdialog.cpp @@ -187,7 +187,7 @@ void PreferencesDialog::initBehaviorPage(Settings& settings) { ui.bookmarkOpenMethod->setCurrentIndex(settings.bookmarkOpenMethod()); ui.viewMode->addItem(tr("Icon View"), (int)Fm::FolderView::IconMode); - ui.viewMode->addItem(tr("Compact Icon View"), (int)Fm::FolderView::CompactMode); + ui.viewMode->addItem(tr("Compact View"), (int)Fm::FolderView::CompactMode); ui.viewMode->addItem(tr("Thumbnail View"), (int)Fm::FolderView::ThumbnailMode); ui.viewMode->addItem(tr("Detailed List View"), (int)Fm::FolderView::DetailedListMode); const Fm::FolderView::ViewMode modes[] = { diff --git a/pcmanfm/settings.cpp b/pcmanfm/settings.cpp index cd80677..9da90fa 100644 --- a/pcmanfm/settings.cpp +++ b/pcmanfm/settings.cpp @@ -65,10 +65,12 @@ Settings::Settings(): desktopBgColor_(), desktopFgColor_(), desktopShadowColor_(), + desktopIconSize_(48), showWmMenu_(false), desktopShowHidden_(false), desktopSortOrder_(Qt::AscendingOrder), - desktopSortColumn_(Fm::FolderModel::ColumnFileName), + desktopSortColumn_(Fm::FolderModel::ColumnFileMTime), + desktopSortFolderFirst_(true), alwaysShowTabs_(true), showTabClose_(true), rememberWindowSize_(true), @@ -163,7 +165,7 @@ bool Settings::loadFile(QString filePath) { if(fallbackIconThemeName_.isEmpty()) { // FIXME: we should choose one from installed icon themes or get // the value from XSETTINGS instead of hard code a fallback value. - fallbackIconThemeName_ = "elementary"; // fallback icon theme name + fallbackIconThemeName_ = "oxygen"; // fallback icon theme name } suCommand_ = settings.value("SuCommand", "lxqt-sudo %s").toString(); setTerminal(settings.value("Terminal", "xterm").toString()); @@ -200,11 +202,13 @@ bool Settings::loadFile(QString filePath) { desktopFont_.fromString(settings.value("Font").toString()); else desktopFont_ = QApplication::font(); + desktopIconSize_ = settings.value("DesktopIconSize", 48).toInt(); showWmMenu_ = settings.value("ShowWmMenu", false).toBool(); desktopShowHidden_ = settings.value("ShowHidden", false).toBool(); desktopSortOrder_ = sortOrderFromString(settings.value("SortOrder").toString()); desktopSortColumn_ = sortColumnFromString(settings.value("SortColumn").toString()); + desktopSortFolderFirst_ = settings.value("SortFolderFirst", true).toBool(); desktopCellMargins_ = (settings.value("DesktopCellMargins", QSize(3, 1)).toSize() .expandedTo(QSize(0, 0))).boundedTo(QSize(48, 48)); @@ -310,10 +314,12 @@ bool Settings::saveFile(QString filePath) { settings.setValue("FgColor", desktopFgColor_.name()); settings.setValue("ShadowColor", desktopShadowColor_.name()); settings.setValue("Font", desktopFont_.toString()); + settings.setValue("DesktopIconSize", desktopIconSize_); settings.setValue("ShowWmMenu", showWmMenu_); settings.setValue("ShowHidden", desktopShowHidden_); settings.setValue("SortOrder", sortOrderToString(desktopSortOrder_)); settings.setValue("SortColumn", sortColumnToString(desktopSortColumn_)); + settings.setValue("SortFolderFirst", desktopSortFolderFirst_); settings.setValue("DesktopCellMargins", desktopCellMargins_); settings.endGroup(); diff --git a/pcmanfm/settings.h b/pcmanfm/settings.h index 8466baa..2c2107d 100644 --- a/pcmanfm/settings.h +++ b/pcmanfm/settings.h @@ -185,6 +185,14 @@ public: desktopFont_ = font; } + int desktopIconSize() const { + return desktopIconSize_; + } + + void setDesktopIconSize(int desktopIconSize) { + desktopIconSize_ = desktopIconSize; + } + bool showWmMenu() const { return showWmMenu_; } @@ -217,6 +225,14 @@ public: desktopSortColumn_ = desktopSortColumn; } + bool desktopSortFolderFirst() const { + return desktopSortFolderFirst_; + } + + void setSesktopSortFolderFirst(bool desktopFolderFirst) { + desktopSortFolderFirst_ = desktopFolderFirst; + } + bool alwaysShowTabs() const { return alwaysShowTabs_; } @@ -649,11 +665,13 @@ private: QColor desktopFgColor_; QColor desktopShadowColor_; QFont desktopFont_; + int desktopIconSize_; bool showWmMenu_; bool desktopShowHidden_; Qt::SortOrder desktopSortOrder_; Fm::FolderModel::ColumnId desktopSortColumn_; + bool desktopSortFolderFirst_; bool alwaysShowTabs_; bool showTabClose_; diff --git a/pcmanfm/tabpage.cpp b/pcmanfm/tabpage.cpp index 7d3ffc3..72c22c6 100644 --- a/pcmanfm/tabpage.cpp +++ b/pcmanfm/tabpage.cpp @@ -69,8 +69,8 @@ void ProxyFilter::setVirtHidden(FmFolder* folder) { TabPage::TabPage(FmPath* path, QWidget* parent): QWidget(parent), - folder_(NULL), folderModel_(NULL), + folder_(NULL), overrideCursor_(false) { Settings& settings = static_cast(qApp)->settings(); @@ -434,7 +434,7 @@ void TabPage::onSelChanged(int numSel) { else { goffset sum; GList* l; - msg = tr("%1 item(s) selected", NULL, numSel).arg(numSel); + msg = tr("%n item(s) selected", nullptr, numSel).arg(numSel); /* don't count if too many files are selected, that isn't lightweight */ if(numSel < 1000) { sum = 0; diff --git a/pcmanfm/translations/pcmanfm-qt.ts b/pcmanfm/translations/pcmanfm-qt.ts deleted file mode 100644 index ed8dcf4..0000000 --- a/pcmanfm/translations/pcmanfm-qt.ts +++ /dev/null @@ -1,1258 +0,0 @@ - - - - - AboutDialog - - - About - - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - - Lightweight file manager - - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - - Authors - - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - - License - - - - - AutoRunDialog - - - Removable medium is inserted - - - - - <b>Removable medium is inserted</b> - - - - - Type of medium: - - - - - Detecting... - - - - - Please select the action you want to perform: - - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - - - - - Folder path - - - - - &Browse - - - - - DesktopPreferencesDialog - - - Desktop Preferences - - - - - Background - - - - - Wallpaper mode: - - - - - Wallpaper image file: - - - - - Select background color: - - - - - Image file - - - - - Image file path - - - - - &Browse - - - - - Label Text - - - - - Select text color: - - - - - Select shadow color: - - - - - Select font: - - - - - General - - - - - Window Manager - - - - - Show menus provided by window managers when desktop is clicked - - - - - Advanced - - - - - MainWindow - - - File Manager - - - - - Go &Up - - - - - Go Up - - - - - Alt+Up - - - - - &Home - - - - - Alt+Home - - - - - &Reload - - - - - F5 - - - - - Go - - - - - Quit - - - - - &About - - - - - &New Window - - - - - New Window - - - - - Ctrl+N - - - - - Show &Hidden - - - - - Ctrl+H - - - - - &Computer - - - - - &Trash - - - - - &Network - - - - - &Desktop - - - - - &Add to Bookmarks - - - - - &Applications - - - - - Reload - - - - - &Icon View - - - - - &Compact View - - - - - &Detailed List - - - - - &Thumbnail View - - - - - Cu&t - - - - - Ctrl+X - - - - - &Copy - - - - - Ctrl+C - - - - - &Paste - - - - - Ctrl+V - - - - - Select &All - - - - - Ctrl+A - - - - - Pr&eferences - - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - &Folder - - - - - &Blank File - - - - - New &Tab - - - - - New Tab - - - - - Ctrl+T - - - - - Go &Back - - - - - Go Back - - - - - Alt+Left - - - - - Go &Forward - - - - - Go Forward - - - - - Alt+Right - - - - - &Invert Selection - - - - - &Delete - - - - - Del - - - - - &Rename - - - - - F2 - - - - - C&lose Tab - - - - - Ctrl+W - - - - - File &Properties - - - - - Alt+Return - - - - - &Folder Properties - - - - - Edit Bookmarks - - - - - Open &Terminal - - - - - F4 - - - - - Open as &Root - - - - - &Edit Bookmarks - - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - &Find Files - - - - - F3 - - - - - Filter - - - - - Filter by string... - - - - - &File - - - - - C&reate New - - - - - &Help - - - - - &View - - - - - &Sorting - - - - - &Edit - - - - - &Bookmarks - - - - - &Go - - - - - &Tool - - - - - Main Toolbar - - - - - PCManFM::Application - - - Name of configuration profile - - - - - PROFILE - - - - - Run PCManFM as a daemon - - - - - Quit PCManFM - - - - - Launch desktop manager - - - - - Turn off desktop manager if it's running - - - - - Open desktop preference dialog on the page with the specified name - - - - - - NAME - - - - - Open new window - - - - - Open Find Files utility - - - - - Set desktop wallpaper from image FILE - - - - - FILE - - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - - - - - MODE - - - - - Open Preferences dialog on the page with the specified name - - - - - Files or directories to open - - - - - [FILE1, FILE2,...] - - - - - - Error - - - - - Terminal emulator is not set. - - - - - PCManFM::AutoRunDialog - - - Open in file manager - - - - - Removable Disk - - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - - - - - Stretch to fill the entire screen - - - - - Stretch to fit the screen - - - - - Center on the screen - - - - - Tile the image to fill the entire screen - - - - - Image Files - - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - - - - - Desktop Preferences - - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - - - - - &Move to Trash - - - - - &Delete - - - - - - Error - - - - - Switch user command is not set. - - - - - PCManFM::PreferencesDialog - - - Icon View - - - - - Compact Icon View - - - - - Thumbnail View - - - - - Detailed List View - - - - - PCManFM::TabPage - - - Error - - - - - Free space: %1 (Total: %2) - - - - - %n item(s) - - - - - - - (%n hidden) - - - - - - - %1 item(s) selected - - - - - PCManFM::View - - - Open in New T&ab - - - - - Open in New Win&dow - - - - - Open in Termina&l - - - - - PreferencesDialog - - - Preferences - - - - - User Interface - - - - - Behavior - - - - - - Thumbnail - - - - - Volume - - - - - Advanced - - - - - Icons - - - - - Size of big icons: - - - - - Size of small icons: - - - - - Size of thumbnails: - - - - - Size of side pane icons: - - - - - Icon theme: - - - - - Window - - - - - Always show the tab bar - - - - - Show 'Close' buttons on tabs - - - - - Remember the size of the last closed window - - - - - Default width of new windows: - - - - - Default height of new windows: - - - - - Browsing - - - - - Open files with single click - - - - - Delay of auto-selection in single click mode (0 to disable) - - - - - Default view mode: - - - - - sec - - - - - File Operations - - - - - Confirm before deleting files - - - - - Move deleted files to "trash bin" instead of erasing from disk. - - - - - Show thumbnails of files - - - - - Only show thumbnails for local files - - - - - Display - - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Do not generate thumbnails for image files exceeding this size: - - - - - KB - - - - - Auto Mount - - - - - Mount mountable volumes automatically on program startup - - - - - Mount removable media automatically when they are inserted - - - - - Show available options for removable media when they are inserted - - - - - When removable medium unmounted: - - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Programs - - - - - Terminal emulator: - - - - - Switch &user command: - - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - - - - - Archiver in&tegration: - - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Use SI decimal prefixes instead of IEC binary prefixes - - - - diff --git a/pcmanfm/translations/pcmanfm-qt_ar.ts b/pcmanfm/translations/pcmanfm-qt_ar.ts deleted file mode 100644 index dfdf3da..0000000 --- a/pcmanfm/translations/pcmanfm-qt_ar.ts +++ /dev/null @@ -1,1268 +0,0 @@ - - - - - AboutDialog - - - About - - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - - Lightweight file manager - - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - - Authors - - - - - License - - - - - AutoRunDialog - - - Removable medium is inserted - - - - - <b>Removable medium is inserted</b> - - - - - Type of medium: - - - - - Detecting... - - - - - Please select the action you want to perform: - - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - - - - - Folder path - - - - - &Browse - - - - - DesktopPreferencesDialog - - - Desktop Preferences - - - - - Background - - - - - Wallpaper mode: - - - - - Wallpaper image file: - - - - - Select background color: - - - - - Image file - - - - - Image file path - - - - - &Browse - - - - - Label Text - - - - - Select text color: - - - - - Select shadow color: - - - - - Select font: - - - - - General - - - - - Window Manager - - - - - Show menus provided by window managers when desktop is clicked - - - - - Advanced - - - - - MainWindow - - - File Manager - - - - - Go Up - - - - - Alt+Up - - - - - Alt+Home - - - - - Reload - - - - - F5 - - - - - &Home - - - - - &Reload - - - - - Go - - - - - Quit - - - - - &About - - - - - New Window - - - - - Ctrl+N - - - - - Show &Hidden - - - - - Ctrl+H - - - - - &Computer - - - - - &Trash - - - - - &Network - - - - - &Desktop - - - - - &Add to Bookmarks - - - - - &Applications - - - - - Ctrl+X - - - - - &Copy - - - - - Ctrl+C - - - - - &Paste - - - - - Ctrl+V - - - - - Select &All - - - - - Pr&eferences - - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Invert Selection - - - - - &Delete - - - - - &Rename - - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+A - - - - - Go &Up - - - - - &New Window - - - - - &Icon View - - - - - &Compact View - - - - - &Detailed List - - - - - &Thumbnail View - - - - - Cu&t - - - - - New &Tab - - - - - New Tab - - - - - Ctrl+T - - - - - Go &Back - - - - - Go Back - - - - - Alt+Left - - - - - Go &Forward - - - - - Go Forward - - - - - Alt+Right - - - - - Del - - - - - F2 - - - - - C&lose Tab - - - - - File &Properties - - - - - &Folder Properties - - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - - - - - C&reate New - - - - - &Sorting - - - - - Main Toolbar - - - - - Ctrl+W - - - - - Alt+Return - - - - - Edit Bookmarks - - - - - Open &Terminal - - - - - F4 - - - - - Open as &Root - - - - - &Edit Bookmarks - - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - - - - - Filter by string... - - - - - &File - - - - - &Help - - - - - &View - - - - - &Edit - - - - - &Bookmarks - - - - - &Go - - - - - &Tool - - - - - PCManFM::Application - - - Name of configuration profile - - - - - PROFILE - - - - - Run PCManFM as a daemon - - - - - Quit PCManFM - - - - - Launch desktop manager - - - - - Turn off desktop manager if it's running - - - - - Open desktop preference dialog on the page with the specified name - - - - - - NAME - - - - - Open new window - - - - - Open Find Files utility - - - - - Set desktop wallpaper from image FILE - - - - - FILE - - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - - - - - MODE - - - - - Open Preferences dialog on the page with the specified name - - - - - Files or directories to open - - - - - [FILE1, FILE2,...] - - - - - - Error - - - - - Terminal emulator is not set. - - - - - PCManFM::AutoRunDialog - - - Open in file manager - - - - - Removable Disk - - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - - - - - Stretch to fill the entire screen - - - - - Stretch to fit the screen - - - - - Center on the screen - - - - - Tile the image to fill the entire screen - - - - - Image Files - - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - - - - - Desktop Preferences - - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - - - - - &Move to Trash - - - - - &Delete - - - - - - Error - - - - - Switch user command is not set. - - - - - PCManFM::PreferencesDialog - - - Icon View - - - - - Compact Icon View - - - - - Thumbnail View - - - - - Detailed List View - - - - - PCManFM::TabPage - - - Error - - - - - Free space: %1 (Total: %2) - - - - - %n item(s) - - - - - - - - - - - - (%n hidden) - - - - - - - - - - - - %1 item(s) selected - - - - - PCManFM::View - - - Open in New T&ab - - - - - Open in New Win&dow - - - - - Open in Termina&l - - - - - PreferencesDialog - - - Preferences - - - - - User Interface - - - - - Behavior - - - - - - Thumbnail - - - - - Volume - - - - - Advanced - - - - - Icons - - - - - Size of big icons: - - - - - Size of small icons: - - - - - Size of thumbnails: - - - - - Size of side pane icons: - - - - - Icon theme: - - - - - Window - - - - - Default width of new windows: - - - - - Default height of new windows: - - - - - Always show the tab bar - - - - - Show 'Close' buttons on tabs - - - - - Remember the size of the last closed window - - - - - Browsing - - - - - Open files with single click - - - - - Delay of auto-selection in single click mode (0 to disable) - - - - - Default view mode: - - - - - sec - - - - - File Operations - - - - - Confirm before deleting files - - - - - Move deleted files to "trash bin" instead of erasing from disk. - - - - - Show thumbnails of files - - - - - Only show thumbnails for local files - - - - - Display - - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Do not generate thumbnails for image files exceeding this size: - - - - - KB - - - - - Auto Mount - - - - - Mount mountable volumes automatically on program startup - - - - - Mount removable media automatically when they are inserted - - - - - Show available options for removable media when they are inserted - - - - - When removable medium unmounted: - - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Programs - - - - - Terminal emulator: - - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - - - - - Use SI decimal prefixes instead of IEC binary prefixes - - - - diff --git a/pcmanfm/translations/pcmanfm-qt_cs_CZ.ts b/pcmanfm/translations/pcmanfm-qt_cs_CZ.ts deleted file mode 100644 index c7760ce..0000000 --- a/pcmanfm/translations/pcmanfm-qt_cs_CZ.ts +++ /dev/null @@ -1,1307 +0,0 @@ - - - - - AboutDialog - - - About - O - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - - Lightweight file manager - - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - - Authors - Autoři - - - - License - Licence - - - - AutoRunDialog - - - Removable medium is inserted - - - - - <b>Removable medium is inserted</b> - - - - - Type of medium: - - - - - Detecting... - - - - - Please select the action you want to perform: - - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - - - - - Folder path - - - - - &Browse - - - - - DesktopPreferencesDialog - - - Desktop Preferences - - - - - Background - - - - - Wallpaper mode: - - - - - Wallpaper image file: - - - - - Select background color: - - - - - Image file - - - - - Image file path - - - - - &Browse - - - - - Label Text - - - - - Select text color: - - - - - Select shadow color: - - - - - Select font: - - - - - General - - - - - Window Manager - - - - - Show menus provided by window managers when desktop is clicked - - - - - Advanced - - - - - MainWindow - - - File Manager - Správce souborů - - - - Go Up - Nahoru - - - - Alt+Up - Alt+Nahoru - - - Home - Domů - - - - Alt+Home - Alt+Home - - - - Reload - Obnovit - - - - F5 - F5 - - - - &Home - &Domů - - - - &Reload - &Obnovit - - - - Go - Jdi - - - - Quit - ukončit - - - - &About - &O programu - - - - New Window - Nové okno - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Zobrazit &skryté - - - - Ctrl+H - Ctrl+H - - - - &Computer - P&očítač - - - - &Trash - &Koš - - - - &Network - &Síť - - - - &Desktop - P&locha - - - - &Add to Bookmarks - &Přidat k záložkám - - - - &Applications - P&rogramy - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Kopírovat - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Vložit - - - - Ctrl+V - Ctrl+V - - - - Select &All - Vybr&at všechno - - - - Pr&eferences - &Předvolby - - - - &Ascending - &Vzestupně - - - - &Descending - &Sesupně - - - - &By File Name - Podle &jména - - - - By &Modification Time - Podle č&asu - - - - By File &Type - Podle &typu - - - - By &Owner - Podle v&lastníka - - - - &Folder First - &Adresáře jako pvní - - - - &Invert Selection - &Invertovat výběr - - - - &Delete - &Smazat - - - - &Rename - Pře&jmenovat - - - - &Case Sensitive - &Zohlednit velikost písmen - - - - By File &Size - Podle v&elikosti - - - - &Close Window - &Zavřít okno - - - - Ctrl+A - Ctrl+A - - - - Go &Up - &Nahoru - - - - &New Window - Nové &okno - - - - &Icon View - &Ikony - - - - &Compact View - &Kompaktní - - - - &Detailed List - &Podrobnosti - - - - &Thumbnail View - &Náhledy - - - - Cu&t - V&yjmout - - - Ascending - Vzestupně - - - Descending - Sestupně - - - By File Name - Podle jména - - - By Modification Time - Podle času - - - By File Type - Podle typu - - - By Owner - Podle vlastníka - - - Folder First - Složky jako první - - - - New &Tab - Nový &panel - - - - New Tab - Nový panel - - - - Ctrl+T - Ctrl+T - - - - Go &Back - &Zpět - - - - Go Back - Zpět - - - - Alt+Left - Alt+Vlevo - - - - Go &Forward - &Vpřed - - - - Go Forward - Vpřed - - - - Alt+Right - Alt+Vpravo - - - - Del - - - - - F2 - F2 - - - - C&lose Tab - Zavřít panel - - - - File &Properties - Vlastnosti souboru - - - - &Folder Properties - Vlastnosti složky - - - - Ctrl+Shift+N - Ctrl+Shift+N - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - Filter - Filtrovat - - - - C&reate New - Vytvořit &nový - - - - &Sorting - Ř&adit - - - - Main Toolbar - Hlavní panel - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Return - - - Case Sensitive - Rozlišovat velikost písmen - - - By File Size - Podle velikosti - - - Close Window - Zavřít okno - - - - Edit Bookmarks - Upravit záložky - - - - Open &Terminal - Otevřít &terminál - - - - F4 - F4 - - - - Open as &Root - Otevřít jako &Root - - - - &Edit Bookmarks - &Upravit záložky - - - - &Folder - &Složku - - - - &Blank File - &Prázdný soubor - - - - &Find Files - Najít soubory - - - - F3 - F3 - - - - Filter by string... - Filtrovat podle řetězce... - - - - &File - &Soubor - - - - &Help - &Nápověda - - - - &View - &Zobrazení - - - - &Edit - Úpr&avy - - - - &Bookmarks - Zál&ožky - - - - &Go - &Jdi - - - - &Tool - Nás&troje - - - - PCManFM::Application - - - Name of configuration profile - - - - - PROFILE - - - - - Run PCManFM as a daemon - - - - - Quit PCManFM - - - - - Launch desktop manager - - - - - Turn off desktop manager if it's running - - - - - Open desktop preference dialog on the page with the specified name - - - - - - NAME - - - - - Open new window - - - - - Open Find Files utility - - - - - Set desktop wallpaper from image FILE - - - - - FILE - - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - - - - - MODE - - - - - Open Preferences dialog on the page with the specified name - - - - - Files or directories to open - - - - - [FILE1, FILE2,...] - - - - - - Error - - - - - Terminal emulator is not set. - - - - - PCManFM::AutoRunDialog - - - Open in file manager - - - - - Removable Disk - - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - - - - - Stretch to fill the entire screen - - - - - Stretch to fit the screen - - - - - Center on the screen - - - - - Tile the image to fill the entire screen - - - - - Image Files - - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - - - - - Desktop Preferences - - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - - - - - &Move to Trash - - - - - &Delete - - - - - - Error - - - - - Switch user command is not set. - - - - - PCManFM::PreferencesDialog - - - Icon View - - - - - Compact Icon View - - - - - Thumbnail View - - - - - Detailed List View - - - - - PCManFM::TabPage - - - Error - - - - - Free space: %1 (Total: %2) - - - - - %n item(s) - - - - - - - - - (%n hidden) - - - - - - - - - %1 item(s) selected - - - - - PCManFM::View - - - Open in New T&ab - - - - - Open in New Win&dow - - - - - Open in Termina&l - - - - - PreferencesDialog - - - Preferences - Předvolby - - - - User Interface - Uživatelské rozhraní - - - - Behavior - Chování - - - - - Thumbnail - Náhled - - - - Volume - Úložiště - - - - Advanced - Pokročilé - - - - Icons - Ikony - - - - Size of big icons: - Velikost velkých ikon: - - - - Size of small icons: - Velikost malých ikon: - - - - Size of thumbnails: - Velikost náhledů: - - - - Size of side pane icons: - Velikost ikon v postranním panelu: - - - - Icon theme: - Téma ikon: - - - - Window - Okno - - - - Default width of new windows: - Výchozí šířka nových oken: - - - - Default height of new windows: - Výchozí výška nových oken: - - - - Always show the tab bar - Vždycky zobrazovat lištu s panely - - - - Show 'Close' buttons on tabs - Zobrazovat tlačítko 'Zavřít' na panelech - - - - Remember the size of the last closed window - Pamatovat si rozměry naposedy zavřeného okna - - - - Browsing - Prohlížení - - - - Open files with single click - Otvírat soubory jedním kliknutím - - - - Delay of auto-selection in single click mode (0 to disable) - Zpoždění automatického výběru v jednoklikacím režimu (0 pro zákaz) - - - - Default view mode: - Výchozí režim pohledu: - - - - sec - s - - - - File Operations - Operace se soubory - - - - Confirm before deleting files - Potvrdit mazání souborů - - - - Move deleted files to "trash bin" instead of erasing from disk. - Přesunout mazané soubory do koše místo smazání z disku. - - - - Show thumbnails of files - Zobrazovat náhledy souborů - - - - Only show thumbnails for local files - Zobrazovat náhled jen u lokálních souborů - - - - Display - Zobrazení - - - - Bookmarks: - Záložky: - - - - Open in current tab - Otvírat v současném panelu - - - - Open in new tab - Otvírat v novém panelu - - - - Open in new window - Otvírat v novém okně - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - User interface - Uživatelské rozhraní - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - Domů - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Do not generate thumbnails for image files exceeding this size: - Negenerovat náhledy obrázků přesahujících tuto velikost: - - - - KB - KB - - - - Auto Mount - - - - - Mount mountable volumes automatically on program startup - Připojit přenosná úložiště automaticky při startu programu - - - - Mount removable media automatically when they are inserted - Připojit přenosná úložiště automaticky když jsou vložena - - - - Show available options for removable media when they are inserted - Zobrazit pokročilé volby pro přenosná úložiště když jsou vložena - - - - When removable medium unmounted: - Když je přenosné úložiště odpojeno: - - - - Close &tab containing removable medium - &Zavřít panel obsahující přenosné úložiště - - - - Chan&ge folder in the tab to home folder - Změnit adresář v panelu na &domovský - - - - Switch &user command: - Příkaz k přepnutí &uživatele: - - - - Archiver in&tegration: - Propojení s &archivátorem: - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Programs - Programy - - - - Terminal emulator: - Emulátor terminálu: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Příklady: "xterm -e %s" pro terminál nebo "gksu %s" pro přepnutí uživatele. -%s = příkazový řádek, který chceš spustit terminálem nebo su. - - - - Use SI decimal prefixes instead of IEC binary prefixes - - - - diff --git a/pcmanfm/translations/pcmanfm-qt_de.ts b/pcmanfm/translations/pcmanfm-qt_de.ts deleted file mode 100644 index 83d8577..0000000 --- a/pcmanfm/translations/pcmanfm-qt_de.ts +++ /dev/null @@ -1,1462 +0,0 @@ - - - - - AboutDialog - - - About - Über - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Ressourcen schonender Dateimanager - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -Dieses Programm ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, weitergeben und/oder modifizieren, entweder gemäß Version 2 der Lizenz oder (nach Ihrer Option) jeder späteren Version. - -Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License. - -Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA. - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programmierung: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Authors - Autoren - - - - License - Lizenz - - - - AutoRunDialog - - - Removable medium is inserted - Ein entfernbares Speichermedium wurde eingelegt - - - - <b>Removable medium is inserted</b> - <b>Ein entfernbares Speichermedium wurde eingelegt</b> - - - - Type of medium: - Art des Mediums: - - - - Detecting... - Erkennungsvorgang... - - - - Please select the action you want to perform: - Bitte wählen Sie die Handlung, welche Sie ausführen möchten: - - - - DesktopFolder - - - Form - - - - - Desktop - Schreibtisch - - - - Desktop folder: - Schreibtischordner: - - - - Image file - Bilddatei - - - - Folder path - Pfad des Ordners - - - - &Browse - &Suchen - - - - DesktopPreferencesDialog - - - Desktop Preferences - Schreibtischeinstellungen - - - - Background - Hintergrund - - - - Wallpaper mode: - Hintergrundbildmodus: - - - - Wallpaper image file: - Hintergrundbild: - - - - Select background color: - Hintergrundfarbe: - - - - Image file - Bilddatei - - - - Image file path - Pfad zur Bilddatei - - - - &Browse - &Suchen - - - - Label Text - Text - - - - Select text color: - Farbe der Beschriftung: - - - - Select shadow color: - Farbe des Schattens: - - - - Select font: - Schrift für Beschriftung: - - - - General - Allgemeines - - - - Window Manager - Fenstermanager - - - - Show menus provided by window managers when desktop is clicked - Beim Klicken auf den Schreibtisch die Menüs des Fenstermanagers anzeigen - - - Desktop - not an ideal translation, see discussion in https://github.com/lxde/lxqt/issues/699 - Schreibtisch - - - Desktop folder: - Schreibtischordner: - - - Folder path - Pfad des Ordners - - - - Advanced - Erweitert - - - - FindFilesDialog - - Find Files - Dateisuche - - - Name/Location - Dateiname, Lokalisation - - - File name patterns - Dateiname - - - Pattern: - Suchmuster: - - - Case insensitive - Groß- und Kleinschreibung ignorieren - - - Use regular expression - Muster ist regulärer Ausdruck - - - Places to search - Lokalisation - - - Add - Hinzufügen - - - Remove - Entfernen - - - Search in sub directories - Unterverzeichnisse einbeziehen - - - Search hidden files - versteckte Dateien einbeziehen - - - File Type - Dateityp - - - Only search for files of following types: - Suche auf die folgenden Typen beschränken: - - - Text files - Textdateien - - - Image files - Bilddateien - - - Audio files - Audiodateien - - - Video files - Videodateien - - - Documents - Dokumente - - - Content - Inhalt - - - File contains - Datei enthält - - - Properties - Dateieigenschaften - - - File Size - Dateigröße - - - Bigger than: - größer als: - - - Smaller than: - kleiner als: - - - Last Modified Time - Zeitpunkt der letzten Modifikation - - - Earlier than: - vor: - - - Later than: - nach: - - - - MainWindow - - - File Manager - Dateimanager - - - - Go Up - Hoch - - - - Alt+Up - Alt+Bild hoch - - - Home - Nutzerverzeichnis - - - - Alt+Home - Alt+Pos1 - - - - Reload - Neu laden - - - - F5 - F5 - - - - &Home - - - - - &Reload - Neu &laden - - - - Go - Los - - - - Quit - Verlassen - - - - &About - &Über - - - - New Window - Neues Fenster - - - - Ctrl+N - Strg+N - - - - Show &Hidden - &Versteckte anzeigen - - - - Ctrl+H - Strg+H - - - - &Computer - &Geräte - - - - &Trash - &Papierkorb - - - - &Network - &Netzwerk - - - - &Desktop - Schreib&tisch - - - - &Add to Bookmarks - Zu Lesezeichen &hinzufügen - - - - &Applications - &Anwendungen - - - - Ctrl+X - Strg+X - - - - &Copy - &Kopieren - - - - Ctrl+C - Strg+C - - - - &Paste - E&infügen - - - - Ctrl+V - Strg+V - - - - Select &All - &Alles markieren - - - - Pr&eferences - &Einstellungen - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Invert Selection - Auswahl &umkehren - - - - &Delete - &Löschen - - - - &Rename - Um&benennen - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+A - Strg+A - - - - Go &Up - &Übergeordneter Ordner - - - - &New Window - Neues &Fenster - - - - &Icon View - &Symbolansicht - - - - &Compact View - &Listenansicht - - - - &Detailed List - &Detailansicht - - - - &Thumbnail View - &Miniaturansicht - - - - Cu&t - &Ausschneiden - - - Ascending - Aufsteigend - - - Descending - Absteigend - - - By File Name - Nach Name - - - By Modification Time - Nach Änderungsdatum - - - By File Type - Nach Dateityp - - - By Owner - Nach Besitzer - - - Folder First - Ordner zuerst - - - - New &Tab - Neuer &Tab - - - - New Tab - Neuer Tab - - - - Ctrl+T - Strg+T - - - - Go &Back - &Zurück - - - - Go Back - Zurück - - - - Alt+Left - Alt+Pfeil links - - - - Go &Forward - &Vorwärts - - - - Go Forward - Vorwärts - - - - Alt+Right - Alt+Pfeil rechts - - - - Del - Entf - - - - F2 - F2 - - - - C&lose Tab - Tab &schließen - - - - File &Properties - &Dateieigenschaften - - - - &Folder Properties - &Eigenschaften des aktuellen Ordners - - - Folder - Ordner - - - - Ctrl+Shift+N - Strg+Umschalt+N - - - Blank File - Leere Datei - - - - Ctrl+Alt+N - Strg+Alt+N - - - - C&reate New - Neu e&rstellen - - - - &Sorting - S&ortierung - - - - Main Toolbar - Hauptwerkzeugleiste - - - - Ctrl+W - Strg+W - - - - Alt+Return - Alt+Return - - - Case Sensitive - Groß-/Kleinschreibung beachten - - - By File Size - Nach Dateigröße - - - Close Window - Fenster schließen - - - - Edit Bookmarks - Lesezeichen bearbeiten - - - - Open &Terminal - &Terminal öffnen - - - - F4 - F4 - - - - Open as &Root - Als &Root öffnen - - - - &Edit Bookmarks - &Lesezeichen bearbeiten - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - F3 - - - - Filter - - - - - Filter by string... - - - - - &File - &Datei - - - - &Help - &Hilfe - - - - &View - &Ansicht - - - - &Edit - &Bearbeiten - - - - &Bookmarks - &Lesezeichen - - - - &Go - &Gehe zu - - - - &Tool - &Werkzeuge - - - - PCManFM::Application - - - Name of configuration profile - Name des Konfigurationsprofils - - - - PROFILE - PROFIL - - - - Run PCManFM as a daemon - PCManFM als Daemon starten - - - - Quit PCManFM - PCManFM beenden - - - - Launch desktop manager - Verwaltung der Arbeitsfläche starten - - - - Turn off desktop manager if it's running - Verwaltung der Arbeitsfläche beenden, falls aktiv - - - - Open desktop preference dialog on the page with the specified name - Einstellungsdialog der Arbeitsfläche mit dem angegebenen Tab öffnen - - - - - NAME - NAME - - - - Open new window - Neues Fenster öffnen - - - - Open Find Files utility - Dateisuche öffnen - - - - Set desktop wallpaper from image FILE - Angegebene DATEI als Hintergrundbild einstellen - - - - FILE - DATEI - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Hintergrundbildmodus einstellen. MODUS=(color|stretch|fit|center|tile) - - - - MODE - MODUS - - - - Open Preferences dialog on the page with the specified name - Einstellungsdialog auf dem angegebenen Tab öffnen - - - - Files or directories to open - Zu öfnende Dateien oder Ordner - - - - [FILE1, FILE2,...] - [DATEI1, DATEI2, ...] - - - - - Error - Fehler - - - - Terminal emulator is not set. - Es ist kein Terminalemulator eingestellt. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Öffnen in Dateimanager - - - - Removable Disk - Entfernbares Medium - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Nur mit Hintergrundfarbe füllen - - - - Stretch to fill the entire screen - Auf Bildschirmgröße bringen - - - - Stretch to fit the screen - In Bildschirm einpassen - - - - Center on the screen - Zentriert - - - - Tile the image to fill the entire screen - Nebeneinander - - - - Image Files - Bilddateien - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - Symbole &fixieren - - - - Desktop Preferences - Schreibtischeinstellungen - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - Version: %1 - - - - &Move to Trash - In den &Papierkorb verschieben - - - - &Delete - &Löschen - - - - - Error - Fehler - - - - Switch user command is not set. - Befehl, um den Benutzer zu wechseln, ist nicht eingestellt. - - - - PCManFM::PreferencesDialog - - - Icon View - Symbolansicht - - - - Compact Icon View - Kleine Symbolansicht - - - - Thumbnail View - Miniaturansicht - - - - Detailed List View - Detaillierte Listenansicht - - - - PCManFM::TabPage - - - Error - Fehler - - - - Free space: %1 (Total: %2) - Freier Speicherplatz: %1 (Gesamt: %2) - - - - %n item(s) - - %n Objekt - %n Objekte - - - - - (%n hidden) - - (%n versteckt) - (%n versteckt) - - - - - %1 item(s) selected - %1 Objekte ausgewählt - - - - PCManFM::View - - - Open in New T&ab - Öffnen in neuem &Tab - - - - Open in New Win&dow - Öffnen in neuem &Fenster - - - - Open in Termina&l - Öffnen in &Terminal - - - - PreferencesDialog - - - Preferences - Einstellungen - - - - User Interface - Benutzeroberfläche - - - - Behavior - Verhalten - - - - - Thumbnail - Vorschaubild - - - - Volume - Datenträger - - - - Advanced - Erweitert - - - - Icons - Symbole - - - - Size of big icons: - Größe für große Symbole: - - - - Size of small icons: - Größe für kleine Symbole: - - - - Size of thumbnails: - Größe von Vorschaubildern: - - - - Size of side pane icons: - Größe der Symbole in der Seitenleiste: - - - - Icon theme: - Symbolthema: - - - - Window - Fenster - - - - Default width of new windows: - Breite für neue Fenster: - - - - Default height of new windows: - Höhe für neue Fenster: - - - - Always show the tab bar - Tableiste immer anzeigen - - - - Show 'Close' buttons on tabs - 'Schließen'-Knopf an Tabs zeigen - - - - Remember the size of the last closed window - Größe des zuletzt geschlossenen Fensters merken - - - - Browsing - Durchstöbern - - - - Open files with single click - Einfacher Klick zum Öffnen von Dateien - - - - Delay of auto-selection in single click mode (0 to disable) - Wartezeit für die automatische Auswahl im Einzelklickmodus (0 zum Abschalten) - - - - Default view mode: - Standardansicht: - - - - sec - sec - - - - File Operations - Handhabung von Dateien - - - - Confirm before deleting files - Löschen von Dateien bestätigen - - - - Move deleted files to "trash bin" instead of erasing from disk. - Gelöschte Dateien in den "Papierkorb" verschieben anstatt sie von der Festplatte zu löschen. - - - - Show thumbnails of files - Vorschaubilder von Dateien anzeigen - - - - Only show thumbnails for local files - Vorschaubilder nur für lokale Dateien anzeigen - - - - Display - Anzeige - - - - Bookmarks: - Lesezeichen: - - - - Open in current tab - Öffnen in aktuellem Tab - - - - Open in new tab - Öffnen in neuem Tab - - - - Open in new window - Öffnen in neuem Fenster - - - - Erase files on removable media instead of "trash can" creation - Dateien auf Wechseldatenträgern löschen anstatt sie in den Papierkorb zu verschieben - - - - Confirm before moving files into "trash can" - Bestätigung vor Verschieben in den Papierkorb - - - - Don't ask options on launch executable file - Beim Starten ausführbarer Dateien keine Optionen hierzu erfragen - - - - User interface - Benutzeroberfläche - - - - Treat backup files as hidden - Sicherungsdateien wie versteckte handhaben - - - - Always show full file names - Dateinamen immer vollständig anzeigen - - - - Show icons of hidden files shadowed - Icons versteckter Dateien schattiert anzeigen - - - - Show in places - Unter "Orte" anzeigen - - - - Home - Nutzerverzeichnis - - - - Desktop - Schreibtisch - - - - Trash can - Papierkorb - - - - Computer - Rechner - - - - Applications - Anwendungen - - - - Devices - Geräte - - - - Network - Netzwerk - - - - Do not generate thumbnails for image files exceeding this size: - Keine Vorschaubilder erzeugen für Dateien größer als: - - - - KB - KB - - - - Auto Mount - Automatisches Einbinden - - - - Mount mountable volumes automatically on program startup - Datenträger bei Programmstart automatisch einhängen - - - - Mount removable media automatically when they are inserted - Wechseldatenträger automatisch beim Einlegen einbinden - - - - Show available options for removable media when they are inserted - Verfügbare Optionen für Wechseldatenträger beim Einlegen anzeigen - - - - When removable medium unmounted: - Wenn Wechseldatenträger entfernt werden: - - - - Close &tab containing removable medium - Den Rei&ter des Wechseldatenträgers schließen - - - - Chan&ge folder in the tab to home folder - Im Tab des Wechsledatenträgers das Nutze&rverzeichnis anzeigen - - - - Switch &user command: - Befehl zum N&utzerwechsel: - - - - Archiver in&tegration: - Archivverwal&tung: - - - - Templates - Vorlagen - - - - Show only user defined templates in menu - Ausschließlich benutzerdefinierte im Menü anzeigen - - - - Show only one template for each MIME type - Nur eine Vorlage pro MIME-Typ anzeigen - - - - Run default application after creation from template - Aus Vorlagen erstellte Dokumente in Standardanwendung öffnen - - - Close tab containing removable medium - Schließe Tab mit Wechseldatenträger - - - Change folder in the tab to home folder - Ändere Ordner im Tab zum Persönlichen Ordner - - - - Programs - Programme - - - - Terminal emulator: - Terminalemulator: - - - Switch user command: - Befehl für Benutzerwechsel: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Beispiele:"xterm -e %s" für Terminal oder "gksu %s" für Benutzerwechsel. -%s = das Kommando, welches in einem Terminal oder als Root ausgeführt werden soll. - - - Archiver integration: - Archivmanagerintegration: - - - - Use SI decimal prefixes instead of IEC binary prefixes - SI-Dezimalpräfixe anstatt IEC-Binärpräfixe verwenden - - - diff --git a/pcmanfm/translations/pcmanfm-qt_el.ts b/pcmanfm/translations/pcmanfm-qt_el.ts deleted file mode 100644 index 0929683..0000000 --- a/pcmanfm/translations/pcmanfm-qt_el.ts +++ /dev/null @@ -1,1456 +0,0 @@ - - - - - AboutDialog - - - About - Σχετικά - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Ελαφρύς διαχειριστής αρχείων - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Προγραμματισμός: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - Συγγραφείς - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Διαχειριστής αρχείων PCMan - -Πνευματικά δικαιώματα (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -Αυτό το πρόγραμμα είναι ένα ελεύθερο λογισμικό· επιτρέπεται -η αναδιανομή ή/και η τροποποίησή του υπό τους όρους της άδειας -GNU Γενική Άδεια Χρήσης όπως έχουν δημοσιευθεί από το -«Free Software Foundation», είτε την έκδοση 2 αυτής της άδειας -ή (σύμφωνα με την επιλογή σας) οποιαδήποτε μεταγενέστερη έκδοση. - -Αυτό το πρόγραμμα διανέμεται με την ελπίδα πως θα είναι χρήσιμο, -αλλά ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ, χωρίς ακόμη και την υπονοούμενη εγγύηση -ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. -Δείτε την GNU Γενική Άδεια Χρήσης για περισσότερες λεπτομέρειες. - -Θα πρέπει να έχετε παραλάβει ένα αντίγραφο της GNU Γενικής Άδειας Χρήσης -μαζί με αυτό το πρόγραμμα. Αν όχι, γράψτε στο Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, -USA. - - - - License - Άδεια χρήσης - - - - AutoRunDialog - - - Removable medium is inserted - Εισήχθη ένα αφαιρούμενο μέσο - - - - <b>Removable medium is inserted</b> - <b>Εισήχθη ένα αφαιρούμενο μέσο</b> - - - - Type of medium: - Τύπος του μέσου: - - - - Detecting... - Εντοπισμός... - - - - Please select the action you want to perform: - Παρακαλώ επιλέξτε την ενέργεια που επιθυμείτε να πραγματοποιήσετε: - - - - DesktopFolder - - - Form - - - - - Desktop - Επιφάνεια εργασίας - - - - Desktop folder: - Φάκελος επιφάνειας εργασίας: - - - - Image file - Αρχείο εικόνας - - - - Folder path - Διαδρομή του φακέλου - - - - &Browse - &Περιήγηση - - - - DesktopPreferencesDialog - - - Desktop Preferences - Προτιμήσεις της επιφάνειας εργασίας - - - - Background - Παρασκήνιο - - - - Wallpaper mode: - Λειτουργία ταπετσαρίας: - - - - Wallpaper image file: - Αρχείο εικόνας ταπετσαρίας: - - - - Select background color: - Επιλέξτε το χρώμα του παρασκηνίου: - - - - Image file - Αρχείο εικόνας - - - - Image file path - Διαδρομή αρχείου εικόνας - - - - &Browse - &Περιήγηση - - - - Label Text - Ετικέτα κειμένου - - - - Select text color: - Επιλέξτε το χρώμα του κειμένου: - - - - Select shadow color: - Επιλέξτε το χρώμα της σκιάς: - - - - Select font: - Επιλέξτε τη γραμματοσειρά: - - - - General - Γενικά - - - - Window Manager - Διαχειριστής παραθύρων - - - - Show menus provided by window managers when desktop is clicked - Εμφάνιση των μενού των διαχειριστών παραθύρων με κλικ στην επιφάνεια εργασίας - - - Desktop - Επιφάνεια εργασίας - - - Desktop folder: - Φάκελος επιφάνειας εργασίας: - - - Folder path - Διαδρομή του φακέλου - - - - Advanced - Προηγμένο - - - - FindFilesDialog - - Find Files - Αναζήτηση αρχείων - - - Name/Location - Όνομα/Τοποθεσία - - - File name patterns - Σχηματομορφές ονομάτων αρχείων - - - Pattern: - Σχηματομορφή: - - - Case insensitive - Δίχως διάκριση πεζών/κεφαλαίων - - - Use regular expression - Χρήση κανονικής έκφρασης - - - Places to search - Τοποθεσίες προς αναζήτηση - - - Add - Προσθήκη - - - Remove - Αφαίρεση - - - Search in sub directories - Αναζήτηση σε υποφακέλους - - - Search hidden files - Αναζήτηση κρυφών αρχείων - - - File Type - Τύπος αρχείου - - - Only search for files of following types: - Αναζήτηση αρχείων μόνο για τους ακόλουθους τύπους: - - - Text files - Αρχεία κειμένου - - - Image files - Αρχεία εικόνων - - - Audio files - Αρχεία ήχου - - - Video files - Αρχεία βίντεο - - - Documents - Έγγραφα - - - Content - Περιεχόμενο - - - File contains - Αρχεία που περιέχουν - - - Properties - Ιδιότητες - - - File Size - Μέγεθος αρχείων - - - Bigger than: - Μεγαλύτερο από: - - - Smaller than: - Μικρότερο από: - - - Last Modified Time - Χρόνος της τελευταίας τροποποίησης - - - Earlier than: - Προγενέστερα από: - - - Later than: - Αργότερα από: - - - - MainWindow - - - File Manager - Διαχειριστής αρχείων - - - - Go &Up - Μετάβαση &πάνω - - - - Go Up - Μετάβαση πάνω - - - - Alt+Up - Alt+Πάνω - - - Home - Προσωπικός φάκελος - - - - &Home - - - - - Alt+Home - Alt+Home - - - - &Reload - &Επαναφόρτωση - - - - F5 - F5 - - - - Go - Μετάβαση - - - - Quit - Έξοδος - - - - &About - &Σχετικά - - - - &New Window - &Νέο παράθυρο - - - - New Window - Νέο παράθυρο - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Εμφάνιση των &κρυφών - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Υπολογιστής - - - - &Trash - &Απορρίμματα - - - - &Network - &Δίκτυο - - - - &Desktop - &Επιφάνεια εργασίας - - - - &Add to Bookmarks - &Προσθήκη στους σελιδοδείκτες - - - - &Applications - Ε&φαρμογές - - - - Reload - Επαναφόρτωση - - - - &Icon View - &Εικονιδία - - - - &Compact View - &Συμπαγής - - - - &Detailed List - &Λεπτομερής λίστα - - - - &Thumbnail View - &Εικόνες επισκόπησης - - - - Cu&t - Α&ποκοπή - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Αντιγραφή - - - - Ctrl+C - Ctrl+C - - - - &Paste - Επι&κόλληση - - - - Ctrl+V - Ctrl+V - - - - Select &All - Επιλογή ό&λων - - - - Ctrl+A - Ctrl+A - - - - Pr&eferences - &Προτιμήσεις - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - &Folder - - - - - &Blank File - - - - Ascending - Αύξουσα - - - Descending - Φθίνουσα - - - By File Name - Ανά όνομα αρχείου - - - By Modification Time - Ανά χρόνο τροποποίησης - - - By File Type - Ανά τύπο αρχείου - - - By Owner - Ανά ιδιοκτήτη - - - Folder First - Πρώτα οι φάκελοι - - - - New &Tab - Νέα &καρτέλα - - - - New Tab - Νέα καρτέλα - - - - Ctrl+T - Ctrl+T - - - - Go &Back - Μετάβαση &πίσω - - - - Go Back - Μετάβαση πίσω - - - - Alt+Left - Alt+Αριστερά - - - - Go &Forward - Μετάβαση &εμπρός - - - - Go Forward - Μετάβαση εμπρός - - - - Alt+Right - Alt+Δεξιά - - - - &Invert Selection - Αντιστρο&φή επιλογής - - - - &Delete - &Διαγραφή - - - - Del - Del - - - - &Rename - &Μετονομασία - - - - F2 - F2 - - - - C&lose Tab - Κλείσιμο καρ&τέλας - - - - Ctrl+W - Ctrl+W - - - - File &Properties - Αρχεία και ι&διότητες - - - - Alt+Return - Alt+Return - - - - &Folder Properties - Ιδιότητες &φακέλου - - - Case Sensitive - Διάκριση πεζών/κεφαλαίων - - - By File Size - Ανά μέγεθος αρχείου - - - Close Window - Κλείσιμο παραθύρου - - - - Edit Bookmarks - Επεξεργασία σελιδοδεικτών - - - - Open &Terminal - Άνοιγμα του &τερματικού - - - - F4 - F4 - - - - Open as &Root - Άνοιγμα ως δια&χειριστής - - - - &Edit Bookmarks - Επε&ξεργασία σελιδοδεικτών - - - Folder - Φάκελος - - - - Ctrl+Shift+N - Ctrl+Shift+N - - - Blank File - Κενό αρχείο - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - &Find Files - - - - - F3 - F3 - - - - Filter - - - - - Filter by string... - - - - - &File - &Αρχείο - - - - C&reate New - &Δημιουργία νέου - - - - &Help - &Βοήθεια - - - - &View - &Προβολή - - - - &Sorting - &Ταξινόμηση - - - - &Edit - &Επεξεργασία - - - - &Bookmarks - &Σελιδοδείκτες - - - - &Go - &Μετάβαση - - - - &Tool - &Εργαλεία - - - - Main Toolbar - Κύρια γραμμή εργαλείων - - - - PCManFM::Application - - - Name of configuration profile - Όνομα διαμόρφωσης του προφίλ - - - - PROFILE - ΠΡΟΦΙΛ - - - - Run PCManFM as a daemon - Εκτέλεση του PCManFM ως δαίμονα - - - - Quit PCManFM - Έξοδος του PCManFM - - - - Launch desktop manager - Εκτέλεση διαχειριστή της επιφάνειας εργασίας - - - - Turn off desktop manager if it's running - Τερματισμός του διαχειριστή της επιφάνειας εργασίας αν εκτελείται - - - - Open desktop preference dialog on the page with the specified name - Άνοιγμα του διαλόγου προτιμήσεων της επιφάνειας εργασίας στη σελίδα με το καθορισμένο όνομα - - - - - NAME - ΟΝΟΜΑ - - - - Open new window - Άνοιγμα νέου παραθύρου - - - - Open Find Files utility - Άνοιγμα του εργαλείου αναζήτησης αρχείων - - - - Set desktop wallpaper from image FILE - Ορισμός της ταπετσαρίας της επιφάνειας εργασίας από ΑΡΧΕΙΟ εικόνας - - - - FILE - ΑΡΧΕΙΟ - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Ορισμός της λειτουργίας της επιφάνειας ΛΕΙΤΟΥΡΓΙΑ=(color|stretch|fit|center|tile) - - - - MODE - ΛΕΙΤΟΥΡΓΙΑ - - - - Open Preferences dialog on the page with the specified name - Άνοιγμα του διαλόγου προτιμήσεων στη σελίδα με το καθορισμένο όνομα - - - - Files or directories to open - Αρχεία ή κατάλογοι προς άνοιγμα - - - - [FILE1, FILE2,...] - [ΑΡΧΕΙΟ1, ΑΡΧΕΙΟ2,...] - - - - - Error - Σφάλμα - - - - Terminal emulator is not set. - Δεν έχει οριστεί ο προσομοιωτής τερματικού. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Άνοιγμα στο διαχειριστή αρχείων - - - - Removable Disk - Αφαιρούμενος δίσκος - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Γέμισμα μόνο με το χρώμα του παρασκηνίου - - - - Stretch to fill the entire screen - Τέντωμα γι πλήρωση ολόκληρης της οθόνης - - - - Stretch to fit the screen - Τέντωμα για πλήρωση της οθόνης - - - - Center on the screen - Στο κέντρο της οθόνης - - - - Tile the image to fill the entire screen - Παράθεση της εικόνας για πλήρωση ολόκληρης της οθόνης - - - - Image Files - Αρχεία εικόνων - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - &Παραμονή στην τρέχουσα θέση - - - - Desktop Preferences - Ιδιότητες της επιφάνειας εργασίας - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - Έκδοση: %1 - - - - &Move to Trash - &Μετακίνηση στα απορρίμματα - - - - &Delete - &Διαγραφή - - - - - Error - Σφάλμα - - - - Switch user command is not set. - Η εντολή εναλλαγής του χρήστη δεν έχει οριστεί. - - - - PCManFM::PreferencesDialog - - - Icon View - Προβολή εικονιδίων - - - - Compact Icon View - Συμπαγής προβολή εικονιδίων - - - - Thumbnail View - Προβολή εικόνων επισκόπησης - - - - Detailed List View - Αναλυτική προβολή λίστας - - - - PCManFM::TabPage - - - Error - Σφάλμα - - - - Free space: %1 (Total: %2) - Ελεύθερος χώρος: %1 (Σύνολο: %2) - - - - %n item(s) - - %n αντικείμενο(α) - %n αντικείμενο(α) - - - - - (%n hidden) - - (%n κρυφό(ά)) - (%n κρυφό(ά)) - - - - - %1 item(s) selected - Επιλέχτηκε %1 αντικείμενο(α) - - - - PCManFM::View - - - Open in New T&ab - Άνοιγμα σε νέα &καρτέλα - - - - Open in New Win&dow - Άνοιγμα σε νέο &παράθυρο - - - - Open in Termina&l - Άνοιγμα στο &τερματικό - - - - PreferencesDialog - - - Preferences - Προτιμήσεις - - - - User Interface - Περιβάλλον χρήστη - - - - Behavior - Συμπεριφορά - - - - - Thumbnail - Εικόνες επισκόπησης - - - - Volume - Χώροι αποθήκευσης - - - - Advanced - Προηγμένα - - - - Icons - Εικονίδια - - - - Size of big icons: - Το μέγεθος των μεγάλων εικονιδίων: - - - - Size of small icons: - Το μέγεθος των μικρών εικονιδίων: - - - - Size of thumbnails: - Το μέγεθος των εικόνων επισκόπησης: - - - - Size of side pane icons: - Το μέγεθος των εικονιδίων του πλευρικού πίνακα: - - - - Icon theme: - Θέματα εικονιδίων: - - - - Window - Παράθυρο - - - - Always show the tab bar - Να εμφανίζεται πάντα η γραμμή καρτελών - - - - Show 'Close' buttons on tabs - Εμφάνιση του κουμπιού κλεισίματος στις καρτέλες - - - - Remember the size of the last closed window - Απομνημόνευση του μεγέθους του τελευταία κλεισμένου παραθύρου - - - - Default width of new windows: - Πλάτος εξ ορισμού των νέων παραθύρων: - - - - Default height of new windows: - Ύψος εξ ορισμού των νέων παραθύρων: - - - - Browsing - Εξερεύνηση - - - - Open files with single click - Άνοιγμα των αρχείων με μονό κλικ - - - - Delay of auto-selection in single click mode (0 to disable) - Καθυστέρηση της αυτόματης επιλογής στη λειτουργία μονού κλικ (0 για απενεργοποίηση) - - - - Default view mode: - Λειτουργία προβολής εξ ορισμού: - - - - sec - δευτ - - - - File Operations - Λειτουργίες αρχείων - - - - Confirm before deleting files - Επιβεβαίωση πριν τη διαγραφή των αρχείων - - - - Move deleted files to "trash bin" instead of erasing from disk. - Μετακίνηση των διαγραμμένων αρχείων στον κάδο των απορριμμάτων αντί τη διαγραφή τους από το δίσκο. - - - - Show thumbnails of files - Εμφάνιση εικόνων επισκόπησης των αρχείων - - - - Only show thumbnails for local files - Εμφάνιση των εικόνων επισκόπησης μόνο για τα τοπικά αρχεία - - - - Display - Εμφάνιση - - - - Bookmarks: - Σελιδοδείκτες: - - - - Open in current tab - Άνοιγμα στην τρέχουσα καρτέλα - - - - Open in new tab - Άνοιγμα σε νέα καρτέλα - - - - Open in new window - Άνοιγμα σε νέο παράθυρο - - - - Erase files on removable media instead of "trash can" creation - Διαγραφή των αρχείων των αφαιρούμενων συσκευών αντί για τη δημιουργία ενός κάδου απορριμμάτων - - - - Confirm before moving files into "trash can" - Επιβεβαίωση πριν την μετακίνηση των αρχείων στον κάδο απορριμμάτων - - - - Don't ask options on launch executable file - Να μην ερωτώνται ενέργειες κατά το άνοιγμα ενός εκτελέσιμου αρχείου - - - - User interface - Περιβάλλον χρήστη - - - - Treat backup files as hidden - Διαχείριση των αρχείων αντιγράφων ασφαλείας ως κρυφά - - - - Always show full file names - Να εμφανίζονται πάντα τα πλήρη ονόματα των αρχείων - - - - Show icons of hidden files shadowed - Εμφάνιση των εικονιδίων των κρυφών αρχείων σε σκίαση - - - - Show in places - Εμφάνιση στις τοποθεσίες - - - - Home - Προσωπικός φάκελος - - - - Desktop - Επιφάνεια εργασίας - - - - Trash can - Απορρίμματα - - - - Computer - Υπολογιστής - - - - Applications - Εφαρμογές - - - - Devices - Συσκευές - - - - Network - Δίκτυο - - - - Do not generate thumbnails for image files exceeding this size: - Να μην δημιουργούνται εικόνες επισκόπησης για αρχεία εικόνων που υπερβαίνουν αυτό το το μέγεθος: - - - - KB - KB - - - - Auto Mount - Αυτόματη προσάρτηση - - - - Mount mountable volumes automatically on program startup - Αυτόματη προσάρτηση των διαθέσιμων χώρων αποθήκευσης κατά την έναρξη του προγράμματος - - - - Mount removable media automatically when they are inserted - Αυτόματη προσάρτηση των αφαιρούμενων μέσων κατά την εισαγωγή τους - - - - Show available options for removable media when they are inserted - Εμφάνιση των διαθέσιμων επιλογών των αφαιρούμενων μέσων κατά την εισαγωγή τους - - - - When removable medium unmounted: - Κατά την αποπροσάρτηση ενός αφαιρουμένου μέσου: - - - - Close &tab containing removable medium - Κλείσιμο της καρ&τέλας που περιέχει το αφαιρούμενο μέσο - - - - Chan&ge folder in the tab to home folder - Α&λλαγή του φακέλου της καρτέλα στον προσωπικό κατάλογο - - - - Programs - Προγράμματα - - - - Terminal emulator: - Προσομοιωτής τερματικού: - - - - Switch &user command: - Εντολή εναλλαγής &χρήστη: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Παραδείγματα: "xterm -e %s" για το τερματικό ή "gksu %s" για την αλλαγή χρήστη. -%s = η γραμμή εντολών που θέλετε να εκτελέσετε μέσω του τερματικού ή της su. - - - - Archiver in&tegration: - Ενσωμάτωση αρ&χειοθέτησης: - - - - Templates - Πρότυπα - - - - Show only user defined templates in menu - Εμφάνιση στο μενού μόνο των πρότυπων που έχουν καθοριστεί από τον χρήστη - - - - Show only one template for each MIME type - Εμφάνιση μόνο ενός πρότυπου για έκαστον τύπο MIME - - - - Run default application after creation from template - Εκτέλεση της εξ ορισμού εφαρμογής μετά τη δημιουργία από το πρότυπο - - - - Use SI decimal prefixes instead of IEC binary prefixes - Χρήση προθεμάτων δεκαδικών SI αντί για δυαδικά προθέματα IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_es.ts b/pcmanfm/translations/pcmanfm-qt_es.ts deleted file mode 100644 index 60f3f26..0000000 --- a/pcmanfm/translations/pcmanfm-qt_es.ts +++ /dev/null @@ -1,1450 +0,0 @@ - - - - - AboutDialog - - - About - Acerca de - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Administrador de archivos liviano - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Authors - Autores - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programado por: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - License - Licencia - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Administrador de archivos PCManFM - -Copyright (C) 2009-2014 洪 任 諭 (Hong Jen Yee) - -Este programa es software libre; puede redistribuirlo y / o -modificarlo bajo los términos de la Licencia Pública General GNU -publicada por la Fundación para el Software Libre; ya sea la versión 2 -de la Licencia, o (a su elección) cualquier versión posterior. - -Este programa se distribuye con la esperanza de que sea útil, -pero SIN NINGUNA GARANTÍA; ni siquiera la garantía implícita de -COMERCIALIZACIÓN o IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Vea la -Licencia Pública General GNU para más detalles. - -Debería haber recibido una copia de la Licencia Pública General GNU -junto con este programa; si no, escriba a la Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - AutoRunDialog - - - Removable medium is inserted - Disco removible insertado - - - - <b>Removable medium is inserted</b> - <b>Disco removible insertado</b> - - - - Type of medium: - Tipo de disco: - - - - Detecting... - Detectando... - - - - Please select the action you want to perform: - Seleccione la acción que desea ejecutar: - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - Archivo de imagen - - - - Folder path - - - - - &Browse - E&xaminar - - - - DesktopPreferencesDialog - - - Desktop Preferences - Preferencias de Escritorio - - - - General - General - - - - Background - Fondo - - - - Wallpaper mode: - Modo de papel tapiz: - - - - Wallpaper image file: - Imagen de papel tapiz: - - - - Select background color: - Seleccione color de fondo: - - - - Image file - Archivo de imagen - - - - Image file path - Ruta de archivo de imagen - - - - &Browse - E&xaminar - - - - Label Text - Texto de etiquetas - - - - Select text color: - Seleccione color de texto: - - - - Select shadow color: - Seleccione color de sombra: - - - - Select font: - Seleccione el tipo de letra: - - - - Window Manager - - - - - Advanced - Avanzado - - - - Show menus provided by window managers when desktop is clicked - Mostrar menús de los administradores de ventanas cuando se hace click sobre el escritorio - - - - FindFilesDialog - - Find Files - Buscar archivos - - - Name/Location - Nombre/Posición - - - File name patterns - Patrones de nombre de archivos - - - Pattern: - Patrón: - - - Case insensitive - No coincidir mayúsculas - - - Use regular expression - Usar expresión regular - - - Places to search - Lugares donde buscar - - - Add - Agregar - - - Remove - Eliminar - - - Search in sub directories - Buscar en sub directorios - - - Search hidden files - Buscar archivos ocultos - - - File Type - Tipo de Archivo - - - Only search for files of following types: - Solo buscar archivos de los siguientes tipos: - - - Text files - Archivos de texto - - - Image files - Archivos de imágenes - - - Audio files - Archivos de audio - - - Video files - Archivos de video - - - Documents - Documentos - - - Content - Contenido - - - File contains - Contenidos del archivo - - - Properties - Propiedades - - - File Size - Tamaño del Archivo - - - Bigger than: - Mayor a: - - - Smaller than: - Menor a: - - - Last Modified Time - Fecha de Modificación - - - Earlier than: - Antes de: - - - Later than: - Después de: - - - - MainWindow - - - File Manager - Administrador de archivos - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - &Find Files - - - - - F3 - F3 - - - - Filter - - - - - Filter by string... - - - - - &File - &Archivo - - - - C&reate New - - - - - &Help - Ay&uda - - - - &View - &Ver - - - - &Sorting - &Ordenar - - - - &Edit - &Editar - - - - &Bookmarks - &Marcadores - - - - &Go - &Ir - - - - &Tool - &Herramientas - - - - Main Toolbar - Barra de Herramientas Principal - - - - Go &Up - S&ubir - - - - Go Up - Subir - - - - Alt+Up - Alt+Arriba - - - Home - Carpeta personal - - - - &Home - - - - - Alt+Home - Alt+Inicio - - - - &Reload - &Recargar - - - - F5 - F5 - - - - Go - Ir - - - - Quit - Salir - - - - &About - &Acerca de - - - - &New Window - &Nueva ventana - - - - New Window - Nueva ventana - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Mo&strar ocultos - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Sistema - - - - &Trash - &Papelera - - - - &Network - &Red - - - - &Desktop - &Escritorio - - - - &Add to Bookmarks - &Agregar a marcadores - - - - &Applications - &Aplicaciones - - - - Reload - Recargar - - - - &Icon View - V&ista de Íconos - - - - &Compact View - Vista &Compacta - - - - &Detailed List - Lista &Detallada - - - - &Thumbnail View - Vista de &Miniaturas - - - - Cu&t - Cor&tar - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Copiar - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Pegar - - - - Ctrl+V - Ctrl+V - - - - Select &All - Seleccion&ar Todo - - - - Ctrl+A - Ctrl+A - - - - Pr&eferences - Pr&eferencias - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - &Folder - - - - - &Blank File - - - - Ascending - Ascendente - - - Descending - Descendente - - - By File Name - Por Nombre de Archivo - - - By Modification Time - Por Fecha de Modificación - - - By File Type - Por Tipo de Archivo - - - By Owner - Por Dueño - - - Folder First - Carpetas Primero - - - - New &Tab - Nueva &Pestaña - - - - New Tab - Nueva Pestaña - - - - Ctrl+T - Ctrl+T - - - - Go &Back - Re&troceder - - - - Go Back - Retroceder - - - - Alt+Left - Alt+Izquierda - - - - Go &Forward - A&vanzar - - - - Go Forward - Avanzar - - - - Alt+Right - Alt+Derecha - - - - &Invert Selection - &Invertir Selección - - - - &Delete - &Eliminar - - - - Del - Supr - - - - &Rename - Cambia&r Nombre - - - - F2 - F2 - - - - C&lose Tab - &Cerrar Pestaña - - - - Ctrl+W - Ctrl+W - - - - File &Properties - Propiedades de &Archivo - - - - Alt+Return - Alt+Enter - - - - &Folder Properties - &Propiedades de &Carpeta - - - Case Sensitive - Coincidir Mayúsculas - - - By File Size - Por Tamaño de Archivo - - - Close Window - Cerrar Ventana - - - - Edit Bookmarks - Editar Marcadores - - - - Open &Terminal - Abrir &terminal - - - - F4 - F4 - - - - Open as &Root - Abrir como &root - - - - &Edit Bookmarks - &Editar Marcadores - - - - PCManFM::Application - - - Name of configuration profile - Nombre del perfil ce configuración - - - - PROFILE - PERFIL - - - - Run PCManFM as a daemon - Ejecutar PCManFM como un servicio - - - - Quit PCManFM - Cerrar PCManFM - - - - Launch desktop manager - Abrir administrador de escritorio - - - - Turn off desktop manager if it's running - Cerrar administrador de escritorio si está en ejecución - - - - Open desktop preference dialog on the page with the specified name - Abrir diálogo de preferencias de escritorio en la página especificada - - - - - NAME - NOMBRE - - - - Open new window - Abrir nueva ventana - - - - Open Find Files utility - Abrir búsqueda de archivos - - - - Set desktop wallpaper from image FILE - Configurar papel tapiz desde un archivo - - - - FILE - ARCHIVO - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Definir modo de papel tapiz. MODO =(color|stretch|fit|center|tile) - - - - MODE - MODO - - - - Open Preferences dialog on the page with the specified name - Abrir diálogo de preferencias en la página especificada - - - - Files or directories to open - Archivos o directorios a abrir - - - - [FILE1, FILE2,...] - [Archivo 1, Archivo 2,...] - - - - - Error - Error - - - - Terminal emulator is not set. - El emulador de terminal no está configurado. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Abrir en administrador de archivos - - - - Removable Disk - Disco Removible - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Llenar solamente con el color de fondo - - - - Stretch to fill the entire screen - Estirar para llenar la pantalla - - - - Stretch to fit the screen - Estirar para ajustar a la pantalla - - - - Center on the screen - Centrar en la pantalla - - - - Tile the image to fill the entire screen - Repetir la imagen hasta llenar la pantalla - - - - Image Files - Archivos de Imagen - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - &Pegar en la posición actual - - - - Desktop Preferences - Preferencias de Escritorio - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - Versión: %1 - - - - &Move to Trash - &Mover a la Papelera - - - - &Delete - &Eliminar - - - - - Error - Error - - - - Switch user command is not set. - El comando para cambiar de usuario no está definido. - - - - PCManFM::PreferencesDialog - - - Icon View - Vista de Íconos - - - - Compact Icon View - Vista Compacta de Íconos - - - - Thumbnail View - Vista de Miniaturas - - - - Detailed List View - Lista Detallada - - - - PCManFM::TabPage - - - Error - Error - - - - Free space: %1 (Total: %2) - Espacio libre: %1 (Total %2) - - - - %n item(s) - - %n elemento - %n elementos - - - - - (%n hidden) - - (%n oculto) - (%n ocultos) - - - - - %1 item(s) selected - %1 elemento(s) seleccionado(s) - - - - PCManFM::View - - - Open in New T&ab - &Abrir en Nueva Pestaña - - - - Open in New Win&dow - Abrir en Nueva &Ventana - - - - Open in Termina&l - Abrir en Termina&l - - - - PreferencesDialog - - - Preferences - Preferencias - - - - User Interface - Interfaz de Usuario - - - - Behavior - Comportamiento - - - - - Thumbnail - Miniaturas - - - - Volume - Volumen - - - - Advanced - Avanzado - - - - Icons - Íconos - - - - Size of big icons: - Tamaño de íconos grandes: - - - - Size of small icons: - Tamaño de íconos pequeños: - - - - Size of thumbnails: - Tamaño de miniaturas: - - - - Size of side pane icons: - Tamaño de íconos del panel lateral: - - - - Icon theme: - Tema de íconos: - - - - Window - Ventana - - - - Always show the tab bar - Mostrar siempre la barra de pestañas - - - - Show 'Close' buttons on tabs - Mostrar botones de cerrar en las pestañas - - - - Remember the size of the last closed window - Recordar el tamaño de la última ventana cerrada - - - - Default width of new windows: - Ancho para nuevas ventanas: - - - - Default height of new windows: - Altura para nuevas ventanas: - - - - Browsing - Navegación - - - - Open files with single click - Abrir archivos con un solo click - - - - Delay of auto-selection in single click mode (0 to disable) - Demora de selección automática en modo de un click (0 para deshabilitar) - - - - Default view mode: - Modo de visualización por defecto: - - - - sec - seg - - - - File Operations - Operaciones de Archivos - - - - Confirm before deleting files - Confirmar antes de borrar - - - - Move deleted files to "trash bin" instead of erasing from disk. - Mover archivos a la papelera en lugar de eliminarlos del disco. - - - - Show thumbnails of files - Mostrar miniaturas de archivos - - - - Only show thumbnails for local files - Solo mostrar miniaturas para archivos locales - - - - Display - - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - Carpeta personal - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Do not generate thumbnails for image files exceeding this size: - No generar miniaturas para archivos de imágenes mayores a: - - - - KB - KB - - - - Auto Mount - Montar Automáticamente - - - - Mount mountable volumes automatically on program startup - Montar discos removibles automáticamente al inicio - - - - Mount removable media automatically when they are inserted - Montar discos removibles automáticamente cuando se insertan - - - - Show available options for removable media when they are inserted - Mostrar opciones disponibles para los discos removibles al insertarlos - - - - When removable medium unmounted: - Cuando se desconecta un disco removible: - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - Close tab containing removable medium - Cerrar la pestaña que contiene al disco removible - - - Change folder in the tab to home folder - Cambiar el directorio en la pestaña a la carpeta personal - - - - Programs - Programas - - - - Terminal emulator: - Emulador de terminal: - - - Switch user command: - Comando para cambiar de usuario: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Ejemplos: "xterm -e %s" para terminal o "gksu %s" para cambiar de usuario. -%s = la línea de comandos a ejecutar en la terminal o como otro usuario. - - - Archiver integration: - Integración con programas de archivo: - - - - Use SI decimal prefixes instead of IEC binary prefixes - Usar prefijos decimales SI en lugar de prefijos binarios IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_fr.ts b/pcmanfm/translations/pcmanfm-qt_fr.ts deleted file mode 100644 index f8070fc..0000000 --- a/pcmanfm/translations/pcmanfm-qt_fr.ts +++ /dev/null @@ -1,1359 +0,0 @@ - - - - - AboutDialog - - - About - À propos - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Gestionnaire de fichiers léger - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Gestionnaire de fichiers de PCMan - -Copyright © 2009 - 2015 洪任諭 (Hong Jen Yee) - -Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le modifier suivant les termes de la “GNU General Public License” telle que publiée par la Free Software Foundation, soit en version 2, soit (à votre gré) toute version ultérieure. - -Ce programme est distribué dans l'espoir qu'il vous sera utile, mais SANS AUCUNE GARANTIE ; sans même la garantie implicite de COMMERCIALISABILITÉ, ni d’ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez la Licence Générale Publique GNU pour plus de détails. - -Vous devriez avoir reçu une copie de la licence publique générale GNU avec ce programme ; si ce n'est pas le cas, écrivez à la fondation pour le logiciel libre à l'adresse ci-dessous : -Free Software Foundation, Inc.n 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301, USA. - - - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programmation : -Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - Auteurs - - - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Gestionnaire de fichiers de PCMan - -Copyright © 2009 - 2015 洪任諭 (Hong Jen Yee) - -Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le modifier suivant les termes de la “GNU General Public License” telle que publiée par la Free Software Foundation, soit en version 2, soit (à votre gré) toute version ultérieure. - -Ce programme est distribué dans l'espoir qu'il vous sera utile, mais SANS AUCUNE GARANTIE ; sans même la garantie implicite de COMMERCIALISABILITÉ, ni d’ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez la Licence Générale Publique GNU pour plus de détails. - -Vous devriez avoir reçu une copie de la licence publique générale GNU avec ce programme ; si ce n'est pas le cas, écrivez à la fondation pour le logiciel libre à l'adresse ci-dessous : -Free Software Foundation, Inc.n 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301, USA. - - - - License - Licence - - - - AutoRunDialog - - - Removable medium is inserted - Un média amovible a été inséré - - - - <b>Removable medium is inserted</b> - <b>Un média amovible a été inséré</b> - - - - Type of medium: - Type de média : - - - - Detecting... - Détection en cours… - - - - Please select the action you want to perform: - Veuillez sélectionner l'action que vous voulez effectuer : - - - - DesktopFolder - - - Form - Formulaire - - - - Desktop - - - - - Desktop folder: - - - - - Image file - Fichier image - - - - Folder path - - - - - &Browse - &Parcourir - - - - DesktopPreferencesDialog - - - Desktop Preferences - Préférences du bureau - - - - Background - Arrière-plan - - - - Wallpaper mode: - Mode du fond d'écran : - - - - Wallpaper image file: - Fichier image du fond d'écran : - - - - Select background color: - Sélectionnez la couleur d'arrière-plan : - - - - Image file - Fichier image - - - - Image file path - Chemin du fichier image - - - - &Browse - &Parcourir - - - - Label Text - Texte de l'étiquette - - - - Select text color: - Sélectionnez la couleur du texte : - - - - Select shadow color: - Sélectionnez la couleur de l'ombre : - - - - Select font: - Sélectionnez la police : - - - - General - Général - - - - Window Manager - Gestionnaire de fenêtre - - - - Show menus provided by window managers when desktop is clicked - Afficher les menus fournis par les gestionnaires de fenêtres lorsqu'on clique sur le bureau - - - - Advanced - Avancé - - - - MainWindow - - - File Manager - Gestionnaire de fichiers - - - - Go Up - Monter - - - - Alt+Up - Alt+Haut - - - Home - Page d'accueil - - - - Alt+Home - Alt+Début / Origine - - - - Reload - Recharger - - - - F5 - F5 - - - - &Home - - - - - &Reload - &Recharger - - - - Go - Aller à - - - - Quit - Quitter - - - - &About - &À propos - - - - New Window - Nouvelle fenêtre - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Afficher les éléments cac&hés - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Ordinateur - - - - &Trash - &Corbeille - - - - &Network - &Réseau - - - - &Desktop - &Bureau - - - - &Add to Bookmarks - &Ajouter aux signets - - - - &Applications - &Applications - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Copier - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Coller - - - - Ctrl+V - Ctrl+V - - - - Select &All - Tout sélect&ionner - - - - Pr&eferences - Préfér&ences - - - - &Ascending - &Croissant - - - - &Descending - &Décroissant - - - - &By File Name - &Par nom de fichier - - - - By &Modification Time - Par date de &modification - - - - By File &Type - Par &type de fichier - - - - By &Owner - Par &Propriétaire - - - - &Folder First - &Dossiers d'abord - - - - &Invert Selection - &Inverser la sélection - - - - &Delete - &Supprimer - - - - &Rename - &Renommer - - - - &Case Sensitive - Sensible à la &casse - - - - By File &Size - Par &taille de fichier - - - - &Close Window - &Fermer la fenêtre - - - - Ctrl+A - Ctrl+A - - - - Go &Up - Mon&ter - - - - &New Window - &Nouvelle fenêtre - - - - &Icon View - Vue en &icônes - - - - &Compact View - Vue &compacte - - - - &Detailed List - Liste &détaillée - - - - &Thumbnail View - Vue en vigne&ttes - - - - Cu&t - Cou&per - - - Ascending - Ascendant - - - Descending - Descendant - - - By File Name - Par nom de fichier - - - By Modification Time - Par date de modification - - - By File Type - Par type de fichier - - - By Owner - Par propriétaire - - - Folder First - Dossier en premier - - - - New &Tab - Nouvel ongle&t - - - - New Tab - Nouvel onglet - - - - Ctrl+T - Ctrl+T - - - - Go &Back - Re&culer - - - - Go Back - Reculer - - - - Alt+Left - Alt+Gauche - - - - Go &Forward - Ava&ncer - - - - Go Forward - Avancer - - - - Alt+Right - Alt+Droite - - - - Del - Suppr - - - - F2 - F2 - - - - C&lose Tab - Fermer &l'onglet - - - - File &Properties - &Propriétés du fichier - - - - &Folder Properties - Propriétés du &dossier - - - - Ctrl+Shift+N - Ctrl+Maj+N - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - Filter - Filtrer - - - - C&reate New - Créer un &nouveau - - - - &Sorting - Tri en cour&s - - - - Main Toolbar - Barre d'outils principale - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Entrée - - - Case Sensitive - Sensible à la casse - - - By File Size - Par taille de fichier - - - Close Window - Fermer la fenêtre - - - - Edit Bookmarks - Modifier les signets - - - - Open &Terminal - Ouvrir le &terminal - - - - F4 - F4 - - - - Open as &Root - Ouvrir en tant que &root - - - - &Edit Bookmarks - Modifi&er les signets - - - - &Folder - &Dossier - - - - &Blank File - &Fichier vide - - - - &Find Files - &Trouver des fichiers - - - - F3 - F3 - - - - Filter by string... - Filtrer par chaîne… - - - - &File - &Fichier - - - - &Help - &Aide - - - - &View - &Affichage - - - - &Edit - &Édition - - - - &Bookmarks - &Signets - - - - &Go - A&ller à… - - - - &Tool - Ou&tils - - - - PCManFM::Application - - - Name of configuration profile - Nom du profil de configuration - - - - PROFILE - PROFIL - - - - Run PCManFM as a daemon - Lancer PCManFM comme démon - - - - Quit PCManFM - Quitter PCManFM - - - - Launch desktop manager - Lancer le gestionnaire de bureau - - - - Turn off desktop manager if it's running - Éteindre le gestionnaire de bureau s'il fonctionne - - - - Open desktop preference dialog on the page with the specified name - Ouvrir la boîte de dialogue des préférences du bureau sur la page avec le nom spécifié - - - - - NAME - NAME - - - - Set desktop wallpaper from image FILE - Définir le fond d'écran de bureau depuis l'image FILE - - - - FILE - FILE - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Définir le mode de fond d'écran de bureau. MODE=(color|stretch|fit|center|tile) - - - - MODE - MODE - - - - Open Preferences dialog on the page with the specified name - Ouvrir la boîte de dialogue des préférences sur la page avec le nom spécifié - - - - Open new window - Ouvrir une nouvelle fenêtre - - - - Open Find Files utility - Ouvrir l'utilitaire de recherche de fichiers - - - - [FILE1, FILE2,...] - [FILE1, FILE2, etc.] - - - - Files or directories to open - Fichiers ou dossiers à ouvrir - - - - - Error - Erreur - - - - Terminal emulator is not set. - L'émulateur de terminal n'est pas défini. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Ouvrir dans le gestionnaire de fichiers - - - - Removable Disk - Disque amovible - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Remplir seulement avec la couleur d'arrière-plan - - - - Stretch to fill the entire screen - Étirer pour remplir l'écran entier - - - - Stretch to fit the screen - Étirer pour remplir l'écran - - - - Center on the screen - Centrer sur l’écran - - - - Tile the image to fill the entire screen - Faire une mosaïque avec l'image pour remplir l'écran entier - - - - Image Files - Fichiers image - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - Res&ter à la position actuelle - - - - Desktop Preferences - Préférences du bureau - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - Effacer le texte (Ctrl+K) - - - - Version: %1 - Version: %1 - - - - &Move to Trash - &Mettre à la corbeille - - - - &Delete - &Supprimer - - - - - Error - Erreur - - - - Switch user command is not set. - La commande de changement d’utilisateur n'est pas configurée. - - - - PCManFM::PreferencesDialog - - - Icon View - Vue en icônes - - - - Compact Icon View - Vue compacte - - - - Thumbnail View - Vue en vignettes - - - - Detailed List View - Vue en liste détaillée - - - - PCManFM::TabPage - - - Error - Erreur - - - - Free space: %1 (Total: %2) - Espace libre: %1 (total : %2) - - - - %n item(s) - - %n élément - %n éléments - - - - - (%n hidden) - - (%n caché) - (%n cachés) - - - - - %1 item(s) selected - %1 élément(s) sélectionné(s) - - - - PCManFM::View - - - Open in New T&ab - Ouvrir dans un nouvel ongle&t - - - - Open in New Win&dow - Ouvrir &dans une nouvelle fenêtre - - - - Open in Termina&l - Ouvrir dans &le terminal - - - - PreferencesDialog - - - Preferences - Préférences - - - - User Interface - Interface utilisateur - - - - Behavior - Comportement - - - - - Thumbnail - Vignette - - - - Volume - Volume - - - - Advanced - Avancé - - - - Icons - Icônes - - - - Size of big icons: - Taille des grandes icônes : - - - - Size of small icons: - Taille des petites icônes : - - - - Size of thumbnails: - Taille des vignettes : - - - - Size of side pane icons: - Taille des icônes de panneau latéral : - - - - Icon theme: - Thème d'icônes : - - - - Window - Fenêtre - - - - Default width of new windows: - Largeur par défaut des nouvelles fenêtres : - - - - Default height of new windows: - Hauteur par défaut des nouvelles fenêtres : - - - - Always show the tab bar - Toujours afficher la barre des onglets - - - - Show 'Close' buttons on tabs - Afficher le bouton « Fermer » sur les onglets - - - - Remember the size of the last closed window - Mémoriser la taille de la dernière fenêtre fermée - - - - Browsing - Navigation - - - - Open files with single click - Ouvrir les fichiers avec un simple clic - - - - Delay of auto-selection in single click mode (0 to disable) - Délai avant auto-sélection en mode simple click (0 pour désactiver) - - - - Default view mode: - Mode d'affichage par défaut : - - - - sec - s - - - - File Operations - Opérations sur les fichiers - - - - Confirm before deleting files - Confirmer avant de supprimer les fichiers - - - - Move deleted files to "trash bin" instead of erasing from disk. - Mettre les fichiers supprimés à la corbeille eu lieu de les effacer du disque. - - - - Show thumbnails of files - Montrer les vignettes des fichiers - - - - Only show thumbnails for local files - Montrer les vignettes seulement pour les fichiers locaux - - - - Display - Affichage - - - - Bookmarks: - Marque-pages : - - - - Open in current tab - Ouvrir dans l'onglet courant - - - - Open in new tab - Ouvrir dans un nouvel onglet - - - - Open in new window - Ouvrir dans une nouvelle fenêtre - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - Confirmer avant de déplacer des fichiers à la poubelle - - - - Don't ask options on launch executable file - Ne pas poser de questions avant lancement de fichier exécutable - - - - User interface - Interface utilisateur - - - - Treat backup files as hidden - Cacher les fichiers de sauvegarde - - - - Always show full file names - Toujours montrer le nom complet des fichiers - - - - Show icons of hidden files shadowed - Montrer les icônes de fichiers cachés ombragées - - - - Show in places - - - - - Home - Page d'accueil - - - - Desktop - Bureau - - - - Trash can - Poubelle - - - - Computer - Ordinateur - - - - Applications - Applications - - - - Devices - Périphériques - - - - Network - Réseau - - - - Do not generate thumbnails for image files exceeding this size: - Ne pas générer de vignettes pour les fichiers image excédant cette taille : - - - - KB - Ko - - - - Auto Mount - Monter automatiquement - - - - Mount mountable volumes automatically on program startup - Monter automatiquement les volumes au démarrage du programme - - - - Mount removable media automatically when they are inserted - Monter automatiquement les médias amovibles lorsqu'ils sont insérés - - - - Show available options for removable media when they are inserted - Montrer les options disponibles pour les médias amovibles lorsqu'ils sont insérés - - - - When removable medium unmounted: - - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - - Templates - Modèles - - - - Show only user defined templates in menu - Ne montrer que les modèles définis par l'utilisateur dans le menu - - - - Show only one template for each MIME type - Ne montrer qu'un modèle pour chaque type MIME - - - - Run default application after creation from template - - - - - Programs - Programmes - - - - Terminal emulator: - Émulateur de terminal : - - - Switch user command: - Commande de changement d'utilisateur : - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Exemples : « xterm -e %s » pour le terminal ; « gksu %s » pour changer d’utilisateur. -%s = la ligne de commande que vous voulez exécuter avec le terminal ou su. - - - Archiver integration: - Intégration du logiciel de compression de données : - - - - Use SI decimal prefixes instead of IEC binary prefixes - Utiliser les préfixes de décimales du système international d'unités au lieu des préfixes binaires de l'IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_gl.ts b/pcmanfm/translations/pcmanfm-qt_gl.ts deleted file mode 100644 index ad57d0c..0000000 --- a/pcmanfm/translations/pcmanfm-qt_gl.ts +++ /dev/null @@ -1,1372 +0,0 @@ - - - - - AboutDialog - - - About - Sobre - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Un xestor de xanelas lixeiro - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - -Este programa é software libre; pode distribuílo e/ou -modificalo baixo os termos da Licenza Pública Xeral GNU -tal como foi publicada pola Free Software Foundation; tanto na versión 2 -da Licenza, como (segundo o seu criterio) calquera versión posterior. - -Este programa distribúese coa esperanza de que sexa útil, -pero SEN NINGUNHA GARANTÍA; nin sequera a garantíia implícita de -COMERCIALIZACIÓN ou ADECUACIÖN PARA UN PROPÓSITO ESPECÍFICO. -Vexa a Licenza Pública Xeral GNU para obter mais detalles. - -Debe ter recibido unha copia da Licenza Pública Xeral GNU -con este programa; se non é así, escriba á Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. {2009 ?} {2014 ?} {2 -?} {51 ?} {02110-1301,?} - - - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programación: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - Autores - - - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - -Este programa é software libre; pode distribuílo e/ou -modificalo baixo os termos da Licenza Pública Xeral GNU -tal como foi publicada pola Free Software Foundation; tanto na versión 2 -da Licenza, como (segundo o seu criterio) calquera versión posterior. - -Este programa distribúese coa esperanza de que sexa útil, -pero SEN NINGUNHA GARANTÍA; nin sequera a garantíia implícita de -COMERCIALIZACIÓN ou ADECUACIÖN PARA UN PROPÓSITO ESPECÍFICO. -Vexa a Licenza Pública Xeral GNU para obter mais detalles. - -Debe ter recibido unha copia da Licenza Pública Xeral GNU -con este programa; se non é así, escriba á Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - License - Licenza - - - - AutoRunDialog - - - Removable medium is inserted - Foi inserido un dispositivo removíbel - - - - <b>Removable medium is inserted</b> - <b>Foi inserido un dispositivo removíbel</b> - - - - Type of medium: - Tipo de dispositivo: - - - - Detecting... - Detectando... - - - - Please select the action you want to perform: - Escolla a acción que quere realizar: - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - Ficheiro de imaxe - - - - Folder path - - - - - &Browse - &Examinar - - - - DesktopPreferencesDialog - - - Desktop Preferences - Preferencias do escritorio - - - - Background - Fondo - - - - Wallpaper mode: - Modo do fondo de escritorio: - - - - Wallpaper image file: - Ficheiro de imaxe do fondo de escritorio: - - - - Select background color: - Escoller a cor do fondo: - - - - Image file - Ficheiro de imaxe - - - - Image file path - Ruta ao ficheiro de imaxe - - - - &Browse - &Examinar - - - - Label Text - Texto da etiqueta - - - - Select text color: - Escoller a cor do texto: - - - - Select shadow color: - Escoller a cor da sombra: - - - - Select font: - Escoller o tipo de letra: - - - - General - Xeral - - - - Window Manager - - - - - Show menus provided by window managers when desktop is clicked - Amosar os menús fornecidos polos xestores de xanelas cando se preme no escritorio - - - - Advanced - Avanzado - - - - MainWindow - - - File Manager - Xestor de ficheiros - - - - Go Up - Subir - - - - Alt+Up - Alt+Frecha arriba - - - Home - Inicio - - - - Alt+Home - Alt+Inicio - - - - Reload - Cargar de novo - - - - F5 - F5 - - - - &Home - - - - - &Reload - &Cargar de novo - - - - Go - Ir para - - - - Quit - Saír - - - - &About - &Sobre - - - - New Window - Nova xanela - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Amosar a&gochados - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Computador - - - - &Trash - &Lixo - - - - &Network - &Rede - - - - &Desktop - &Escritorio - - - - &Add to Bookmarks - En&gadir aos marcadores - - - - &Applications - &Aplicacións - - - - Ctrl+X - Ctrl-X - - - - &Copy - &Copiar - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Pegar - - - - Ctrl+V - Ctrl+V - - - - Select &All - Seleccionar &todo - - - - Pr&eferences - Pre&ferencias - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Invert Selection - &Inverter a selección - - - - &Delete - &Eliminar - - - - &Rename - &Renomear - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+A - Ctrl+A - - - - Go &Up - S&ubir - - - - &New Window - &Nova xanela - - - - &Icon View - Vista de &iconas - - - - &Compact View - Vista &compacta - - - - &Detailed List - Vista &detallada - - - - &Thumbnail View - Vista de &miniaturas - - - - Cu&t - Cor&tar - - - Ascending - Ascendente - - - Descending - Descendente - - - By File Name - Polo nome do ficheiro - - - By Modification Time - Pola data de modificación - - - By File Type - Polo tipo do ficheiro - - - By Owner - Polo propietario - - - Folder First - Primeiro os cartafoles - - - - New &Tab - Nova &lapela - - - - New Tab - Nova lapela - - - - Ctrl+T - Ctrl+T - - - - Go &Back - A&trás - - - - Go Back - Ir cara atrás - - - - Alt+Left - Alt+Frecha esquerda - - - - Go &Forward - Adian&te - - - - Go Forward - Adiante - - - - Alt+Right - Alt+Frecha dereita - - - - Del - Supr - - - - F2 - F2 - - - - C&lose Tab - &Pechar a lapela - - - - File &Properties - &Propiedades do ficheiro - - - - &Folder Properties - Propiedades do &cartafol - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - - - - - C&reate New - - - - - &Sorting - &Ordenación - - - - Main Toolbar - Barra de ferramentas principal - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Intro - - - Case Sensitive - Distinguindo maiúsculas de minúsculas - - - By File Size - Polo tamaño do ficheiro - - - Close Window - Pechar a xanela - - - - Edit Bookmarks - Editar os marcadores - - - - Open &Terminal - Abrir un &terminal - - - - F4 - F4 - - - - Open as &Root - Abrir como &root - - - - &Edit Bookmarks - &Editar marcadores - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - F3 - - - - Filter by string... - - - - - &File - &Ficheiro - - - - &Help - &Axuda - - - - &View - &Ver - - - - &Edit - &Editar - - - - &Bookmarks - &Marcadores - - - - &Go - &Ir para - - - - &Tool - &Ferramenta - - - - PCManFM::Application - - - Name of configuration profile - Nome do perfil de configuración - - - - PROFILE - PERFIL - - - - Run PCManFM as a daemon - Executar PCManFM como un servizo - - - - Quit PCManFM - Saír do PCManFM - - - - Launch desktop manager - Iniciar o xestor de escritorio - - - - Turn off desktop manager if it's running - Apagar o xestor de escritorio se está en execución - - - - Open desktop preference dialog on the page with the specified name - Abrir o diálogo de preferencias do escritorio na páxina co nome especificado - - - - - NAME - NOME - - - - Set desktop wallpaper from image FILE - Estabelecer o fondo de pantalla do escritorio desde o FICHEIRO de imaxe - - - - FILE - FICHEIRO - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Axuste o modo de fondo de escritorio. MODO=(color|stretch|fit|center|tile) - - - - MODE - MODO - - - - Open Preferences dialog on the page with the specified name - Abrir o diálogo de preferencias do escritorio na páxina co nome especificado - - - - Open new window - Abrir unha nova xanela - - - - Open Find Files utility - Abrir a utilidade de busca de ficheiros - - - - [FILE1, FILE2,...] - [FICHEIRO1, FICHEIRO2,...] - - - - Files or directories to open - - - - - - Error - Erro - - - - Terminal emulator is not set. - Non foi estabelecido o emulador de terminal - - - - PCManFM::AutoRunDialog - - - Open in file manager - Abrir no xestor de ficheiros - - - - Removable Disk - Disco extraíbel - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Encher só coa cor de fondo - - - - Stretch to fill the entire screen - Estirar para encher a pantalla completa - - - - Stretch to fit the screen - Estirar para adaptar á pantalla - - - - Center on the screen - Centrar na pantalla - - - - Tile the image to fill the entire screen - Facer mosaico coa imaxe para encher a pantalla completa - - - - Image Files - Ficheiros de imaxe - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - &Permanente na posición actual - - - - Desktop Preferences - Preferencias do escritorio - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - - - - - &Move to Trash - &Mover ao lixo - - - - &Delete - &Eliminar - - - - - Error - Erro - - - - Switch user command is not set. - A orde para cambiar de usuario non está configurada. - - - - PCManFM::PreferencesDialog - - - Icon View - Vista en Iconas - - - - Compact Icon View - Vista compacta en iconas - - - - Thumbnail View - Vista de miniaturas - - - - Detailed List View - Ver como lista detallada - - - - PCManFM::TabPage - - - Error - Erro - - - - Free space: %1 (Total: %2) - Espazo libre: %1 (Total: %2) - - - - %n item(s) - - %n elemento - %n elementos - - - - - (%n hidden) - -  (%n agochado) -  (%n agochados) - - - - - %1 item(s) selected - Escolleu %1 elemento(s) - - - - PCManFM::View - - - Open in New T&ab - Abrir nunha nova l&apela - - - - Open in New Win&dow - Abrir nunha nova xa&nela - - - - Open in Termina&l - Abrir nun termina&l - - - - PreferencesDialog - - - Preferences - Preferencias - - - - User Interface - Interface de usuario - - - - Behavior - Comportamento - - - - - Thumbnail - Miniatura - - - - Volume - Volume - - - - Advanced - Avanzado - - - - Icons - Iconas - - - - Size of big icons: - Tamaño das iconas grandes: - - - - Size of small icons: - Tamaño das iconas pequenas: - - - - Size of thumbnails: - Tamaño das miniaturas: - - - - Size of side pane icons: - Tamaño das iconas do panel lateral: - - - - Icon theme: - Tema de iconas: - - - - Window - Xanela - - - - Default width of new windows: - Largo predeterminado para as novas xanelas: - - - - Default height of new windows: - Alto predeterminado para as novas xanelas: - - - - Always show the tab bar - Amosar sempre a barra de lapelas - - - - Show 'Close' buttons on tabs - Amosar os botóns de «Pechar» nas lapelas - - - - Remember the size of the last closed window - - - - - Browsing - Navegando - - - - Open files with single click - Abrir os ficheiros cun só clic - - - - Delay of auto-selection in single click mode (0 to disable) - - - - - Default view mode: - Modo de vista predeterminado: - - - - sec - - - - - File Operations - Operacións de ficheiro - - - - Confirm before deleting files - Confirmar antes de eliminar os ficheiros - - - - Move deleted files to "trash bin" instead of erasing from disk. - Mover os ficheiros eliminados ao «cesto do lixo» no canto de borralos do disco. - - - - Show thumbnails of files - Amosar miniaturas dos ficheiros - - - - Only show thumbnails for local files - Amosar só as miniaturas dos ficheiros locais - - - - Display - - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - Inicio - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Do not generate thumbnails for image files exceeding this size: - Non xerar miniaturas dos ficheiros de imaxe se o tamaño excede de: - - - - KB -  KB - - - - Auto Mount - Montaxe automático - - - - Mount mountable volumes automatically on program startup - Montar os volumes montábeis automaticamente no arrinque do programa - - - - Mount removable media automatically when they are inserted - Montar os dispositivos removíbeis automaticamente ao seren inseridos - - - - Show available options for removable media when they are inserted - Amosar as opción para os dispositivos removíbeis ao seren inseridos - - - - When removable medium unmounted: - - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Programs - Programas - - - - Terminal emulator: - Emulador de terminal: - - - Switch user command: - Orde de cambio de usuario: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Exemplos: «xterm -e %s» para o terminal ou «gksu %s» para cambiar de usuario. -%s = á liña de ordes que quere executar co terminal ou como superusario. - - - Archiver integration: - Integración do «Archiver»: - - - - Use SI decimal prefixes instead of IEC binary prefixes - Utilizar prefixos decimais SI no canto de prefixos binarios IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_hu.ts b/pcmanfm/translations/pcmanfm-qt_hu.ts deleted file mode 100644 index dcc5d60..0000000 --- a/pcmanfm/translations/pcmanfm-qt_hu.ts +++ /dev/null @@ -1,1276 +0,0 @@ - - - - - AboutDialog - - - About - Rólunk - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Könnyed fájlkezelő - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programozó: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - Authors - Szerzők - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -Ez egy szabad szoftver, ami a Free Software Foundation által -megjelentetett GNU General Public Licensz 2-es, vagy későbbi -verzióiban felsorolt feltételekkel szabadon terjeszthető, módosítható. - -A megjelentetők remélik, hogy a program hasznos, viszont -SEMMILYEN GARANCIÁT NEM VÁLLALNAK, beleértve áttételesen az -ÜZLETI célú hasznosítására, továbbá a SPECIÁLIS CÉLRA TÖRTÉNŐ -HASZNÁLHATÓSÁGÁRA sem. További részletek a GNU General Public Licensz soraiban. - -Ezzel a programmal együtt meg kellett kapnia a GNU General -Public Licensz másolatát is, ha nem, akkor írjon a Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA címre. - - - - - License - Licensz - - - - AutoRunDialog - - - Removable medium is inserted - Új cserélhető adathordozó észlelve - - - - <b>Removable medium is inserted</b> - <b>Új hordozható adathordozó észlelve</b> - - - - Type of medium: - Adathordozó fajtája: - - - - Detecting... - Észlelés... - - - - Please select the action you want to perform: - Válassz egy lehetőséget: - - - - DesktopFolder - - - Form - Űrlap - - - - Desktop - Asztal - - - - Desktop folder: - Asztal mappa: - - - - Image file - Képfájl - - - - Folder path - Könyvtár útvonal - - - - &Browse - &Böngészés - - - - DesktopPreferencesDialog - - - Desktop Preferences - Asztal tulajdonságok - - - - Background - Háttérkép - - - - Wallpaper mode: - Tapéta mód: - - - - Wallpaper image file: - Tapéta képfájl: - - - - Select background color: - Háttérszín: - - - - Image file - Képfájl - - - - Image file path - Képfájl útvonala - - - - &Browse - &Böngészés - - - - Label Text - Felirat - - - - Select text color: - Szövegszín: - - - - Select shadow color: - Árnyékszín: - - - - Select font: - Betűtípus: - - - - General - - - - - Window Manager - Ablakkezelő - - - - Show menus provided by window managers when desktop is clicked - Asztalra kattintva az ablakkezelő menüje látszik - - - - Advanced - Haladó - - - - MainWindow - - - File Manager - Fájlkezelő - - - - Go &Up - &Föl - - - - Go Up - Föl - - - - Alt+Up - Alt+Föl - - - - &Home - &Saját könyvtár - - - - Alt+Home - Alt+Home - - - - &Reload - Új&ratölt - - - - F5 - F5 - - - - Go - Ugrás - - - - Quit - Kilép - - - - &About - Ról&am - - - - &New Window - Ú&J ablak - - - - New Window - ÚJ ablak - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - &Rejtettek - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Számítógép - - - - &Trash - &Kuka - - - - &Network - &Hálózat - - - - &Desktop - A&sztal - - - - &Add to Bookmarks - &Könyvjelzőkhöz - - - - &Applications - &Alkalmazások - - - - Reload - Újratölt - - - - &Icon View - &Ikonnézet - - - - &Compact View - &Tömör nézet - - - - &Detailed List - &Teljes lista - - - - &Thumbnail View - &Bélyegképek - - - - Cu&t - &Kivág - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Másol - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Beilleszt - - - - Ctrl+V - Ctrl+V - - - - Select &All - &Mindet - - - - Ctrl+A - Ctrl+A - - - - Pr&eferences - B&eállítások - - - - &Ascending - &Növekvő - - - - &Descending - &Csökkenő - - - - &By File Name - &Fájlnév szerint - - - - By &Modification Time - &Módosítási idő szerint - - - - By File &Type - Fájl&típus szerint - - - - By &Owner - &Tulajdonos szerint - - - - &Folder First - Ma&ppák elől - - - - &Case Sensitive - Na&gybetűérzékeny - - - - By File &Size - Fá&jlméret szerint - - - - &Close Window - A&blak bezárás - - - - &Folder - &Mappa - - - - &Blank File - &Üres fájl - - - - New &Tab - Új &fül - - - - New Tab - Új fül - - - - Ctrl+T - Ctrl+T - - - - Go &Back - &Vissza - - - - Go Back - Vissza - - - - Alt+Left - Alt+Bal - - - - Go &Forward - &Előre - - - - Go Forward - Előre - - - - Alt+Right - Alt+Jobb - - - - &Invert Selection - K&ijelölés megfordítás - - - - &Delete - &Töröl - - - - Del - Del - - - - &Rename - &Átnevez - - - - F2 - F2 - - - - C&lose Tab - Fü&l bezárás - - - - Ctrl+W - Ctrl+W - - - - File &Properties - &Fájljellemzők - - - - Alt+Return - Alt+Return - - - - &Folder Properties - &Mappajellemzők - - - - Edit Bookmarks - Könyvjelzőkezelés - - - - Open &Terminal - &Terminál - - - - F4 - F4 - - - - Open as &Root - &Rendszergazdai megnyitás - - - - &Edit Bookmarks - Könyvj&elzőkezelés - - - - Ctrl+Shift+N - Ctrl+Shift+N - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - &Find Files - &Fájlkeresés - - - - F3 - F3 - - - - Filter - Szűrő - - - - Filter by string... - Szövegszűrő... - - - - &File - &Fájl - - - - C&reate New - Ú&j létrehozás - - - - &Help - &Súgó - - - - &View - &Nézet - - - - &Sorting - Rendezé&s - - - - &Edit - Sz&erkeszt - - - - &Bookmarks - &Könyvjelzők - - - - &Go - U&grás - - - - &Tool - &Eszközök - - - - Main Toolbar - Eszközsáv - - - - PCManFM::Application - - - Name of configuration profile - Beállítófájl neve - - - - PROFILE - PROFIL - - - - Run PCManFM as a daemon - PCManFM daemon-ként - - - - Quit PCManFM - PCManFM elhagyása - - - - Launch desktop manager - Asztalkezelő indítás - - - - Turn off desktop manager if it's running - Futó asztalkezelő lekapcsolása - - - - Open desktop preference dialog on the page with the specified name - Asztalbeállító nyitása a megadott nevű lapon - - - - - NAME - NÉV - - - - Open new window - Új ablak nyitás - - - - Open Find Files utility - Fájlkereső indítása - - - - Set desktop wallpaper from image FILE - A megadott FILE használata tapétaként - - - - FILE - FÁJL - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Tapéta mód. MODE=(color|stretch|fit|center|tile) - - - - MODE - MÓD - - - - Open Preferences dialog on the page with the specified name - Beállító nyitása a megadott nevű lapon - - - - Files or directories to open - Megnyitandó fájlok vagy mappák - - - - [FILE1, FILE2,...] - [FÁJL1, FÁJL2,...] - - - - - Error - Hiba - - - - Terminal emulator is not set. - A terminál emulátor beállítatlan. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Megnyitás fájlkezelővel - - - - Removable Disk - Cserélhető lemez - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Kitöltés csak háttérszínnel - - - - Stretch to fill the entire screen - Kitöltve - - - - Stretch to fit the screen - Nyújtva - - - - Center on the screen - Középre - - - - Tile the image to fill the entire screen - Csempézve - - - - Image Files - Képfájlok - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - &Pozíció megjegyzése - - - - Desktop Preferences - Asztalbeállítások - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - Szövegtörlés (Ctrl+K) - - - - Version: %1 - Verzió: %1 - - - - &Move to Trash - &Kukába - - - - &Delete - &Töröl - - - - - Error - Hiba - - - - Switch user command is not set. - Felhasználóváltó parancs határozatlan. - - - - PCManFM::PreferencesDialog - - - Icon View - Ikon - - - - Compact Icon View - Kicsi ikon - - - - Thumbnail View - Bélyegkép - - - - Detailed List View - Részletes - - - - PCManFM::TabPage - - - Error - Hiba - - - - Free space: %1 (Total: %2) - Szabad: %1 (Összes: %2) - - - - %n item(s) - - %n elem - - - - - (%n hidden) - - (%n rejtett) - - - - - %1 item(s) selected - %1 elem választva - - - - PCManFM::View - - - Open in New T&ab - Nyi&tás új fülön - - - - Open in New Win&dow - Nyitás új a&blakban - - - - Open in Termina&l - Nyitás terminá&lban - - - - PreferencesDialog - - - Preferences - Beállítások - - - - User Interface - Felhasználói felület - - - - Behavior - Viselkedés - - - - - Thumbnail - Bélyegkép - - - - Volume - Adathordozó - - - - Advanced - Haladó - - - - Icons - Ikonok - - - - Size of big icons: - Nagy méret: - - - - Size of small icons: - Kicsi méret: - - - - Size of thumbnails: - Bélyegképméret: - - - - Size of side pane icons: - Oldalsáv ikonméret: - - - - Icon theme: - Ikon téma: - - - - Window - Ablak - - - - Always show the tab bar - Fülsáv mindig látható - - - - Show 'Close' buttons on tabs - 'Bezár'gomb a fülön látszik - - - - Remember the size of the last closed window - Utoljára bezárt ablak méretének megjegyzése - - - - Default width of new windows: - Új ablak alapszélessége: - - - - Default height of new windows: - Új ablak alapmagassága: - - - - Browsing - Böngészés - - - - Open files with single click - Megnyitás egy kattintásra - - - - Delay of auto-selection in single click mode (0 to disable) - Egykattintásos megnyitási módban az automata kiválasztás késleltetése (0 tilt) - - - - Default view mode: - Alapértelmezett nézetmód: - - - - sec - mp - - - - File Operations - Fájlműveletek - - - - Confirm before deleting files - Törlés előtt megerősítés - - - - Move deleted files to "trash bin" instead of erasing from disk. - Törölt fájlok lemezről törlés helyett a kukába mennek. - - - - Show thumbnails of files - Fájloknál - - - - Only show thumbnails for local files - Csak helyi fájloknál - - - - Display - Képernyő - - - - Bookmarks: - Könyvjelzők: - - - - Open in current tab - Megnyitás itt - - - - Open in new tab - Megnyitás új fülön - - - - Open in new window - Megnyitás új ablakban - - - - Erase files on removable media instead of "trash can" creation - Cserélhető adathordozón a fájlok törlése "kukázás" helyett - - - - Confirm before moving files into "trash can" - Megerősítés "kukázás" előtt - - - - Don't ask options on launch executable file - Fájl futtatás előtt nincs opció kérés - - - - User interface - Kezelőfelület - - - - Treat backup files as hidden - Biztonsági mentett fájlokat rejtettként kezel - - - - Always show full file names - Mindig részletes fájlnevek - - - - Show icons of hidden files shadowed - Rejtett fájlok ikonjai árnyékoltak - - - - Show in places - Helyben látható - - - - Home - Saját könyvtár - - - - Desktop - Asztal - - - - Trash can - Kuka - - - - Computer - Számítógép - - - - Applications - Alkalmazások - - - - Devices - Eszközök - - - - Network - Hálózat - - - - Do not generate thumbnails for image files exceeding this size: - Nincs kép, ha a fájl ennél nagyobb: - - - - KB - KB - - - - Auto Mount - Automata csatolás - - - - Mount mountable volumes automatically on program startup - Csatolható eszközök automata csatolása induláskor - - - - Mount removable media automatically when they are inserted - Cserélhető adathordozók automata csatolása behelyezéskor - - - - Show available options for removable media when they are inserted - Cserélhető adathordozók behelyezéskor választás felkínálása - - - - When removable medium unmounted: - Cserélhető adathordozó lecsatolásakor: - - - - Close &tab containing removable medium - Cserélhe&tő adathortozós fül bezárása - - - - Chan&ge folder in the tab to home folder - A &fül a saját mappát fogja mutatni - - - - Programs - Programok - - - - Terminal emulator: - Terminálemulátor: - - - - Switch &user command: - Fel&használó váltási parancs: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Példa: "xterm -e %s" terminálhoz "gksu %s" felhasználóváltáshoz. -%s = A parancs, mely terminálhoz, vagy rendszergazdakénti végrehajtáshoz kell. - - - - Archiver in&tegration: - Csomagoló beépí&tés: - - - - Templates - Társítások - - - - Show only user defined templates in menu - Menüben csak felhasználói társítások - - - - Show only one template for each MIME type - Minden MIME típushoz csak egy társítás látható - - - - Run default application after creation from template - Tásítás után az alapértelmezett alkalmazás fut - - - - Use SI decimal prefixes instead of IEC binary prefixes - IEC bináris helyett SI decimális prefix használata - - - diff --git a/pcmanfm/translations/pcmanfm-qt_it.ts b/pcmanfm/translations/pcmanfm-qt_it.ts deleted file mode 100644 index 8d22a13..0000000 --- a/pcmanfm/translations/pcmanfm-qt_it.ts +++ /dev/null @@ -1,1348 +0,0 @@ - - - - - AboutDialog - - - About - Informazioni - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Gestore file leggero - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan Gestore file - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -Questo programma è software libero; puoi redistribuirlo e/o -modificarlo nei termini della GNU General Public License -come pubblicata dalla Free Software Foundation; nella versione 2 -della licenza, o (a tua scelta) qualsiasi versione successiva. - -Questo programma è distribuito nella speranza che possa essere utile, -ma SENZA ALCUNA GARANZIA; senza nemmeno la garanzia implicita di -COMMERCIABILITÀ o IDONEITÀ PER FINI PARTICOLARI. Vedi la -GNU General Public License per ulteriori dettagli. - -Dovresti aver ricevuto una copia della GNU General Public License -insieme a questo programma; In caso contrario, scrivi a Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programmazione: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - Autori - - - - License - Licenza - - - - AutoRunDialog - - - Removable medium is inserted - Supporto rimovibile inserito - - - - <b>Removable medium is inserted</b> - <b>Supporto rimovibile inserito</b> - - - - Type of medium: - Tipo di supporto: - - - - Detecting... - Rilevamento... - - - - Please select the action you want to perform: - Seleziona l'azione da eseguire: - - - - DesktopFolder - - - Form - Modulo - - - - Desktop - Scrivania - - - - Desktop folder: - Cartella della scrivania: - - - - Image file - File immagine - - - - Folder path - Percorso della cartella - - - - &Browse - &Sfoglia - - - - DesktopPreferencesDialog - - - Desktop Preferences - Preferenze della scrivania - - - - Background - Sfondo - - - - Wallpaper mode: - Modalità sfondo: - - - - Wallpaper image file: - File immagine di sfondo: - - - - Select background color: - Seleziona il colore di sfondo: - - - - Image file - File immagine - - - - Image file path - Percorso al file immagine - - - - &Browse - &Sfoglia - - - - Label Text - Testo etichette - - - - Select text color: - Seleziona il colore del testo: - - - - Select shadow color: - Seleziona il colore delle ombre: - - - - Select font: - Seleziona il carattere: - - - - General - Generale - - - - Window Manager - Gestore delle finestre - - - - Show menus provided by window managers when desktop is clicked - Mostra i menu forniti dal gestore delle finestre quando fai clic sul desktop - - - Desktop - Scrivania - - - Desktop folder: - Cartella della scrivania: - - - Folder path - Percorso della cartella - - - - Advanced - Avanzate - - - - MainWindow - - - File Manager - Gestore file - - - - Go Up - Vai su - - - - Alt+Up - Alt+Su - - - Home - Cartella home - - - - Alt+Home - Alt+Inizio - - - - Reload - Ricarica - - - - F5 - F5 - - - - &Home - &Home - - - - &Reload - &Ricarica - - - - Go - Vai - - - - Quit - Esci - - - - &About - &Informazioni - - - - New Window - Nuova finestra - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Mostra i file &nascosti - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Computer - - - - &Trash - Ces&tino - - - - &Network - &Rete - - - - &Desktop - &Scrivania - - - - &Add to Bookmarks - &Aggiungi ai segnalibri - - - - &Applications - &Applicazioni - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Copia - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Incolla - - - - Ctrl+V - Ctrl+V - - - - Select &All - Seleziona t&utto - - - - Pr&eferences - Pr&eferenze - - - - &Ascending - &Crescente - - - - &Descending - &Decrescente - - - - &By File Name - &Per nome file - - - - By &Modification Time - Per data di &modifica - - - - By File &Type - Per &tipo di file - - - - By &Owner - Per pr&oprietario - - - - &Folder First - Prima le ca&rtelle - - - - &Invert Selection - &Inverti selezione - - - - &Delete - &Elimina - - - - &Rename - &Rinomina - - - - Ctrl+A - Ctrl+A - - - - Go &Up - Vai &su - - - - &New Window - &Nuova finestra - - - - &Icon View - Vista &icone - - - - &Compact View - Vista &compatta - - - - &Detailed List - Elenco &dettagliato - - - - &Thumbnail View - Vista minia&ture - - - - Cu&t - &Taglia - - - Ascending - Crescente - - - Descending - Decrescente - - - By File Name - Per nome file - - - By Modification Time - Per data modifica - - - By File Type - Per tipo file - - - By Owner - Per proprietario - - - Folder First - Prima le cartelle - - - - New &Tab - Nuova sc&heda - - - - New Tab - Nuova scheda - - - - Ctrl+T - Ctrl+T - - - - Go &Back - Vai in&dietro - - - - Go Back - Va indietro - - - - Alt+Left - Alt+Sinistra - - - - Go &Forward - Vai &avanti - - - - Go Forward - Va avanti - - - - Alt+Right - Alt+Destra - - - - Del - Canc - - - - F2 - F2 - - - - C&lose Tab - C&hiudi scheda - - - - File &Properties - &Proprietà file - - - - &Folder Properties - Proprietà &cartella - - - - &Case Sensitive - Distingui le maius&cole - - - - By File &Size - Per dimen&sione del file - - - - &Close Window - &Chiudi finestra - - - - &Folder - &Cartella - - - - Ctrl+Shift+N - Ctrl+Shift+N - - - - &Blank File - File &vuoto - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - &Find Files - Trova &file - - - - F3 - F3 - - - - Filter - Filtro - - - - Filter by string... - Filtra per stringa... - - - - C&reate New - C&rea nuovo - - - - &Sorting - &Ordinamento - - - - Main Toolbar - Barra degli strumenti principale - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Invio - - - Case Sensitive - Distingui le maiuscole - - - By File Size - Per dimensione del file - - - Close Window - Chiudi finestra - - - - Edit Bookmarks - Modifica segnalibri - - - - Open &Terminal - Apri &terminale - - - - F4 - F4 - - - - Open as &Root - Apri come &root - - - - &Edit Bookmarks - &Modifica segnalibri - - - - &File - &File - - - - &Help - A&iuto - - - - &View - &Visualizza - - - - &Edit - &Modifica - - - - &Bookmarks - &Segnalibri - - - - &Go - &Vai - - - - &Tool - S&trumenti - - - - PCManFM::Application - - - Name of configuration profile - Nome del profilo di configurazione - - - - PROFILE - PROFILO - - - - Run PCManFM as a daemon - Esegui PCManFM come demone - - - - Quit PCManFM - Esci da PCManFM - - - - Launch desktop manager - Lancia il gestore della scrivania - - - - Turn off desktop manager if it's running - Spegni il gestore della scrivania se è in esecuzione - - - - Open desktop preference dialog on the page with the specified name - Apri le preferenze della scrivania alla pagina con il nome specificato - - - - - NAME - NOME - - - - Set desktop wallpaper from image FILE - Imposta lo sfondo della scrivania con l'immagine dal FILE - - - - FILE - FILE - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Imposta la modalità dello sfondo della scrivania. MODO=(color|stretch|fit|center|tile) - - - - MODE - MODO - - - - Open Preferences dialog on the page with the specified name - where is that? - Apri le preferenze alla pagina con il nome specificato - - - - Open new window - Apri una nuova finestra - - - - Open Find Files utility - Apri l'utilità di ricerca file - - - - [FILE1, FILE2,...] - [FILE1, FILE2, ...] - - - - Files or directories to open - File o cartelle da aprire - - - - - Error - Errore - - - - Terminal emulator is not set. - L'emulatore di terminale non è impostato. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Apri nel gestore file - - - - Removable Disk - Disco rimovibile - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Riempi solo con il colore di sfondo - - - - Stretch to fill the entire screen - Allarga per riempire tutto lo schermo - - - - Stretch to fit the screen - Restringi per adattare allo schermo - - - - Center on the screen - Centra nello schermo - - - - Tile the image to fill the entire screen - Ripete l'immagine per riempire tutto lo schermo - - - - Image Files - File immagine - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - Blo&cca alla posizione attuale - - - - Desktop Preferences - Preferenze della scrivania - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - Cancella il testo (Ctrl+K) - - - - Version: %1 - Versione:%1 - - - - &Move to Trash - Cestin&a - - - - &Delete - &Elimina - - - - - Error - Errore - - - - Switch user command is not set. - Il comando per cambiare utente non è impostato. - - - - PCManFM::PreferencesDialog - - - Icon View - Vista icone - - - - Compact Icon View - Vista icone compatta - - - - Thumbnail View - Vista miniature - - - - Detailed List View - Vista elenco dettagliato - - - - PCManFM::TabPage - - - Error - Errore - - - - Free space: %1 (Total: %2) - Spazio libero: %1 (totale: %2) - - - - %n item(s) - - %n elemento - %n elementi - - - - - (%n hidden) - -  (%n nascosto) -  (%n nascosti) - - - - - %1 item(s) selected - %1 elementi selezionati - - - - PCManFM::View - - - Open in New T&ab - Apri in una nuova sc&heda - - - - Open in New Win&dow - Apri una nuova &finestra - - - - Open in Termina&l - Apri nel termina&le - - - - PreferencesDialog - - - Preferences - Preferenze - - - - User Interface - Interfaccia utente - - - - Behavior - Comportamento - - - - - Thumbnail - Miniatura - - - - Volume - Volume - - - - Advanced - Avanzate - - - - Icons - Icone - - - - Size of big icons: - Dimensione delle icone grandi: - - - - Size of small icons: - Dimensione delle icone piccole: - - - - Size of thumbnails: - Dimensione delle miniature: - - - - Size of side pane icons: - Dimensione delle icone del riquadro laterale: - - - - Icon theme: - Tema delle icone: - - - - Window - Finestra - - - - Default width of new windows: - Larghezza predefinita delle nuove finestre: - - - - Default height of new windows: - Altezza predefinita delle nuove finestre: - - - - Always show the tab bar - Mostra sempre la barra delle schede - - - - Show 'Close' buttons on tabs - Mostra pulsanti di chiusura sulle schede - - - - Remember the size of the last closed window - Ricorda la dimensione della ultima finestra chiusa - - - - Browsing - Navigazione - - - - Open files with single click - Apri file con un clic singolo - - - - Delay of auto-selection in single click mode (0 to disable) - Ritardo per la selezione automatica in modalità con clic singolo (0 per disabilitare) - - - - Default view mode: - Modalità vista predefinita: - - - - sec - secondi - - - - File Operations - Operazioni sui file - - - - Confirm before deleting files - Conferma prima di rimuovere i file - - - - Move deleted files to "trash bin" instead of erasing from disk. - Sposta nel «Cestino» i file rimossi invece di eliminarli dal disco. - - - - Show thumbnails of files - Mostra miniature dei file - - - - Only show thumbnails for local files - Mostra miniature solo per i file locali - - - - Display - Visualizza - - - - Bookmarks: - Segnalibri: - - - - Open in current tab - Apri nella scheda attuale - - - - Open in new tab - Apri in una nuova scheda - - - - Open in new window - Apri una nuova finestra - - - - Erase files on removable media instead of "trash can" creation - Cancella i file sui supporti rimovibile invece di cestinarli - - - - Confirm before moving files into "trash can" - Conferma prima di cestinare i file - - - - Don't ask options on launch executable file - Non chiedere opzioni all'avvio dei file eseguibili - - - - User interface - Interfaccia utente - - - - Treat backup files as hidden - Tratta i file di backup come nascosti - - - - Always show full file names - Mostra sempre il nome completo dei file - - - - Show icons of hidden files shadowed - Mostra le icone dei file nascosti come ombreggiate - - - - Show in places - Mostra in Risorse - - - - Home - Home - - - - Desktop - Scrivania - - - - Trash can - Cestino - - - - Computer - Computer - - - - Applications - Applicazioni - - - - Devices - Dispositivi - - - - Network - Rete - - - - Do not generate thumbnails for image files exceeding this size: - Non generare miniature per file immagine più grandi di: - - - - KB -  KB - - - - Auto Mount - Montaggio automatico - - - - Mount mountable volumes automatically on program startup - Monta automaticamente i volumi disponibili all'avvio del programma - - - - Mount removable media automatically when they are inserted - Monta automaticamente i volumi rimovibli quando vengono inseriti - - - - Show available options for removable media when they are inserted - Mostra opzioni disponibili per i volumi rimovibli quando vengono inseriti - - - - When removable medium unmounted: - Quando viene smontato un volume rimovibile: - - - - Close &tab containing removable medium - Chiudi &scheda con il contenuto - - - - Chan&ge folder in the tab to home folder - Cambia in cartella &home - - - - Switch &user command: - Comando per &cambiare utente: - - - - Archiver in&tegration: - Gestore &archivi da usare: - - - - Templates - Modelli - - - - Show only user defined templates in menu - Mostra solo i modelli definiti dall'utente nel menu - - - - Show only one template for each MIME type - Mostra solo un modello per ogni tipo MIME - - - - Run default application after creation from template - Esegui l'applicazione predefinita dopo la creazione da modello - - - - Programs - Programmi - - - - Terminal emulator: - Emulatore di terminale: - - - Switch user command: - Comando per cambiare utente: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Esempi: "xterm -e %s" per il terminale o "gksu %s" per cambiare utente. -%s = la riga di comando da eseguire con il terminal o con su. - - - Archiver integration: - Integrazione con gli archivi: - - - - Use SI decimal prefixes instead of IEC binary prefixes - Usa i prefissi decimali del SI invece di quelli binari dello IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_ja.ts b/pcmanfm/translations/pcmanfm-qt_ja.ts deleted file mode 100644 index 60fbe78..0000000 --- a/pcmanfm/translations/pcmanfm-qt_ja.ts +++ /dev/null @@ -1,1403 +0,0 @@ - - - - - AboutDialog - - - About - 情報 - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - 軽量なファイルマネージャー - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - - このプログラムはフリーソフトウェアです。 -あなたはこれを、フリーソフトウェア財団によって発行された -GNU 一般公衆利用許諾契約書(バージョン2か、希望によっては -それ以降のバージョンのうちどれか)の定める条件の下で -再頒布または改変することができます。 - - このプログラムは有用であることを願って頒布されますが、 -*全くの無保証* です。 -商業可能性の保証や特定の目的への適合性は、 -言外に示されたものも含め全く存在しません。 -詳しくはGNU 一般公衆利用許諾契約書をご覧ください。 - - あなたはこのプログラムとともに、 -GNU 一般公衆利用許諾契約書の複製物を1部 -受け取ったはずです。もし受け取っていなければ、 -フリーソフトウェア財団まで請求してください。 -(宛先は the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.) - - - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - プログラム作成: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - 作者 - - - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - - このプログラムはフリーソフトウェアです。 -あなたはこれを、フリーソフトウェア財団によって発行された -GNU 一般公衆利用許諾契約書(バージョン2か、希望によっては -それ以降のバージョンのうちどれか)の定める条件の下で -再頒布または改変することができます。 - - このプログラムは有用であることを願って頒布されますが、 -*全くの無保証* です。 -商業可能性の保証や特定の目的への適合性は、 -言外に示されたものも含め全く存在しません。 -詳しくはGNU 一般公衆利用許諾契約書をご覧ください。 - - あなたはこのプログラムとともに、 -GNU 一般公衆利用許諾契約書の複製物を1部 -受け取ったはずです。もし受け取っていなければ、 -フリーソフトウェア財団まで請求してください。 -(宛先は the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.) - - - - License - ライセンス - - - - AutoRunDialog - - - Removable medium is inserted - リムーバブルメディアが接続されました - - - - <b>Removable medium is inserted</b> - <b>リムーバブルメディアが接続されました</b> - - - - Type of medium: - メディアの種類: - - - - Detecting... - 検出中... - - - - Please select the action you want to perform: - 実行させる処理を選んでください - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - 画像ファイル - - - - Folder path - - - - - &Browse - 参照(&B) - - - - DesktopPreferencesDialog - - - Desktop Preferences - デスクトップの設定 - - - - Background - 背景 - - - - Wallpaper mode: - 壁紙のモード: - - - - Wallpaper image file: - 壁紙の画像ファイル: - - - - Select background color: - 背景色を選択: - - - - Image file - 画像ファイル - - - - Image file path - 画像ファイルのパス - - - - &Browse - 参照(&B) - - - - Label Text - ラベルテキスト - - - - Select text color: - 文字色を選択 - - - - Select shadow color: - 影の色を選択: - - - - Select font: - フォントを選択 - - - - General - 一般 - - - - Window Manager - - - - - Show menus provided by window managers when desktop is clicked - デスクトップのクリック時にウインドウマネージャーのメニューを表示 - - - - Advanced - 高度 - - - - MainWindow - - - File Manager - ファイルマネージャー - - - - Go Up - 上へ - - - - Alt+Up - Alt+Up - - - Home - ホーム - - - - Alt+Home - Alt+Home - - - - Reload - 再読込み - - - - F5 - F5 - - - - &Home - - - - - &Reload - 再読込み(&R) - - - - Go - 開く - - - - Quit - 終了 - - - - &About - 情報(&A) - - - - New Window - 新しいウインドウ - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - 隠しファイルを表示(&H) - - - - Ctrl+H - Ctrl+H - - - - &Computer - コンピューター(&C) - - - - &Trash - ゴミ箱(&T) - - - - &Network - ネットワーク(&N) - - - - &Desktop - デスクトップ(&D) - - - - &Add to Bookmarks - ブックマークに追加(&A) - - - - &Applications - アプリケーション(&A) - - - - Ctrl+X - Ctrl+X - - - - &Copy - コピー(&C) - - - - Ctrl+C - Ctrl+C - - - - &Paste - 貼り付け(&P) - - - - Ctrl+V - Ctrl+V - - - - Select &All - すべてを選択(&A) - - - - Pr&eferences - 設定(&R) - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Invert Selection - 選択を反転(&I) - - - - &Delete - 削除(&D) - - - - &Rename - 名前を変更(&R) - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+A - Ctrl+A - - - - Go &Up - 上へ(&U) - - - - &New Window - 新しいウインドウ(&N) - - - - &Icon View - アイコン表示(&I) - - - - &Compact View - コンパクト表示(&C) - - - - &Detailed List - 詳細リスト(&D) - - - - &Thumbnail View - サムネイル表示(&T) - - - - Cu&t - 切り取り(&T) - - - Ascending - 昇順 - - - Descending - 降順 - - - By File Name - 名前 - - - By Modification Time - 更新日時 - - - By File Type - 種類 - - - By Owner - 所有者 - - - Folder First - フォルダを先に - - - - New &Tab - 新しいタブ(&T) - - - - New Tab - 新しいタブ - - - - Ctrl+T - Ctrl+T - - - - Go &Back - 戻る(&B) - - - - Go Back - 戻る - - - - Alt+Left - Alt+Left - - - - Go &Forward - 進む(&F) - - - - Go Forward - 進む - - - - Alt+Right - Alt+Right - - - - Del - Del - - - - F2 - F2 - - - - C&lose Tab - タブを閉じる(&C) - - - - File &Properties - ファイルのプロパティー(&P) - - - - &Folder Properties - フォルダーのプロパティー(&F) - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - - - - - C&reate New - - - - - &Sorting - ソート(&S) - - - - Main Toolbar - メインツールバー - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Return - - - Case Sensitive - 大文字小文字を区別 - - - By File Size - サイズ - - - Close Window - ウインドウを閉じる - - - - Edit Bookmarks - ブックマークを編集 - - - - Open &Terminal - 端末で開く(&T) - - - - F4 - F4 - - - - Open as &Root - rootで開く(&R) - - - - &Edit Bookmarks - ブックマークを編集 - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - F3 - - - - Filter by string... - - - - - &File - ファイル(&F) - - - - &Help - ヘルプ(&H) - - - - &View - 表示(&V) - - - - &Edit - 編集(&E) - - - - &Bookmarks - ブックマーク(&B) - - - - &Go - 開く(&G) - - - - &Tool - ツール(&T) - - - - PCManFM::Application - - - Name of configuration profile - 設定プロファイルの名前 - - - - PROFILE - PROFILE - - - - Run PCManFM as a daemon - PCManFMをデーモンとして実行 - - - - Quit PCManFM - PCManFMを終了 - - - - Launch desktop manager - デスクトップマネージャーを起動 - - - - Turn off desktop manager if it's running - 実行中のデスクトップマネージャーを終了 - - - - Open desktop preference dialog on the page with the specified name - 特定の名前のページ上でデスクトップ設定ダイアログを開く - - - - - NAME - NAME - - - - Set desktop wallpaper from image FILE - 画像ファイルからデスクトップの壁紙を設定 - - - - FILE - FILE - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - デスクトップの壁紙のモードを設定する。MODE=(color|stretch|fit|center|tile) - - - - MODE - MODE - - - - Open Preferences dialog on the page with the specified name - 特定の名前のページで設定ダイアログを開く - - - - Open new window - 新しいウインドウを開く - - - - Open Find Files utility - ファイル検索ユーティリティーを開く - - - - [FILE1, FILE2,...] - [FILE1, FILE2,...] - - - - Files or directories to open - 開くファイルまたはディレクトリー - - - - - Error - エラー - - - - Terminal emulator is not set. - 端末エミュレーターを未設定です - - - - PCManFM::AutoRunDialog - - - Open in file manager - ファイルマネージャーで開く - - - - Removable Disk - リムーバブルディスク - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - 背景色のみで埋める - - - - Stretch to fill the entire screen - 画面全部に引き伸ばす - - - - Stretch to fit the screen - 画面に合わせて調節 - - - - Center on the screen - 画面の中央に表示 - - - - Tile the image to fill the entire screen - 画面全体に並べる - - - - Image Files - 画像ファイル - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - 現在の場所に固定 - - - - Desktop Preferences - デスクトップ設定 - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - バージョン: %1 - - - - &Move to Trash - ゴミ箱へ移動(&M) - - - - &Delete - 削除(&D) - - - - - Error - エラー - - - - Switch user command is not set. - ユーザー切替コマンドを未設定です - - - Terminal emulator is not set. - 端末エミュレーターを未設定です - - - - PCManFM::PreferencesDialog - - - Icon View - アイコン表示 - - - - Compact Icon View - 小さなアイコン表示 - - - - Thumbnail View - サムネイル表示 - - - - Detailed List View - 詳細なリスト表示 - - - - PCManFM::TabPage - - - Error - エラー - - - - Free space: %1 (Total: %2) - 空き領域: %1 (全体: %2) - - - - %n item(s) - - %n 個のアイテム - - - - - (%n hidden) - - (%n 個の隠しアイテム) - - - - - %1 item(s) selected - %1 個のアイテムを選択 - - - - PCManFM::View - - - Open in New T&ab - 新しいタブを開く(&T) - - - - Open in New Win&dow - 新しいウインドウを開く(&D) - - - - Open in Termina&l - 端末内で開く(&L) - - - - PreferencesDialog - - - Preferences - 設定 - - - - User Interface - ユーザーインターフェース - - - - Behavior - 挙動 - - - - Display - - - - - - Thumbnail - サムネイル - - - - Volume - ボリューム - - - - Advanced - 高度 - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - Icons - アイコン - - - - Size of big icons: - 大きいアイコンの大きさ: - - - - Size of small icons: - 小さいアイコンの大きさ: - - - - Size of thumbnails: - サムネイルの大きさ: - - - - Size of side pane icons: - サイドペインのアイコンの大きさ - - - - Icon theme: - アイコンテーマ: - - - - Window - ウインドウ - - - - Default width of new windows: - 新しいウインドウのデフォルト幅 - - - - Default height of new windows: - 新しいウインドウのデフォルトの高さ - - - - Always show the tab bar - タブバーを常に表示 - - - - Show 'Close' buttons on tabs - 閉じるボタンをタブに表示 - - - - Remember the size of the last closed window - 直前に閉じたウインドウのサイズを記憶 - - - - Browsing - ブラウジング - - - - Open files with single click - シングルクリックでファイルを開く - - - - Delay of auto-selection in single click mode (0 to disable) - シングルクリックモードでの自動選択の遅延時間(0で無効) - - - - Default view mode: - デフォルトの表示モード - - - - sec - - - - - File Operations - ファイル操作 - - - - Confirm before deleting files - ファイルを削除する前に確認 - - - - Move deleted files to "trash bin" instead of erasing from disk. - ディスクから削除せずに"ゴミ箱"へ入れる - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - ホーム - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Show thumbnails of files - ファイルのサムネイルを表示 - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Only show thumbnails for local files - ローカルファイルのみサムネイル表示 - - - - Do not generate thumbnails for image files exceeding this size: - 次のサイズを超える画像ファイルのサムネイルを生成しない: - - - - KB - KB - - - - When removable medium unmounted: - リムーバブルメディアもアンマウントする際に: - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - Close tab containing removable medium - リムーバブルメディアを表示しているタブを閉じる - - - Change folder in the tab to home folder - そのタブのフォルダーをホームフォルダーに移動 - - - - Terminal emulator: - 端末エミュレーター: - - - Do not generate thumbnails for files exceeding this size (KB): - 次のサイズ(KB)を超えるファイルのサムネイルを生成しない: - - - - Auto Mount - 自動マウント - - - - Mount mountable volumes automatically on program startup - プログラム開始時にマウント可能なボリュームをマウントする - - - - Mount removable media automatically when they are inserted - リムーバブルメディアが接続された際に自動的にマウントする - - - - Show available options for removable media when they are inserted - リムーバブルメディアが接続された際に、可能な処理を表示する - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Programs - プログラム - - - Terminal emulator command for directories: - ディレクトリーで実行する端末エミュレーターのコマンド - - - Switch user command: - ユーザーを切り替えるためのコマンド - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - 例: 端末に "xterm -e %s" 、ユーザー切替に "gksu %s" -%s には、端末やsuで実行するコマンドが代入されます - - - Archiver integration: - アーカイバー連係: - - - Terminal emulator command for programs: - プログラムを実行する端末エミュレーターのコマンド: - - - - Use SI decimal prefixes instead of IEC binary prefixes - IEC二進接頭辞の代わりに、SI十進接頭辞を用いる - - - diff --git a/pcmanfm/translations/pcmanfm-qt_lt_LT.ts b/pcmanfm/translations/pcmanfm-qt_lt_LT.ts deleted file mode 100644 index 12254ba..0000000 --- a/pcmanfm/translations/pcmanfm-qt_lt_LT.ts +++ /dev/null @@ -1,1361 +0,0 @@ - - - - - AboutDialog - - - About - Apie - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Lengva failų tvarkyklė - - - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programavo: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - Autoriai - - - PCMan File Manager -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) -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; either version 2 -of the License, or (at your option) any later version. -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. -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan File Manager -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) -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; either version 2 -of the License, or (at your option) any later version. -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. -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - License - Licencija - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - - AutoRunDialog - - - Removable medium is inserted - Įdėta išimama laikmena - - - - <b>Removable medium is inserted</b> - <b>Įdėta išimama laikmena</b> - - - - Type of medium: - Laikmenos tipas: - - - - Detecting... - Aptinkama... - - - - Please select the action you want to perform: - Pasirinkite veiksmą kurį norite atlikti: - - - - DesktopFolder - - - Form - - - - - Desktop - - - - - Desktop folder: - - - - - Image file - Paveikslėlio failas - - - - Folder path - - - - - &Browse - &Naršyti - - - - DesktopPreferencesDialog - - - Desktop Preferences - Darbastalio nustatymai - - - - Background - Fonas - - - - Wallpaper mode: - Fono režimas: - - - - Wallpaper image file: - Fono paveikslėlis: - - - - Select background color: - Pasirinkite fono spalvą: - - - - Image file - Paveikslėlio failas - - - - Image file path - Paveikslėlio kelias - - - - &Browse - &Naršyti - - - - Label Text - Antraštė - - - - Select text color: - Parinkite teksto spalvą: - - - - Select shadow color: - Pasirinkite šešėlio spalvą: - - - - Select font: - Pasirinkite šriftą: - - - - General - Bendra - - - - Advanced - Sudėtingesni - - - - Show menus provided by window managers when desktop is clicked - - - - - Window Manager - - - - - MainWindow - - - File Manager - Failų tvarkyklė - - - - Go Up - Aukštyn - - - - Alt+Up - Alt+Up - - - Home - Home (Namai) - - - - Alt+Home - Alt+Home - - - - Reload - Įkelti iš naujo - - - - F5 - F5 - - - - &Home - - - - - &Reload - Į&kelti iš naujo - - - - Go - Eiti - - - - Quit - Išeiti - - - - &About - &Apie - - - - New Window - Naujas langas - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Rodyti &paslėptus - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Kompiuteris - - - - &Trash - Š&iukšlinė - - - - &Network - &Tinklas - - - - &Desktop - &Darbastalis - - - - &Add to Bookmarks - Į&dėti į žymeles - - - - &Applications - &Programos - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Kopijuoti - - - - Ctrl+C - Ctrl+C - - - - &Paste - Į&klijuoti - - - - Ctrl+V - Ctrl+V - - - - Select &All - Pažymėti &viską - - - - Pr&eferences - &Nustatymai - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Invert Selection - Pasirinkti &atvirkščiai - - - - &Delete - &Pašalinti - - - - &Rename - &Pervadinti - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+A - Ctrl+A - - - - Go &Up - &Aukštyn - - - - &New Window - &Naujas langas - - - - &Icon View - &Piktogramų rodinys - - - - &Compact View - &Glaustas rodinys - - - - &Detailed List - &Detalaus sąrašo vaizdas - - - - &Thumbnail View - &Miniatiūrų rodinys - - - - Cu&t - Iš&kirpti - - - Ascending - Didėjančiai - - - Descending - Mažėjančiai - - - By File Name - Pagal failo vardą - - - By Modification Time - Pagal keitimo datą - - - By File Type - Pagal failo tipą - - - By Owner - Pagal savininką - - - Folder First - Pirmiausia aplankai - - - - New &Tab - Nauja &kortelė - - - - New Tab - Nauja kortelė - - - - Ctrl+T - Ctrl+T - - - - Go &Back - &Atgal - - - - Go Back - Atgal - - - - Alt+Left - Alt+Left - - - - Go &Forward - &Pirmyn - - - - Go Forward - Pirmyn - - - - Alt+Right - Alt+Right - - - - Del - Del - - - - F2 - F2 - - - - C&lose Tab - &Užverti kortelę - - - - File &Properties - Failo &savybės - - - - &Folder Properties - Aplanko sa&vybės - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - - - - - C&reate New - - - - - &Sorting - &Rikiavimas - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Return - - - Case Sensitive - Skirti raidžių dydį - - - By File Size - Pagal failo dydį - - - Close Window - Užverti langą - - - - Edit Bookmarks - Redaguoti žymeles - - - - Open &Terminal - Atverti &terminalą - - - - F4 - F4 - - - - Open as &Root - Atverti &administratoriaus teisėmis - - - - &Edit Bookmarks - &Redaguoti žymeles - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - F3 - - - - Filter by string... - - - - - &File - &Failas - - - - &Help - Ž&inynas - - - - &View - &Rodymas - - - - &Edit - &Taisa - - - - &Bookmarks - Ž&ymelės - - - - &Go - &Eiti - - - - &Tool - Į&rankiai - - - - Main Toolbar - - - - - PCManFM::Application - - - Name of configuration profile - Konfigūracijos profilio pavadinimas - - - - PROFILE - PROFILIS - - - - Run PCManFM as a daemon - Paleisti PCManFM kaip demoną - - - - Quit PCManFM - Užverti PCManFM - - - - Launch desktop manager - Paleisti darbastalio tvarkyklę - - - - Turn off desktop manager if it's running - Išjungti darbastalio tvarkyklę (jei ji veikia) - - - - Open desktop preference dialog on the page with the specified name - Atverti nustatymų dialogą nurodytame puslapyje - - - - - NAME - PAVADINIMAS - - - - Set desktop wallpaper from image FILE - Nustatyti darbastalio foną iš paveikslėlio FAILO - - - - FILE - FAILAS - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Darbastalio fono režimas. REŽIMAS=(color|stretch|fit|center|tile) - - - - MODE - REŽIMAS - - - - Open Preferences dialog on the page with the specified name - Atverti nustatymų dialogą nurodytame puslapyje - - - - Open new window - Atverti naują langą - - - - Open Find Files utility - Atverti failų paieškos įrankį - - - - [FILE1, FILE2,...] - [FAILAS1, FAILAS2,...] - - - - - Error - Klaida - - - - Terminal emulator is not set. - Nenustatytas terminalo emuliatorius. - - - - Files or directories to open - - - - - PCManFM::AutoRunDialog - - - Open in file manager - Atverti failų tvarkyklėje - - - - Removable Disk - Išimamas diskas - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Užpildyti tik fono spalva - - - - Stretch to fill the entire screen - Ištempti per visą ekraną - - - - Stretch to fit the screen - Sutalpinti ekrane - - - - Center on the screen - Rodyti ekrano centre - - - - Tile the image to fill the entire screen - Užpildyti ekraną paveikslėliais - - - - Image Files - Paveikslėlių failai - - - - PCManFM::DesktopWindow - - - Desktop Preferences - Darbastalio nustatymai - - - - Stic&k to Current Position - - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - &Move to Trash - &Perkelti į šiukšliadėžę - - - - &Delete - &Pašalinti - - - - - Error - Klaida - - - - Switch user command is not set. - Nenustatyta naudotojo perjungimo komanda. - - - Terminal emulator is not set. - Nenustatytas terminalo emuliatorius. - - - - Version: %1 - - - - - PCManFM::PreferencesDialog - - - Icon View - Piktogramų peržiūra - - - - Compact Icon View - Kompaktiškas piktogramų rodinys - - - - Thumbnail View - Miniatiūrų rodinys - - - - Detailed List View - Išsamus sąrašas - - - - PCManFM::TabPage - - - Free space: %1 (Total: %2) - Laisvos vietos: %1 (Iš viso: %2 ) - - - - %n item(s) - - %n elementas(-ai) - - - - - (%n hidden) - - (%n paslėptas) - - - - - Error - Klaida - - - - %1 item(s) selected - - - - - PCManFM::View - - - Open in New T&ab - - - - - Open in New Win&dow - - - - - Open in Termina&l - - - - - PreferencesDialog - - - Preferences - Nustatymai - - - - User Interface - Naudotojo sąsaja - - - - Behavior - Elgsena - - - - Display - - - - - - Thumbnail - Miniatiūra - - - - Volume - Tomas - - - - Advanced - Papildomi - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - Icons - Piktogramos - - - - Size of big icons: - Didelių piktogramų dydis: - - - - Size of small icons: - Mažų piktogramų dydis: - - - - Size of thumbnails: - Miniatiūrų dydis: - - - - Size of side pane icons: - Šoninio skydelio piktogramų dydis: - - - - Icon theme: - Piktogramų tema: - - - - Window - Langas - - - - Default width of new windows: - Numatytasis naujų langų plotis: - - - - Default height of new windows: - Numatytasis naujų langų aukštis: - - - - Always show the tab bar - Visada rodyti kortelių juostą - - - - Show 'Close' buttons on tabs - Ant kortelių rodyti uždarymo mygtukus - - - - Browsing - Naršymas - - - - Open files with single click - Atverti failus vienu mygtuko paspaudimu - - - - Default view mode: - Numatytas rodinys: - - - - File Operations - Failų operacijos - - - - Confirm before deleting files - Patvirtinti prieš ištrinant failus - - - - Move deleted files to "trash bin" instead of erasing from disk. - Ištrintus failus perkelti į šiukšlinę, o ne ištrinti iš disko. - - - - Show thumbnails of files - Rodyti failų miniatiūras - - - - Only show thumbnails for local files - Miniatiūras rodyti tik vietiniams failams - - - Do not generate thumbnails for files exceeding this size (KB): - Negeneruoti miniatiūrų, jei failas didesnis nei (KB): - - - - Auto Mount - Automatinis prijungimas - - - - Mount mountable volumes automatically on program startup - Paleidžiant programą automatiškai prijungti prijungiamus tomus - - - - Mount removable media automatically when they are inserted - Prijungti išimamas laikmenas automatiškai jas įdėjus - - - - Show available options for removable media when they are inserted - Prijungus išimamą laikmeną rodyti galimus veiksmus - - - - Programs - Programos - - - Terminal emulator command for directories: - Terminalo emuliatoriaus komanda aplankams: - - - Switch user command: - Naudotojo perjungimo komanda: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Pavyzdys: „xterm -e %s“ terminalui ar „gksu %s“ naudotojo perjungimui. -%s = komandinė eilutė, kurią jūs norite vykdyti kartu su terminalu arba „su“. - - - Archiver integration: - Archyvatoriaus integracija: - - - Terminal emulator command for programs: - Terminalo emuliatoriaus komanda programoms: - - - - Use SI decimal prefixes instead of IEC binary prefixes - Naudoti SI dešimtainius matmenis vietoj IEC dvejetainių matmenų - - - - Do not generate thumbnails for image files exceeding this size: - - - - - KB - - - - - Terminal emulator: - - - - - When removable medium unmounted: - - - - - Delay of auto-selection in single click mode (0 to disable) - - - - - sec - - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Remember the size of the last closed window - - - - - Show in places - - - - - Home - Home (Namai) - - - - Desktop - - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - diff --git a/pcmanfm/translations/pcmanfm-qt_pl.ts b/pcmanfm/translations/pcmanfm-qt_pl.ts deleted file mode 100644 index 05eb815..0000000 --- a/pcmanfm/translations/pcmanfm-qt_pl.ts +++ /dev/null @@ -1,1456 +0,0 @@ - - - - - AboutDialog - - - About - O programie - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Lekki menedżer plików - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programowanie: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Authors - Autorzy - - - - License - Licencja - - - - AutoRunDialog - - - Removable medium is inserted - Wykryto nośnik wymienny - - - - <b>Removable medium is inserted</b> - <b>Wykryto nośnik wymienny</b> - - - - Type of medium: - Typ nośnika: - - - - Detecting... - Wykrywanie... - - - - Please select the action you want to perform: - Wybierz działanie, które chcesz wykonać: - - - - DesktopFolder - - - Form - - - - - Desktop - Pulpit - - - - Desktop folder: - Katalog Pulpitu: - - - - Image file - Plik obrazka - - - - Folder path - Ścieżka katalogu - - - - &Browse - &Wybierz - - - - DesktopPreferencesDialog - - - Desktop Preferences - Ustawienia pulpitu - - - - Background - Tło - - - - Wallpaper mode: - Tryb: - - - - Wallpaper image file: - Obraz tła: - - - - Select background color: - Kolor tła: - - - - Image file - Plik obrazka - - - - Image file path - Ścieżka obrazka - - - - &Browse - &Wybierz - - - - Label Text - Tekst - - - - Select text color: - Kolor tekstu: - - - - Select shadow color: - Kolor cienia: - - - - Select font: - Czcionka: - - - - General - Wygląd - - - - Window Manager - Menedżer Okien - - - - Show menus provided by window managers when desktop is clicked - Wyświetlanie menu menedżera okien po kliknięciu na pulpicie - - - Desktop - Pulpit - - - Desktop folder: - Katalog Pulpitu: - - - Folder path - Ścieżka katalogu - - - - Advanced - Zaawansowane - - - - FindFilesDialog - - Find Files - Znajdź pliki - - - Name/Location - Nazwa/Lokalizacja - - - File name patterns - Wzorce nazwy pliku - - - Pattern: - Wzorzec: - - - Case insensitive - Ignoruj wielkość liter - - - Use regular expression - Użyj wyrażeń regularnych - - - Places to search - Szukaj w - - - Add - Dodaj - - - Remove - Usuń - - - Search in sub directories - Szukaj w podkatalogach - - - Search hidden files - Szukaj wśród ukrytych plików - - - File Type - Typ pliku - - - Only search for files of following types: - Szukaj tylko plików o podanym typie: - - - Text files - Pliki tekstowe - - - Image files - Obrazy - - - Audio files - Pliki dźwiękowe - - - Video files - Pliki wideo - - - Documents - Dokumenty - - - Content - Zawartość - - - File contains - Pliki zawierające - - - Properties - Ustawienia - - - File Size - Rozmiar pliku - - - Bigger than: - Większy niż: - - - Smaller than: - Mniejszy niż: - - - Last Modified Time - Czas ostatniej modyfikacji - - - Earlier than: - Wcześniejszy niż: - - - Later than: - Późniejszy niż: - - - - MainWindow - - - File Manager - Menedżer plików - - - - Go Up - Katalog nadrzędny - - - - Alt+Up - Alt+Góra - - - Home - Katalog użytkownika - - - - Alt+Home - Alt+Home - - - - Reload - Odśwież - - - - F5 - F5 - - - - &Home - Katalog &użytkownika - - - - &Reload - &Odśwież - - - - Go - Przejdź - - - - Quit - Zamknij - - - - &About - &O programie - - - - New Window - Nowe okno - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Wyświetl &ukryte pliki - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Komputer - - - - &Trash - Ko&sz - - - - &Network - &Sieć - - - - &Desktop - &Pulpit - - - - &Add to Bookmarks - &Dodaj zakładkę - - - - &Applications - P&rogramy - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Kopiuj - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Wklej - - - - Ctrl+V - Ctrl+V - - - - Select &All - Zazn&acz wszystko - - - - Pr&eferences - Pr&eferencje - - - - &Ascending - &Rosnąco - - - - &Descending - &Malejąco - - - - &By File Name - &Nazwa - - - - By &Modification Time - Data &modyfikacji - - - - By File &Type - &Typ pliku - - - - By &Owner - W&łaściciel - - - - &Folder First - Najpierw &katalogi - - - - &Invert Selection - &Odwróć zaznaczenie - - - - &Delete - &Usuń - - - - &Rename - &Zmień nazwę - - - - &Case Sensitive - Uwzględniaj wielkość &liter - - - - By File &Size - Według &rozmiaru - - - - &Close Window - &Zamknij okno - - - - Ctrl+A - Ctrl+A - - - - Go &Up - Do &góry - - - - &New Window - &Nowe okno - - - - &Icon View - &Ikony - - - - &Compact View - Lista &zwarta - - - - &Detailed List - Lista &szczegółowa - - - - &Thumbnail View - &Miniatury - - - - Cu&t - W&ytnij - - - Ascending - Rosnąco - - - Descending - Malejąco - - - By File Name - Według nazwy - - - By Modification Time - Według czasu modyfikacji - - - By File Type - Według typu - - - By Owner - Według właściciela - - - Folder First - Najpierw katalogi - - - - New &Tab - Nowa &karta - - - - New Tab - Nowa karta - - - - Ctrl+T - Ctrl+T - - - - Go &Back - &Poprzedni katalog - - - - Go Back - Poprzedni katalog - - - - Alt+Left - Alt+Lewo - - - - Go &Forward - &Następny katalog - - - - Go Forward - Następny katalog - - - - Alt+Right - Alt+Prawo - - - - Del - Del - - - - F2 - F2 - - - - C&lose Tab - &Zamknij kartę - - - - File &Properties - Właściwości &pliku - - - - &Folder Properties - Właściwości &katalogu - - - Folder - Katalog - - - - Ctrl+Shift+N - Ctrl+Shift+N - - - Blank File - Pusty plik - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - C&reate New - &Nowy - - - - &Sorting - &Uszereguj według - - - - Main Toolbar - Pasek narzędziowy - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Return - - - Case Sensitive - Uwzględniaj wielkość liter - - - By File Size - Według rozmiaru - - - Close Window - Zamknij okno - - - - Edit Bookmarks - Edytuj zakładki - - - - Open &Terminal - Otwórz w &terminalu - - - - F4 - F4 - - - - Open as &Root - Otwórz jako &Root - - - - &Edit Bookmarks - Edytuj &Zakładki - - - - &Folder - &Katalog - - - - &Blank File - &Pusty plik - - - - &Find Files - &Znajdź pliki - - - - F3 - F3 - - - - Filter - Filtruj - - - - Filter by string... - Wpisz część nazwy pliku... - - - - &File - &Plik - - - - &Help - Po&moc - - - - &View - &Widok - - - - &Edit - &Edycja - - - - &Bookmarks - &Zakładki - - - - &Go - P&rzejdź - - - - &Tool - &Narzędzia - - - - PCManFM::Application - - - Name of configuration profile - Nazwa profilu konfiguracji - - - - PROFILE - PROFIL - - - - Run PCManFM as a daemon - Uruchom PCManFM jako daemon - - - - Quit PCManFM - Zakończ PCManFM - - - - Launch desktop manager - Uruchom menedżera pulpitu - - - - Turn off desktop manager if it's running - Wyłądż menedżera pulpitu jeżeli jest uruchomiony - - - - Open desktop preference dialog on the page with the specified name - - - - - - NAME - NAZWA - - - - Open new window - Otwórz nowe okno - - - - Open Find Files utility - Otwórz narzędzie wyszukiwania - - - - Set desktop wallpaper from image FILE - Ustaw tło pulpitu z obrazka PLIK - - - - FILE - PLIK - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Ustaw tryb tapety pulpitu. TRYB=(color|stretch|fit|center|tile) - - - - MODE - TRYB - - - - Open Preferences dialog on the page with the specified name - - - - - Files or directories to open - Pliki lub katalogi do otwarcia - - - - [FILE1, FILE2,...] - [PLIK1, PLIK2,...] - - - - - Error - Błąd - - - - Terminal emulator is not set. - Nie ustawiono emulatora terminala. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Otwórz w menedżerze plików - - - - Removable Disk - Nośnik wymienny - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Wypełnij tylko kolorem - - - - Stretch to fill the entire screen - Rozciągnij do rozmiaru ekranu - - - - Stretch to fit the screen - Dopasuj do rozmiaru ekranu - - - - Center on the screen - Wyśrodkuj - - - - Tile the image to fill the entire screen - Sąsiadująco - - - - Image Files - Pliki obrazków - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - Przyp&nij do aktualnej pozycji - - - - Desktop Preferences - Ustawienia pulpitu - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - Usuń tekst (Ctrl+K) - - - - Version: %1 - Wersja: %1 - - - - &Move to Trash - &Przenieś do kosza - - - - &Delete - &Usuń - - - - - Error - Błąd - - - - Switch user command is not set. - Nie ustawiono polecenia do przełączania użytkowników. - - - - PCManFM::PreferencesDialog - - - Icon View - Ikony - - - - Compact Icon View - Lista zwarta - - - - Thumbnail View - Miniatury - - - - Detailed List View - Lista szczegółowa - - - - PCManFM::TabPage - - - Error - Błąd - - - - Free space: %1 (Total: %2) - Wolna przestrzeń: %1 (całkowita: %2) - - - - %n item(s) - - %n elementów - - - - - - - (%n hidden) - - (%n ukrytych) - - - - - - - %1 item(s) selected - Zaznaczono %1 elementy - - - - PCManFM::View - - - Open in New T&ab - Otwórz w nowej &karcie - - - - Open in New Win&dow - Otwórz w nowym &oknie - - - - Open in Termina&l - Otwórz w &terminalu - - - - PreferencesDialog - - - Preferences - Preferencje - - - - User Interface - Wyświetlanie - - - - Behavior - Zachowanie - - - - - Thumbnail - Miniatury - - - - Volume - Wolumen - - - - Advanced - Zaawansowane - - - - Icons - Ikony - - - - Size of big icons: - Rozmiar dużych ikon: - - - - Size of small icons: - Rozmiar małych ikon: - - - - Size of thumbnails: - Rozmiar miniatur: - - - - Size of side pane icons: - Rozmiar ikon panelu bocznego: - - - - Icon theme: - Motyw ikon: - - - - Window - Okno - - - - Default width of new windows: - Domyślna szerokość nowych okien: - - - - Default height of new windows: - Domyślna wysokość nowych okien: - - - - Always show the tab bar - Zawsze pokazuj pasek kart - - - - Show 'Close' buttons on tabs - Pokaż przycisk 'Zamknij' na kartach - - - - Remember the size of the last closed window - Pamiętaj rozmiar ostatnio zamkniętego okna - - - - Browsing - Przeglądanie - - - - Open files with single click - Otwórz pliki pojedynczym kliknięciem - - - - Delay of auto-selection in single click mode (0 to disable) - Opóźnienie zaznaczania (0 aby wyłączyć) - - - - Default view mode: - Domyślny tryb widoku: - - - - sec - s - - - - File Operations - Operacje na plikach - - - - Confirm before deleting files - Potwierdź przed usunięciem plików - - - - Move deleted files to "trash bin" instead of erasing from disk. - Przenoszenie plików do "Kosza" zamiast usuwania z dysku - - - - Show thumbnails of files - Wyświetl miniatury zawartości plików - - - - Only show thumbnails for local files - Wyświetl miniatury zawartości tylko lokalnych plików - - - - Display - Wygląd - - - - Bookmarks: - Zakładki: - - - - Open in current tab - Otwórz w aktualnej zakładce - - - - Open in new tab - Otwórz w nowej zakładce - - - - Open in new window - Otwórz w nowym oknie - - - - Erase files on removable media instead of "trash can" creation - Usuwaj pliki na urządzeniach wymiennych zamiast przenosić je do kosza - - - - Confirm before moving files into "trash can" - Potwierdź przed przeniesieniem plików do "Kosza" - - - - Don't ask options on launch executable file - Nie pytaj o parametry przy uruchamianiu plików wykonywalnych - - - - User interface - Wyświetlanie - - - - Treat backup files as hidden - Traktuj pliki kopii zapasowych jako ukryte - - - - Always show full file names - Zawsze wyświetlaj pełne nazwy plików - - - - Show icons of hidden files shadowed - Przytłumione ikony dla plików ukrytych - - - - Show in places - Pokaż w położeniach - - - - Home - Katalog użytkownika - - - - Desktop - Pulpit - - - - Trash can - Kosz - - - - Computer - Komputer - - - - Applications - Aplikacje - - - - Devices - Urządzenia - - - - Network - Sieć - - - - Do not generate thumbnails for image files exceeding this size: - Nie generuj miniatur dla plików większych niż: - - - - KB - KB - - - - Auto Mount - Automatyczne montowanie - - - - Mount mountable volumes automatically on program startup - Montowanie wolumenów podczas uruchamiania programu - - - - Mount removable media automatically when they are inserted - Montowanie nośników wymiennych po wsunięciu - - - - Show available options for removable media when they are inserted - Wyświetlanie możliwych czynności po wsunięciu nośnika wymiennego - - - - When removable medium unmounted: - Działania po odmontowaniu nośnika wymiennego: - - - - Close &tab containing removable medium - Zamknij &kartę nośnika wymiennego - - - - Chan&ge folder in the tab to home folder - Z&mień katalog w karcie na katalog użytkownika - - - - Switch &user command: - Polecenie przełączania &użytkownika: - - - - Archiver in&tegration: - Menedżer &archiwów: - - - - Templates - Szablony - - - - Show only user defined templates in menu - Pokazuj w menu tylko szablony zdefiniowane przez użytkownika - - - - Show only one template for each MIME type - Pokazuj tylko jeden szablon dla każdego typu MIME - - - - Run default application after creation from template - Uruchom domyślną aplikację po utworzeniu pliku z szablonu - - - Close tab containing removable medium - Zamknięcie karty - - - Change folder in the tab to home folder - Przejście do katalogu użytkownika - - - - Programs - Programy - - - - Terminal emulator: - Emulator terminala: - - - Switch user command: - Przełączanie użytkowników: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Przykład: "xterm -e %s" dla terminala lub "gksu %s" dla przełączania użytkownika. -%s = polecenie, które chcesz wykonać za pomocą terminala lub su. - - - Archiver integration: - Menedżer archiwów: - - - - Use SI decimal prefixes instead of IEC binary prefixes - Używanie dziesiętnych prefiksów SI zamiast binarnych IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_pt.ts b/pcmanfm/translations/pcmanfm-qt_pt.ts deleted file mode 100644 index 42683d3..0000000 --- a/pcmanfm/translations/pcmanfm-qt_pt.ts +++ /dev/null @@ -1,1408 +0,0 @@ - - - - - AboutDialog - - - About - Sobre - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Gestor de ficheiros - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Gestor de ficheiros PCMan - -Direitos de autor (C) 2009 - 2015 洪任諭 (Hong Jen Yee) - -Esta aplicação é um programa livre. Pode distribuir e/ou modificar a aplicação -nos termos da GNU General Public License, conforme pubilcada -pela Free Software Foundation; tanto na sua versão 2 ou, por opção, -qualquer versão mais recente. - -Este programa é disponibilizado na expetativa de ser útil. mas não possui -qualquer garantia. Nem mesmo a garantia implícita de comercialização -ou adaptação a algum caso em concreto. Consulte a GNU General Public License -para mais detalhes. - -Deve ter recebido uma cópia da GNU General Public License com o programa -Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - <html><head/><body><p><a href="http://pcmanfm.sourceforge.net/"><span style=" text-decoration: underline; color:#0000ff;">http://pcmanfm.sourceforge.net/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Desenvolvido por: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - Authors - Autores - - - PCMan File Manager - -Copyright (C) 2009 - 2013 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Gestor de ficheiros PCMan - -Direitos de autor (C) 2009 - 2015 洪任諭 (Hong Jen Yee) - -Esta aplicação é um programa livre. Pode distribuir e/ou modifcar a aplicação -segundo os termos da GNU General Public License, conforme pubilcada -pela Free Software Foundation; tanto na sua versão 2 ou, por opção, -qualquer versão mais recente. - -Este programa é disponibilizado na expetativa de ser útil. mas não possui -qualquer garantia. Nem mesmo a garantia implícita de comercialização -ou adaptação a algum caso em concreto. Consulte a GNU General Public License -para mais detalhes. - -Deve ter recebido uma cópia da GNU General Public License com o programa -Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - License - Licença - - - - AutoRunDialog - - - Removable medium is inserted - Disco amovível inserido - - - - <b>Removable medium is inserted</b> - <b>Disco amovível inserido</b> - - - - Type of medium: - Tipo de disco: - - - - Detecting... - A detetar... - - - - Please select the action you want to perform: - Escolha a ação que pretende executar: - - - - DesktopFolder - - - Form - - - - - Desktop - Área de trabalho - - - - Desktop folder: - Pasta da área de trabalho: - - - - Image file - Ficheiro de imagem - - - - Folder path - Caminho da pasta - - - - &Browse - E&xplorar - - - - DesktopPreferencesDialog - - - Desktop Preferences - Preferências da área de trabalho - - - - Background - Fundo - - - - Wallpaper mode: - Modo de papel de parede: - - - - Wallpaper image file: - Ficheiro do papel de parede: - - - - Select background color: - Escolha a cor de fundo: - - - - Image file - Ficheiro de imagem - - - - Image file path - Caminho do ficheiro de imagem - - - - &Browse - E&xplorar - - - - Label Text - Texto - - - - Select text color: - Escolha a cor do texto: - - - - Select shadow color: - Escolha a cor da sombra: - - - - Select font: - Escolha o tipo de letra: - - - - General - Geral - - - - Window Manager - Gestor de janelas - - - - Show menus provided by window managers when desktop is clicked - Mostrar menus disponibilizados pelo gestor de janelas ao clicar na área de trabalho - - - Desktop - Área de trabalho - - - Desktop folder: - Pasta da área de trabalho: - - - Folder path - Caminho da pasta - - - - Advanced - Avançado - - - - MainWindow - - - File Manager - Gestor de ficheiros - - - - Go Up - Subir - - - - Alt+Up - Alt+Up - - - Home - Pasta pessoal - - - - Alt+Home - Alt+Home - - - - Reload - Recarregar - - - - F5 - F5 - - - - &Home - - - - - &Reload - &Recarregar - - - - Go - Ir - - - - Quit - Sair - - - - &About - &Sobre - - - - New Window - Nova janela - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Mostrar &ocultos - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Computador - - - - &Trash - &Lixo - - - - &Network - &Rede - - - - &Desktop - Área &de trabalho - - - - &Add to Bookmarks - &Adicionar aos marcadores - - - - &Applications - &Aplicações - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Copiar - - - - Ctrl+C - Ctrl+C - - - - &Paste - Co&lar - - - - Ctrl+V - Ctrl+V - - - - Select &All - Selecion&ar tudo - - - - - Pr&eferences - Pr&eferências - - - - &Ascending - - - - - &Descending - - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - &Invert Selection - &Inverter seleção - - - - &Delete - E&liminar - - - - &Rename - Muda&r nome - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+A - Ctrl+A - - - - Go &Up - S&ubir - - - - &New Window - &Nova janela - - - - &Icon View - V&ista de ícones - - - - &Compact View - Vista &compacta - - - - &Detailed List - Lista &detalhada - - - - &Thumbnail View - Vista de minia&turas - - - - Cu&t - Cor&tar - - - Ascending - Ascendente - - - Descending - Descendente - - - By File Name - Por nome de ficheiro - - - By Modification Time - Por data de modificação - - - By File Type - Por tipo de ficheiro - - - By Owner - Por dono - - - Folder First - Pastas no início - - - - New &Tab - Novo &separador - - - - New Tab - Novo separador - - - - Ctrl+T - Ctrl+T - - - - Go &Back - &Recuar - - - - Go Back - Recuar - - - - Alt+Left - Alt+Left - - - - Go &Forward - &Avançar - - - - Go Forward - Avançar - - - - Alt+Right - Alt+Right - - - - Del - Del - - - - F2 - F2 - - - - C&lose Tab - &Fechar separador - - - - File &Properties - &Propriedades do ficheiro - - - - &Folder Properties - Propried&ades da pasta - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - - - - - C&reate New - - - - - &Sorting - &Ordenação - - - - Main Toolbar - Barra principal - - - - Ctrl+W - Ctrl+W - - - - Alt+Return - Alt+Return - - - Case Sensitive - Diferenciar maiúsculas/minúsculas - - - By File Size - Por tamanho de ficheiro - - - Close Window - Fechar janela - - - - Edit Bookmarks - Editar marcadores - - - - Open &Terminal - Abrir &terminal - - - - F4 - F4 - - - - Open as &Root - Abrir como &root - - - - &Edit Bookmarks - &Editar marcadores - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - F3 - - - - Filter by string... - - - - - &File - &Ficheiro - - - - &Help - Aj&uda - - - - &View - &Ver - - - - &Edit - &Editar - - - - &Bookmarks - &Marcadores - - - - &Go - &Ir - - - - &Tool - Ferramen&tas - - - - PCManFM::Application - - - Name of configuration profile - Nome do perfil - - - - PROFILE - Perfil - - - - Run PCManFM as a daemon - Executar PCManFM como serviço - - - - Quit PCManFM - Fechar PCManFM - - - - Launch desktop manager - Abrir gestor da área de trabalho - - - - Turn off desktop manager if it's running - Fechar gestor da área de trabalho se estiver em execução - - - - Open desktop preference dialog on the page with the specified name - Abrir diálogo de preferências da área de trabalho na página especificada - - - - - NAME - Nome - - - - Set desktop wallpaper from image FILE - Definir papel de parede com base num ficheiro - - - - FILE - Ficheiro - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Definir modo do papel de parede. Modo =(color|stretch|fit|center|tile) - - - - MODE - Modo - - - - Open Preferences dialog on the page with the specified name - Abrir diálogo de preferências na página especificada - - - - Open new window - Abrir nova janela - - - - Open Find Files utility - Abrir utilitário de procura de ficheiros - - - - [FILE1, FILE2,...] - [Ficheiro1, ficheiro2,...] - - - - Files or directories to open - Ficheiros ou diretórios a abrir - - - - - Error - Erro - - - - Terminal emulator is not set. - O emulador de terminal não está definido. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Abrir no gestor de ficheiros - - - - Removable Disk - Disco amovível - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Preencher apenas com a cor de fundo - - - - Stretch to fill the entire screen - Esticar para preencher o ecrã - - - - Stretch to fit the screen - Esticar para ajustar ao ecrã - - - - Center on the screen - Centrar no ecrã - - - - Tile the image to fill the entire screen - Imagens em mosaico para preencher o ecrã - - - - Image Files - Ficheiros de imagem - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - Fi&xar na posiçao atual - - - - Desktop Preferences - Preferências da área de trabalho - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - - - - - Version: %1 - Versão: %1 - - - - &Move to Trash - &Mover para o lixo - - - - &Delete - &Eliminar - - - - - Error - Erro - - - - Switch user command is not set. - O comando para trocar de utilizador não está definido. - - - Terminal emulator is not set. - O emulador de terminal não está definido. - - - - PCManFM::PreferencesDialog - - - Icon View - Vista de ícones - - - - Compact Icon View - Vista compacta de ícones - - - - Thumbnail View - Vista de miniaturas - - - - Detailed List View - Lista detalhada - - - - PCManFM::TabPage - - - Error - Erro - - - - Free space: %1 (Total: %2) - Espaço livre: %1 (Total: %2) - - - - %n item(s) - - %n item - %n itens - - - - - (%n hidden) - - (%n oculto) - (%n ocultos) - - - - - %1 item(s) selected - %1 itens selecionados - - - - PCManFM::View - - - Open in New T&ab - Abrir em novo sep&arador - - - - Open in New Win&dow - Abrir em &nova janela - - - - Open in Termina&l - Abrir no termina&l - - - - PreferencesDialog - - - Preferences - Preferências - - - - User Interface - Interface - - - - Behavior - Comportamento - - - - Display - - - - - - Thumbnail - Miniaturas - - - - Volume - Volume - - - - Advanced - Avançado - - - - Bookmarks: - - - - - Open in current tab - - - - - Open in new tab - - - - - Open in new window - - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - Icons - Ícones - - - - Size of big icons: - Tamanho dos ícones grandes: - - - - Size of small icons: - Tamanho dos ícones pequenos: - - - - Size of thumbnails: - Tamanho das miniaturas: - - - - Size of side pane icons: - Tamanho dos ícones no painel lateral: - - - - Icon theme: - Tema de ícones: - - - - Window - Janela - - - - Default width of new windows: - Largura para as novas janelas: - - - - Default height of new windows: - Altura para as novas janeas: - - - - Always show the tab bar - Mostrar sempre barra de separadores - - - - Show 'Close' buttons on tabs - Mostrar botão "Fechar" nos separadores - - - - Remember the size of the last closed window - Memorizar tamanho da última janela fechada - - - - Browsing - Navegação - - - - Open files with single click - Abrir ficheiros com um clique - - - - Delay of auto-selection in single click mode (0 to disable) - Atraso para seleçao automática no modo de um clique (0 para desativar) - - - - Default view mode: - Modo de visualização: - - - - sec - seg - - - - File Operations - Operações de ficheiros - - - - Confirm before deleting files - Confirmar antes de eliminar - - - - Move deleted files to "trash bin" instead of erasing from disk. - Mover ficheiros para o lixo em vez de os eliminar do disco. - - - - User interface - - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - Pasta pessoal - - - - Desktop - Área de trabalho - - - - Trash can - - - - - Computer - - - - - Applications - - - - - Devices - - - - - Network - - - - - Show thumbnails of files - Mostrar miniaturas dos ficheiros - - - - Templates - - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Only show thumbnails for local files - Mostrar apenas para ficheiros locais - - - - Do not generate thumbnails for image files exceeding this size: - Não gerar miniaturas para as imagens que excedam este tamanho: - - - - KB - KB - - - - When removable medium unmounted: - Ao desmontar um disco amovível: - - - - Switch &user command: - - - - - Archiver in&tegration: - - - - Close tab containing removable medium - Fechar o separador que contém o disco - - - Change folder in the tab to home folder - Mudar o separador para a pasta pessoal - - - - Terminal emulator: - Emulador de terminal: - - - Do not generate thumbnails for files exceeding this size (KB): - Não gerar miniaturas para os ficheiros que excedam (KB): - - - - Auto Mount - Montar automaticamente - - - - Mount mountable volumes automatically on program startup - Montar discos amovíveis ao iniciar a aplicação - - - - Mount removable media automatically when they are inserted - Montar discos amovíveis ao inserir - - - - Show available options for removable media when they are inserted - Mostrar opções possíveis para os discos assim que forem inseridos - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Programs - Programas - - - Terminal emulator command for directories: - Comando do terminal para os diretórios: - - - Switch user command: - Comando para trocar de utilizador: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Exemplo: "xterm -e %s" para terminal ou "gksu %s" para trocar de utilizador. -%s = a linha de comandos a executar no terminal ou com o comando su. - - - Archiver integration: - Integração de arquivadores: - - - Terminal emulator command for programs: - Comando do terminal para os programas: - - - - Use SI decimal prefixes instead of IEC binary prefixes - Utilizar prefixos decimais SI em vez dos prefixos binários IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_ru.ts b/pcmanfm/translations/pcmanfm-qt_ru.ts deleted file mode 100644 index 3f7fb23..0000000 --- a/pcmanfm/translations/pcmanfm-qt_ru.ts +++ /dev/null @@ -1,1439 +0,0 @@ - - - - - AboutDialog - - - About - О программе - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Легковесный диспетчер файлов - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Authors - Авторы - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Программирование: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - License - Лицензия - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Файловый менеджер PCMan - -Авторское право (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -Эта программа является свободным программным обеспечением; -вы можете распространять и/или модифицировать ее согласно -условиям стандартной общественной лицензии GNU, опубликованной -Фондом свободного ПО; либо версии 2 лицензии, либо -(по вашему выбору) любой более поздней версии. - -Эта программа распространяется в надежде что она будет полезной, -но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; даже без подразумеваемых гарантий -КОММЕРЧЕСКОЙ ЦЕННОСТИ или ПРИГОДНОСТИ ДЛЯ КОНКРЕТНОЙ ЦЕЛИ. -Смотрите Стандартную Общественную Лицензию GNU для большего -количества деталей. - -Вы должны были получить копию Стандартной Общественной Лицензии GNU -вместе с этой программой; если лицензии не было, напишите в Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Бостон, MA 02110-1301, США. - - - - AutoRunDialog - - - Removable medium is inserted - Вставлен съёмный носитель - - - - <b>Removable medium is inserted</b> - <b>Вставлен съёмный носитель</b> - - - - Type of medium: - Тип носителя: - - - - Detecting... - Обнаружение... - - - - Please select the action you want to perform: - Выберите действие, которое хотите совершить: - - - - DesktopFolder - - - Form - - - - - Desktop - Рабочий стол - - - - Desktop folder: - Папка рабочего стола: - - - - Image file - Файл изображения - - - - Folder path - Путь к папке - - - - &Browse - &Обзор - - - - DesktopPreferencesDialog - - - Desktop Preferences - Настройки рабочего стола - - - - General - Общие - - - - Background - Фон - - - - Wallpaper mode: - Режим обоев: - - - - Wallpaper image file: - Файл изображения обоев: - - - - Select background color: - Выбрать цвет фона: - - - - Image file - Файл изображения - - - - Image file path - Путь к файлу изображения - - - - &Browse - &Обзор - - - - Label Text - Текст ярлыков - - - - Select text color: - Выбрать цвет текста: - - - - Select shadow color: - Выбрать цвет тени: - - - - Select font: - Выбрать шрифт: - - - - Window Manager - Оконный менеджер - - - - Advanced - Расширенные - - - - Show menus provided by window managers when desktop is clicked - Показывать меню, предоставляемые оконными менеджерами, по клику на рабочий стол - - - - FindFilesDialog - - - Find Files - Найти файлы - - - - Name/Location - Имя/расположение - - - - File name patterns - Шаблоны имён файлов - - - - Pattern: - Шаблон: - - - - - Case insensitive - Нечувствительный к регистру - - - - - Use regular expression - Использовать регулярные выражения - - - - Places to search - Места поиска - - - - Add - Добавить - - - - Remove - Удалить - - - - Search in sub directories - Искать в подпапках - - - - Search hidden files - Искать скрытые файлы - - - - - File Type - Тип файла - - - - Only search for files of following types: - Искать только следующие типы файлов: - - - - Text files - Текстовые файлы - - - - Image files - Файлы изображений - - - - Audio files - Аудиофайлы - - - - Video files - Видеофайлы - - - - Documents - Документы - - - - Content - Содержание - - - - File contains - Файл содержит - - - - Properties - Свойства - - - - File Size - Размер файла - - - - Bigger than: - Больше, чем: - - - - Smaller than: - Меньше, чем: - - - - Last Modified Time - Время последнего изменения - - - - Earlier than: - Раньше, чем: - - - - Later than: - Позже, чем: - - - - MainWindow - - - File Manager - Диспетчер файлов - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - Фильтр - - - - Filter by string... - Фильтровать по строке... - - - - &File - &Файл - - - - C&reate New - &Создать - - - - &Help - &Справка - - - - &View - &Вид - - - - &Sorting - &Сортировка - - - - &Edit - &Правка - - - - &Bookmarks - &Закладки - - - - &Go - &Перейти - - - - &Tool - &Инструмент - - - - Main Toolbar - Главная панель инструментов - - - - Go &Up - Перейти вв&ерх - - - - Go Up - Перейти вверх - - - - Alt+Up - - - - - &Home - &Домой - - - - Alt+Home - - - - - &Reload - &Обновить - - - - F5 - - - - - Go - Перейти - - - - Quit - Выйти - - - - &About - &О программе - - - - &New Window - Новое &окно - - - - New Window - Новое окно - - - - Ctrl+N - - - - - Show &Hidden - Показать &скрытые - - - - Ctrl+H - - - - - &Computer - &Компьютер - - - - &Trash - &Корзина - - - - &Network - &Сеть - - - - &Desktop - &Рабочий стол - - - - &Add to Bookmarks - &Добавить в закладки - - - - &Applications - &Приложения - - - - Reload - Обновить - - - - &Icon View - Просмотр &значками - - - - &Compact View - &Компактный просмотр - - - - &Detailed List - Просмотр &подробным списком - - - - &Thumbnail View - Просмотр &эскизами - - - - Cu&t - &Вырезать - - - - Ctrl+X - - - - - &Copy - &Копировать - - - - Ctrl+C - - - - - &Paste - &Вставить - - - - Ctrl+V - - - - - Select &All - Выделить &всё - - - - Ctrl+A - - - - - Pr&eferences - &Настройки - - - - &Ascending - По &возрастанию - - - - &Descending - По &убыванию - - - - &By File Name - &По имени файла - - - - By &Modification Time - По времени &изменения - - - - By File &Type - По &типу файла - - - - By &Owner - По &владельцу - - - - &Folder First - Сначала &папки - - - - &Case Sensitive - &Чувствительная к регистру - - - - By File &Size - По &размеру файла - - - - &Close Window - &Закрыть окно - - - - &Folder - &Папка - - - - &Blank File - &Пустой файл - - - - &Find Files - &Найти файлы - - - - F3 - - - - - Close &left tabs - Закрыть вкладки с&лева - - - - Close &right tabs - Закрыть вкладки с&права - - - - Close &other tabs - Закрыть &остальные вкладки - - - - New &Tab - Новая &вкладка - - - - New Tab - Новая вкладка - - - - Ctrl+T - - - - - Go &Back - Перейти &назад - - - - Go Back - Перейти назад - - - - Alt+Left - - - - - Go &Forward - Перейти &вперёд - - - - Go Forward - Перейти вперёд - - - - Alt+Right - - - - - &Invert Selection - &Инвертировать выделение - - - - &Delete - &Удалить - - - - Del - - - - - &Rename - &Переименовать - - - - F2 - - - - - C&lose Tab - &Закрыть вкладку - - - - Ctrl+W - - - - - File &Properties - Свойства &файла - - - - Alt+Return - - - - - &Folder Properties - Свойства &папки - - - - Edit Bookmarks - Изменить закладки - - - - Open &Terminal - Открыть &терминал - - - - F4 - - - - - Open as &Root - Открыть от имени &суперпользователя - - - - &Edit Bookmarks - &Изменить закладки - - - - PCManFM::Application - - - Name of configuration profile - Имя профиля конфигурации - - - - PROFILE - ПРОФИЛЬ - - - - Run PCManFM as a daemon - Запустить PCManFM как демон - - - - Quit PCManFM - Выйти из PCManFM - - - - Launch desktop manager - Запустить менеджер рабочего стола - - - - Turn off desktop manager if it's running - Отключить менеджер рабочего стола, если он запущен - - - - Open desktop preference dialog on the page with the specified name - Открыть диалог настроек рабочего стола на странице с указанным именем - - - - - NAME - ИМЯ - - - - Set desktop wallpaper from image FILE - Выбрать обои рабочего стола из ФАЙЛА изображения - - - - FILE - ФАЙЛ - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Выбрать режим обоев рабочего стола. РЕЖИМ=(color|stretch|fit|center|tile) - - - - MODE - РЕЖИМ - - - - Open Preferences dialog on the page with the specified name - Открыть диалог настроек на странице с указанным именем - - - - Open new window - Открыть новое окно - - - - Open Find Files utility - Открыть утилиту поиска файлов - - - - [FILE1, FILE2,...] - [ФАЙЛ1, ФАЙЛ2,...] - - - - Files or directories to open - Файлы или папки для открытия - - - - - Error - Ошибка - - - - Terminal emulator is not set. - Эмулятор терминала не указан. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Открыть в диспетчере файлов - - - - Removable Disk - Съёмный диск - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Заполнить только цветом фона - - - - Stretch to fill the entire screen - Растянуть по всему экрану - - - - Stretch to fit the screen - Растянуть по размеру экрана - - - - Center on the screen - По центру экрана - - - - Tile the image to fill the entire screen - Плиточное заполнение всего экрана изображением - - - - Image Files - Файлы изображений - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - &Прикрепить к текущему положению - - - - Desktop Preferences - Настройки рабочего стола - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - Стереть текст (Ctrl+K) - - - - Version: %1 - Версия: %1 - - - - &Move to Trash - &Переместить в корзину - - - - &Delete - &Удалить - - - - - Error - Ошибка - - - - Switch user command is not set. - Команда переключения пользователя не задана. - - - - PCManFM::PreferencesDialog - - - Icon View - Просмотр значками - - - - Compact Icon View - Просмотр компактными значками - - - - Thumbnail View - Просмотр эскизами - - - - Detailed List View - Просмотр подробным списком - - - - PCManFM::TabPage - - - Error - Ошибка - - - - Free space: %1 (Total: %2) - Свободное место: %1 (всего: %2) - - - - %n item(s) - - %n объект - %n объекта - %n объектов - - - - - (%n hidden) - - (%n скрыт) - (%n скрыто) - (%n скрыто) - - - - - %1 item(s) selected - %1 объекта(ов) выделено - - - - PCManFM::View - - - Open in New T&ab - Открыть в новой &вкладке - - - - Open in New Win&dow - Открыть в новом &окне - - - - Open in Termina&l - Открыть в &терминале - - - - PreferencesDialog - - - Preferences - Настройки - - - - User Interface - Интерфейс пользователя - - - - Behavior - Поведение - - - - - Thumbnail - Эскизы - - - - Volume - Том - - - - Advanced - Расширенные - - - - Icons - Значки - - - - Size of big icons: - Размер больших значков: - - - - Size of small icons: - Размер маленьких значков: - - - - Size of thumbnails: - Размер эскизов: - - - - Size of side pane icons: - Размер значков боковой панели: - - - - Icon theme: - Тема значков: - - - - Window - Окно - - - - Always show the tab bar - Всегда показывать панель вкладок - - - - Show 'Close' buttons on tabs - Показывать кнопку «Закрыть» на вкладках - - - - Remember the size of the last closed window - Запоминать размер последнего закрытого окна - - - - Default width of new windows: - Ширина новых окон по умолчанию: - - - - Default height of new windows: - Высота новых окон по умолчанию: - - - - Browsing - Просмотр - - - - Open files with single click - Открывать файлы по одиночному щелчку мыши - - - - Delay of auto-selection in single click mode (0 to disable) - Задержка автовыделения в режиме одиночного щелчка (0 для отключения) - - - - Default view mode: - Режим просмотра по умолчанию: - - - - sec - сек - - - - File Operations - Операции с файлами - - - - Confirm before deleting files - Подтверждение перед удалением файлов - - - - Move deleted files to "trash bin" instead of erasing from disk. - Перемещать удалённые файлы в «корзину» вместо удаления их с диска. - - - - Show thumbnails of files - Показывать эскизы файлов - - - - Only show thumbnails for local files - Показывать эскизы только для локальных файлов - - - - Display - Вид - - - - Bookmarks: - Закладки: - - - - Open in current tab - Открывать в текущей вкладке - - - - Open in new tab - Открывать в новой вкладке - - - - Open in new window - Открывать в новом окне - - - - Erase files on removable media instead of "trash can" creation - Удалять файлы на съёмных носителях вместо создания «корзины» - - - - Confirm before moving files into "trash can" - Подтверждение перед перемещением файлов в «корзину» - - - - Don't ask options on launch executable file - Не предлагать варианты запуска исполняемых файлов - - - - User interface - Интерфейс пользователя - - - - Treat backup files as hidden - Рассматривать резервные файлы как скрытые - - - - Always show full file names - Всегда показывать полные имена файлов - - - - Show icons of hidden files shadowed - Показывать значки скрытых файлов затенёнными - - - - Show in places - Показвать в «Местах» - - - - Home - Дом - - - - Desktop - Рабочий стол - - - - Trash can - Корзина - - - - Computer - Компьютер - - - - Applications - Приложения - - - - Devices - Устройства - - - - Network - Сеть - - - - Do not generate thumbnails for image files exceeding this size: - Не создавать эскизы для файлов изображений больших чем: - - - - KB - КБ - - - - Auto Mount - Автоподключение - - - - Mount mountable volumes automatically on program startup - Подключать съёмные тома автоматически при запуске программы - - - - Mount removable media automatically when they are inserted - Подключать съёмные тома автоматически при их вставлении - - - - Show available options for removable media when they are inserted - Показывать доступные варианты для съёмных устройств при их вставлении - - - - When removable medium unmounted: - При отключении съёмного устройства: - - - - Close &tab containing removable medium - Закрыть &вкладку, отображающую содержимое съёмного носителя - - - - Chan&ge folder in the tab to home folder - Изме&нить папку во вкладке на домашнюю - - - - Switch &user command: - Команда смены &пользователя: - - - - Archiver in&tegration: - Ин&теграция с архиваторами: - - - - Templates - Шаблоны - - - - Show only user defined templates in menu - Показывать в меню только шаблоны, определённые пользователем - - - - Show only one template for each MIME type - Показывать только один шаблон для каждого типа MIME - - - - Run default application after creation from template - Запускать приложение по умолчанию после создания из шаблона - - - - Programs - Программы - - - - Terminal emulator: - Эмулятор терминала: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Примеры: "xterm -e %s" для терминала или "gksu %s" для переключения пользователя. -%s = командная строка,которую вы хотите выполнить с терминалом или su. - - - - Use SI decimal prefixes instead of IEC binary prefixes - Использовать десятичные префиксы СИ вместо двоичных префиксов IEC - - - diff --git a/pcmanfm/translations/pcmanfm-qt_tr_TR.ts b/pcmanfm/translations/pcmanfm-qt_tr_TR.ts deleted file mode 100644 index 624218b..0000000 --- a/pcmanfm/translations/pcmanfm-qt_tr_TR.ts +++ /dev/null @@ -1,1277 +0,0 @@ - - - - - AboutDialog - - - About - Hakkında - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - Lightweight file manager - Hafif bir dosya yöneticisi - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - Programcı: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - Authors - Sahiplik - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - PCMan Dosya Yöneticisi - -Telif Hakkı (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -Bu program ücretsiz bir yazılımdır; bunu dağıtabilir veya -GNU Genel Kamu Lisansı kapsamında değiştirebilirsiniz -Özgür Yazılım Vakfı lisansı altında yada -benzeri başka bir lisans altında bir sürüm çatallayabilirsiniz. - -Bu program faydalı olacağı amacıyla geliştirilmiştir, -fakat size hiçbir kullanım garantisi vermez. -Belirli bir amaca katkı vermek için kamu yararına geliştirildi. -Daha fazla bilgi edinmek için GNU Genel Kamu Lisansını inceleyin. - -Bu program ile birlikte GNU Genel Kamu Lisansını -kabul etmiş varsayılırsınız. -VAKIF, Inc., 51 Franklin Caddesi, Beşinci Kat, Boston, MA 02110-1301, ABD. -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - License - Lisans - - - - AutoRunDialog - - - Removable medium is inserted - Harici bir bellek takıldı - - - - <b>Removable medium is inserted</b> - <b>Harici Bellek Takıldı</b> - - - - Type of medium: - Bellek tipi: - - - - Detecting... - Taranıyor... - - - - Please select the action you want to perform: - Gerçekleştireceğiniz eylemi seçiniz: - - - - DesktopFolder - - - Form - Form - - - - Desktop - Masaüstü - - - - Desktop folder: - Masaüstü: - - - - Image file - Görsel dosyası - - - - Folder path - Dosya yolu - - - - &Browse - &Gözat - - - - DesktopPreferencesDialog - - - Desktop Preferences - Masaüstü Seçenekleri - - - - Background - Arkaplan - - - - Wallpaper mode: - Duvarkağıdı yerleşim biçimi: - - - - Wallpaper image file: - Duvarkağıdı: - - - - Select background color: - Duvarkağıdı olarak arkaplan rengi seç: - - - - Image file - Görsel dosyası - - - - Image file path - Görsel dosyası yolu - - - - &Browse - &Gözat - - - - Label Text - Metin Etiketi - - - - Select text color: - Metin için renk seç: - - - - Select shadow color: - Metin gölgesi için renk seç: - - - - Select font: - Font biçimini seç: - - - - General - Genel - - - - Window Manager - Pencere Yönetici - - - - Show menus provided by window managers when desktop is clicked - Masaüstüne sağ tıklandığında Lxqt Uygulama Menüsünü göster - - - - Advanced - Gelişmiş - - - - MainWindow - - - File Manager - Dosya Yönetici - - - - Go &Up - Üst &Dizin - - - - Go Up - Üst Dizin - - - - Alt+Up - Alt+Yukarı - - - - &Home - &Ev Dizini - - - - Alt+Home - Alt+Home - - - - &Reload - &Yeniden Yükle - - - - F5 - F5 - - - - Go - Git - - - - Quit - Çıkış - - - - &About - &Hakkında - - - - &New Window - &Yeni Pencere - - - - New Window - Yeni Pencere - - - - Ctrl+N - Ctrl+N - - - - Show &Hidden - Göster &Gizle - - - - Ctrl+H - Ctrl+H - - - - &Computer - &Bilgisayar - - - - &Trash - &Çöp - - - - &Network - &Ağ - - - - &Desktop - &Masaüstü - - - - &Add to Bookmarks - &Yer İmlerine Ekle - - - - &Applications - &Uygulamalar - - - - Reload - Yeniden Yükle - - - - &Icon View - &Simgeler - - - - &Compact View - &Kompakt Görünüm - - - - &Detailed List - &Detaylı Liste - - - - &Thumbnail View - &Önizleme - - - - Cu&t - Ke&s - - - - Ctrl+X - Ctrl+X - - - - &Copy - &Kopyala - - - - Ctrl+C - Ctrl+C - - - - &Paste - &Yapıştır - - - - Ctrl+V - Ctrl+V - - - - Select &All - Tümünü &Seç - - - - Ctrl+A - Ctrl+A - - - - Pr&eferences - Ter&cihler - - - - &Ascending - &Artan - - - - &Descending - &Azalan - - - - &By File Name - &Dosya Adı - - - - By &Modification Time - &Değiştirme Zamanı - - - - By File &Type - &Dosya Tipi - - - - By &Owner - &Sahiplik - - - - &Folder First - &Önce Klasörler - - - - &Case Sensitive - &Alfabetik - - - - By File &Size - Dosya &Boyutu - - - - &Close Window - &Pencereyi Kapat - - - - &Folder - &Klasör - - - - &Blank File - &Boş Dosya - - - - New &Tab - Yeni &Sekme - - - - New Tab - Yeni Sekme - - - - Ctrl+T - Ctrl+T - - - - Go &Back - Geri &Git - - - - Go Back - Geri Git - - - - Alt+Left - Alt+Left - - - - Go &Forward - &İleri - - - - Go Forward - İleri - - - - Alt+Right - Alt+Right - - - - &Invert Selection - &Tersini Seç - - - - &Delete - &Sil - - - - Del - Sil - - - - &Rename - &Adını değiştir - - - - F2 - F2 - - - - C&lose Tab - S&ekmeyi Kapat - - - - Ctrl+W - Ctrl+W - - - - File &Properties - Dosya &Özellikleri - - - - Alt+Return - Alt+Enter - - - - &Folder Properties - &Klasör Özellikleri - - - - Edit Bookmarks - Yer İmlerini Düzenle - - - - Open &Terminal - Uçbirim &Aç - - - - F4 - F4 - - - - Open as &Root - &Yetkili Olarak PCManFM Aç - - - - &Edit Bookmarks - &Yer İmlerini Düzenle - - - - Ctrl+Shift+N - Ctrl+Shift+N - - - - Ctrl+Alt+N - Ctrl+Alt+N - - - - &Find Files - Dosya &Bul - - - - F3 - F3 - - - - Filter - Filtre - - - - Filter by string... - Satırları filtrele... - - - - &File - &Dosya - - - - C&reate New - Y&eni Oluştur - - - - &Help - &Yardım - - - - &View - &Görünüm - - - - &Sorting - &Sıralama - - - - &Edit - &Düzenle - - - - &Bookmarks - &Yer imleri - - - - &Go - &Git - - - - &Tool - &Araçlar - - - - Main Toolbar - Araç Çubuğu - - - - PCManFM::Application - - - Name of configuration profile - Profil yapılandırma adı - - - - PROFILE - PROFİL - - - - Run PCManFM as a daemon - Daemon olarak PCManFM çalıştırın - - - - Quit PCManFM - PCManFM den Çık - - - - Launch desktop manager - Masaüstü yöneticiyi başlat - - - - Turn off desktop manager if it's running - Eğer masaüstü yönetici çalışıyorsa kapat - - - - Open desktop preference dialog on the page with the specified name - Aynı adı taşıyan sayfa yada dosya varsa masaüstünde bir tercih öner - - - - - NAME - İSİM - - - - Open new window - Yeni pencere aç - - - - Open Find Files utility - Açık Dosya Bulmaya yarar - - - - Set desktop wallpaper from image FILE - DOSYA masaüstü duvarkağıdı olarak ayarlansın - - - - FILE - DOSYA - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - Masaüstü duvarkağıdı ayarı. MOD=(color|stretch|fit|center|tile) - - - - MODE - MOD - - - - Open Preferences dialog on the page with the specified name - Aynı adı taşıyan sayfa yada dosya varsa bir tercih öner - - - - Files or directories to open - Dosya veya dizin aç - - - - [FILE1, FILE2,...] - [DOSYA1, DOSYA,...] - - - - - Error - Hata - - - - Terminal emulator is not set. - Uçbirim uygulaması ayarlanmadı. - - - - PCManFM::AutoRunDialog - - - Open in file manager - Dosya yöneticisinde aç - - - - Removable Disk - Çıkarılabilir Bellek - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - Arkaplan sadece renk dolgusu olsun - - - - Stretch to fill the entire screen - Tüm ekranı kaplayacak şekilde uzat - - - - Stretch to fit the screen - Ekran boyutuna uzat ve uydur - - - - Center on the screen - Ekranı ortala - - - - Tile the image to fill the entire screen - Tüm ekranı dolduracak şekilde döşe - - - - Image Files - Görsel Dosyası - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - Geçerli Konuma Sa&bitle - - - - Desktop Preferences - Masaüstü Tercihleri - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - Metni temizle (Ctrl+K) - - - - Version: %1 - Sürüm: %1 - - - - &Move to Trash - &Çöpe Taşı - - - - &Delete - &Sil - - - - - Error - Hata - - - - Switch user command is not set. - Kullanıcı değişitirme-komutu ayarlı değil. - - - - PCManFM::PreferencesDialog - - - Icon View - Simgeler - - - - Compact Icon View - Kompakt Simgeler - - - - Thumbnail View - Önizleme - - - - Detailed List View - Detaylı Liste - - - - PCManFM::TabPage - - - Error - Hata - - - - Free space: %1 (Total: %2) - Boş alan: %1 (Toplam %2) - - - - %n item(s) - - %n nesne(ler) - - - - - (%n hidden) - - (%n gizli) - - - - - %1 item(s) selected - %1 nesne(ler) seçildi - - - - PCManFM::View - - - Open in New T&ab - Yeni S&ekmede Aç - - - - Open in New Win&dow - Yeni Pen&cerede Aç - - - - Open in Termina&l - Uçbirim&de Aç - - - - PreferencesDialog - - - Preferences - Tercihler - - - - User Interface - Kullanıcı Arayüzü - - - - Behavior - Davranış - - - - - Thumbnail - Önizleme - - - - Volume - Disk Yönetimi - - - - Advanced - Gelişmiş - - - - Icons - Simgeler - - - - Size of big icons: - Büyük simge boyutu: - - - - Size of small icons: - Küçük simge boyutu: - - - - Size of thumbnails: - Önizleme boyutu: - - - - Size of side pane icons: - Yan bölme simgelerinin boyutu: - - - - Icon theme: - Simge teması: - - - - Window - Pencere - - - - Always show the tab bar - Daima sekme çubuğunu göster - - - - Show 'Close' buttons on tabs - Sekmelerde 'Kapat' düğmesi göster - - - - Remember the size of the last closed window - Son kapatılan pencere boyutunu anımsa - - - - Default width of new windows: - Yeni pencereleri varsayılan genişlikte aç: - - - - Default height of new windows: - Yeni pencereleri varsayılan yükseklikte aç: - - - - Browsing - Gözat - - - - Open files with single click - Dosyaları çift tıklama ile aç - - - - Delay of auto-selection in single click mode (0 to disable) - İmleç üzerinde bekleyince kendiliğinden seç ve tek tıkla (0 etkisizleştirir) - - - - Default view mode: - Varsayılan görünüm modu: - - - - sec - .san - - - - File Operations - Dosya İşlemleri - - - - Confirm before deleting files - Dosyaları silmeden önce onayla - - - - Move deleted files to "trash bin" instead of erasing from disk. - Silinen dosyaları "çöpe atmadan" diskten sil. - - - - Show thumbnails of files - Dosya önizlemelerini göster - - - - Only show thumbnails for local files - Yerel dosyalar için önizleme göster - - - - Display - Görünüm - - - - Bookmarks: - Yerimleri: - - - - Open in current tab - Geçerli sekmede aç - - - - Open in new tab - Yeni sekmede aç - - - - Open in new window - Yeni pencerede aç - - - - Erase files on removable media instead of "trash can" creation - Çıkarılabilir bellek takılınca kendiliğinden oluşan "kalıntıları" sil - - - - Confirm before moving files into "trash can" - Dosyalar "çöpe" gönderilmeden önce onay iste - - - - Don't ask options on launch executable file - Çalıştırılabilir dosya seçeneklerini sorma - - - - User interface - Kullanıcı arayüzü - - - - Treat backup files as hidden - Yedekleme dosyalarını gizle - - - - Always show full file names - Her zaman dosya adının tamamını göster - - - - Show icons of hidden files shadowed - Gizli dosyaların simgesini gölgele - - - - Show in places - Alan göster - - - - Home - Ev Dizini - - - - Desktop - Masaüstü - - - - Trash can - Çöp Kutusu - - - - Computer - Bilgisayar - - - - Applications - Uygualamalar - - - - Devices - Aygıtlar - - - - Network - - - - - Do not generate thumbnails for image files exceeding this size: - Şundan büyük boyuttaki dosyalar için önizleme oluşturma: - - - - KB - .KB - - - - Auto Mount - Otomatik bağla - - - - Mount mountable volumes automatically on program startup - Uygulama başlarken diskleri otomatik bağla - - - - Mount removable media automatically when they are inserted - Çıkarılabilir bellek takıldığında otomatik olarak bağla - - - - Show available options for removable media when they are inserted - Çıkarılabilir bellek takıldığında seçenekleri göster - - - - When removable medium unmounted: - Çıkarılabilir disk ayrıldığında: - - - - Close &tab containing removable medium - Bellek çıkarılınca &sekme kapansın - - - - Chan&ge folder in the tab to home folder - Sek&me konumu kullanıcı klasörü olarak değişsin - - - - Programs - Uygulamalar - - - - Terminal emulator: - Uçbirim emülatörü: - - - - Switch &user command: - &Kullanıcı değiştirme-komutu: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - Örnek: uçbirim için "xterm -e %s" veya kullanıcı değiştirmek için "gksu %s". -%s = komut satırı veya uçbirimde su komutu ile. - - - - Archiver in&tegration: - Sıkıştırma uy&gulaması: - - - - Templates - Şablonlar - - - - Show only user defined templates in menu - Menüde sadece kullanıcı şablonlarını göster - - - - Show only one template for each MIME type - Her MIME türü için tek bir şablon göster - - - - Run default application after creation from template - Şablonu uygulama çalıştıktan sonra oluştur - - - - Use SI decimal prefixes instead of IEC binary prefixes - SI onluk önekleri yerine IEC ikili önekleri kullan - - - diff --git a/pcmanfm/translations/pcmanfm-qt_zh_TW.ts b/pcmanfm/translations/pcmanfm-qt_zh_TW.ts deleted file mode 100644 index 1681eb4..0000000 --- a/pcmanfm/translations/pcmanfm-qt_zh_TW.ts +++ /dev/null @@ -1,1383 +0,0 @@ - - - - - AboutDialog - - - About - 關於 - - - - <html><head/><body><p><span style=" font-size:16pt; font-weight:600;">PCManFM</span></p></body></html> - - - - - Lightweight file manager - 輕量級檔案管理程式 - - - - PCMan File Manager - -Copyright (C) 2009 - 2014 洪任諭 (Hong Jen Yee) - -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; either version 2 -of the License, or (at your option) any later version. - -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. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - - - - Programming: -* Hong Jen Yee (PCMan) <pcman.tw@gmail.com> - - - - - - <html><head/><body><p><a href="http://lxqt.org/"><span style=" text-decoration: underline; color:#0000ff;">http://lxqt.org/</span></a></p></body></html> - - - - - Authors - 作者 - - - - License - 授權 - - - - AutoRunDialog - - - Removable medium is inserted - 插入可移除式裝置 - - - - <b>Removable medium is inserted</b> - <b>插入可移除式裝置</b> - - - - Type of medium: - 媒體種類: - - - - Detecting... - 正在偵測... - - - - Please select the action you want to perform: - 請選擇想要執行的動作: - - - - DesktopFolder - - - Form - - - - - Desktop - 桌面 - - - - Desktop folder: - 桌面資料夾: - - - - Image file - 影像檔案 - - - - Folder path - 資料夾路徑 - - - - &Browse - 瀏覽(&B) - - - - DesktopPreferencesDialog - - - Desktop Preferences - 桌面偏好設定 - - - - Background - 背景 - - - - Wallpaper mode: - 桌布: - - - - Wallpaper image file: - 桌布影像檔案: - - - - Select background color: - 選擇背景顏色: - - - - Image file - 影像檔案 - - - - Image file path - 影像檔路徑 - - - - &Browse - 瀏覽(&B) - - - - Label Text - 標籤文字 - - - - Select text color: - 選擇文字顏色: - - - - Select shadow color: - 選擇陰影顏色: - - - - Select font: - 選擇字型: - - - - General - 一般 - - - - Window Manager - 視窗管理員 - - - - Show menus provided by window managers when desktop is clicked - 按下桌面時顯示視窗管理員提供的選單 - - - - Advanced - 進階 - - - - MainWindow - - - File Manager - 檔案管理程式 - - - - Go Up - 往上一層 - - - - Alt+Up - - - - Home - 家目錄 - - - - Alt+Home - - - - - Reload - 重新讀取 - - - - F5 - - - - - Go &Up - 上一層(&U) - - - - &Home - - - - - &Reload - 重新讀取(&) - - - - Go - - - - - Quit - 離開 - - - - &About - 關於(&A) - - - - &New Window - 新視窗(&N) - - - - New Window - 新視窗 - - - - Ctrl+N - - - - - Show &Hidden - 顯示隱藏檔(&H) - - - - Ctrl+H - - - - - &Computer - 電腦(&C) - - - - &Trash - 垃圾桶(&T) - - - - &Network - 網路(&N) - - - - &Desktop - 桌面(&D) - - - - &Add to Bookmarks - 加入到書籤(&A) - - - - &Applications - 應用程式(&A) - - - - &Icon View - 圖示檢視(&I) - - - - &Compact View - 簡易檢視(&C) - - - - &Detailed List - 詳細清單(&D) - - - - &Thumbnail View - 縮圖檢視(&T) - - - - Cu&t - 剪下(&T) - - - - &Ascending - 升冪排列(&A) - - - - &Descending - 降冪排列(&D) - - - - &By File Name - - - - - By &Modification Time - - - - - By File &Type - - - - - By &Owner - - - - - &Folder First - - - - - C&lose Tab - 關閉(&L) - - - - File &Properties - 檔案屬性(&P) - - - - &Folder Properties - 資料夾屬性(&F) - - - - &Case Sensitive - - - - - By File &Size - - - - - &Close Window - - - - - Ctrl+Shift+N - - - - - Ctrl+Alt+N - - - - - Filter - - - - - C&reate New - - - - - &Sorting - 排序(&S) - - - - Main Toolbar - - - - Icon View - 圖示檢視 - - - Compact View - 簡易檢視 - - - Detailed List - 詳細清單 - - - Thumbnail View - 縮圖檢視 - - - &Cut - 剪下(&C) - - - - Ctrl+X - - - - - &Copy - 複製(&C) - - - - Ctrl+C - - - - - &Paste - 貼上(&P) - - - - Ctrl+V - - - - - Select &All - 全選(&A) - - - - Pr&eferences - 偏好設定(&R) - - - - &Invert Selection - 反向選取(&I) - - - - &Delete - 刪除(&D) - - - - &Rename - 重新命名(&R) - - - Select All - 全選 - - - - Ctrl+A - - - - Preferences - 偏好設定 - - - Ascending - 升冪排列 - - - Descending - 降冪排列 - - - By File Name - 依照檔名 - - - By Modification Time - 依照修改時間 - - - By File Type - 依照檔案類型 - - - By Owner - 依照檔案擁有者 - - - Folder First - 資料夾優先 - - - - New &Tab - 新分頁(&T) - - - - New Tab - 新分頁 - - - - Ctrl+T - - - - - Go &Back - 後退(&B) - - - - Go Back - 後退 - - - - Alt+Left - - - - - Go &Forward - 前進(&F) - - - - Go Forward - 前進 - - - - Alt+Right - - - - Invert Selection - 反向選取 - - - Delete - 刪除 - - - - Del - - - - Rename - 重新命名 - - - - F2 - - - - Close Tab - 關閉分頁 - - - - Ctrl+W - - - - File Properties - 檔案屬性 - - - - Alt+Return - - - - Folder Properties - 資料夾屬性 - - - Case Sensitive - 區分大小寫 - - - By File Size - 依照檔案大小 - - - Close Window - 關閉視窗 - - - - Edit Bookmarks - 編輯書籤 - - - - Open &Terminal - 開啟終端機(&T) - - - - F4 - - - - - Open as &Root - 以系統管理員權限開啟(&R) - - - - &Edit Bookmarks - 編輯書籤(&E) - - - - &Folder - - - - - &Blank File - - - - - &Find Files - - - - - F3 - - - - - Filter by string... - - - - - &File - 檔案(&F) - - - - &Help - 說明(&H) - - - - &View - 檢視(&V) - - - Sorting - 排序 - - - - &Edit - 編輯(&E) - - - - &Bookmarks - 書籤(&B) - - - - &Go - 前往(&G) - - - - &Tool - 工具(&T) - - - - PCManFM::Application - - - Name of configuration profile - - - - - PROFILE - - - - - Run PCManFM as a daemon - - - - - Quit PCManFM - - - - - Launch desktop manager - - - - - Turn off desktop manager if it's running - - - - - Open desktop preference dialog on the page with the specified name - - - - - - NAME - - - - - Open new window - - - - - Open Find Files utility - - - - - Set desktop wallpaper from image FILE - - - - - FILE - - - - - Set mode of desktop wallpaper. MODE=(color|stretch|fit|center|tile) - - - - - MODE - - - - - Open Preferences dialog on the page with the specified name - - - - - Files or directories to open - - - - - [FILE1, FILE2,...] - - - - - - Error - 錯誤 - - - - Terminal emulator is not set. - 終端機模擬器尚未設定 - - - - PCManFM::AutoRunDialog - - - Open in file manager - 在檔案管理程式內開啟 - - - - Removable Disk - 可移除式磁碟 - - - - PCManFM::DesktopPreferencesDialog - - - Fill with background color only - 只以背景色填滿 - - - - Stretch to fill the entire screen - 延展以填滿整個螢幕 - - - - Stretch to fit the screen - 延展到最適合螢幕大小 - - - - Center on the screen - 置於螢幕中央 - - - - Tile the image to fill the entire screen - 連續拼貼鋪滿整個螢幕 - - - - Image Files - 影像檔案 - - - - PCManFM::DesktopWindow - - - Stic&k to Current Position - 保持在目前位置(&K) - - - - Desktop Preferences - 桌面偏好設定 - - - - PCManFM::MainWindow - - - Clear text (Ctrl+K) - 清除文字(Ctrl+K) - - - - Version: %1 - 版本: %1 - - - - &Move to Trash - 移動到垃圾桶(&M) - - - - &Delete - 刪除(&D) - - - - - Error - 錯誤 - - - - Switch user command is not set. - 切換使用者指令尚未設定 - - - Terminal emulator is not set. - 終端機模擬器尚未設定 - - - - PCManFM::PreferencesDialog - - - Icon View - 圖示檢視 - - - - Compact Icon View - 簡易檢視 - - - - Thumbnail View - 縮圖檢視 - - - - Detailed List View - 詳細清單檢視 - - - - PCManFM::TabPage - - - Error - 錯誤 - - - - Free space: %1 (Total: %2) - 可用空間 %1 (全部: %2) - - - - %n item(s) - - %n 個項目 - - - - - (%n hidden) - - (%n 個隱藏) - - - - - %1 item(s) selected - 選取 %1 個項目 - - - - PCManFM::View - - - Open in New T&ab - 在新分頁開啟 (&A) - - - - Open in New Win&dow - 在新視窗開啟 (&D) - - - - Open in Termina&l - 在終端機內開啟 (&L) - - - - PreferencesDialog - - - Preferences - 偏好設定 - - - - User Interface - 使用者界面 - - - - Behavior - 行為 - - - - Display - 顯示 - - - - - Thumbnail - 縮圖 - - - - Volume - 磁碟 - - - - Advanced - 進階 - - - - Bookmarks: - 書籤: - - - - Open in current tab - 在目前分頁開啟 - - - - Open in new tab - 在新分頁開啟 - - - - Open in new window - 在新視窗開啟 - - - - Erase files on removable media instead of "trash can" creation - - - - - Confirm before moving files into "trash can" - - - - - Don't ask options on launch executable file - - - - - Icons - 圖示 - - - - Size of big icons: - 大圖示尺寸: - - - - Size of small icons: - 小圖示尺寸: - - - - Size of thumbnails: - 縮圖尺寸: - - - - Size of side pane icons: - 側邊欄圖示尺寸: - - - - Icon theme: - 圖示佈景主題: - - - - Window - 視窗 - - - - Default width of new windows: - 新視窗的預設寬度 - - - - Default height of new windows: - 新視窗的預設高度 - - - - Always show the tab bar - 總是顯示標籤列 - - - - Show 'Close' buttons on tabs - 在分頁標籤上顯示「關閉」按鈕 - - - - Remember the size of the last closed window - 記住最後關閉視窗的大小 - - - - Browsing - 瀏覽 - - - - Open files with single click - 單擊開啟檔案 - - - - Delay of auto-selection in single click mode (0 to disable) - - - - - Default view mode: - 預設檢視模式: - - - - sec - - - - - File Operations - 檔案操作 - - - - Confirm before deleting files - 刪除檔案前確認 - - - - Move deleted files to "trash bin" instead of erasing from disk. - 將檔案移動到垃圾桶,而不直接刪除 - - - - User interface - 使用者界面 - - - - Treat backup files as hidden - - - - - Always show full file names - - - - - Show icons of hidden files shadowed - - - - - Show in places - - - - - Home - 家目錄 - - - - Desktop - 桌面 - - - - Trash can - - - - - Computer - 電腦 - - - - Applications - - - - - Devices - - - - - Network - - - - - Show thumbnails of files - 顯示檔案縮圖 - - - - Templates - 模板 - - - - Show only user defined templates in menu - - - - - Show only one template for each MIME type - - - - - Run default application after creation from template - - - - - Only show thumbnails for local files - 只顯示本地檔案的縮圖 - - - - Do not generate thumbnails for image files exceeding this size: - 不為超過指定大小的檔案產生縮圖: - - - - KB - - - - - When removable medium unmounted: - - - - - Switch &user command: - 切換使用者的指令: - - - - Archiver in&tegration: - 壓縮程式整合: - - - - Terminal emulator: - 終端機模擬器: - - - Do not generate thumbnails for files exceeding this size (KB): - 不為超過指定大小的檔案產生縮圖 (KB) - - - - Auto Mount - 自動掛載 - - - - Mount mountable volumes automatically on program startup - 掛載可掛載的磁碟 - - - - Mount removable media automatically when they are inserted - 可移除式媒體插入時自動掛載 - - - - Show available options for removable media when they are inserted - 可移除式媒體插入時顯示可用的選項 - - - - Close &tab containing removable medium - - - - - Chan&ge folder in the tab to home folder - - - - - Programs - 程式 - - - Terminal emulator command for directories: - 用來開啟目錄的終端機模擬器指令: - - - Switch user command: - 切換使用者的指令: - - - - Examples: "xterm -e %s" for terminal or "gksu %s" for switching user. -%s = the command line you want to execute with terminal or su. - 範例: 終端機指令可用 "xterm -e %s"而切換使用者指令可用 "gksu %s"。 -%s = 想要用終端機或是切換使用者執行的指令。 - - - Archiver integration: - 壓縮程式整合: - - - Terminal emulator command for programs: - 用來執行程式的終端機模擬器指令: - - - - Use SI decimal prefixes instead of IEC binary prefixes - - - -