Imported Upstream version 0.9.0+20150816
This commit is contained in:
parent
b2b0b6ccfa
commit
45ad84b548
@ -1,8 +1,18 @@
|
||||
cmake_minimum_required(VERSION 2.8.11)
|
||||
project(pcmanfm-qt)
|
||||
|
||||
set(PCMANFM_QT_VERSION "0.9.0")
|
||||
set(LIBFM_QT_VERSION "0.9.0")
|
||||
set(PCMANFM_QT_VERSION_MAJOR 0)
|
||||
set(PCMANFM_QT_VERSION_MINOR 9)
|
||||
set(PCMANFM_QT_VERSION_PATCH 0)
|
||||
set(PCMANFM_QT_VERSION ${PCMANFM_QT_VERSION_MAJOR}.${PCMANFM_QT_VERSION_MINOR}.${PCMANFM_QT_VERSION_PATCH})
|
||||
|
||||
set(LIBFM_QT_VERSION_MAJOR 0)
|
||||
set(LIBFM_QT_VERSION_MINOR 9)
|
||||
set(LIBFM_QT_VERSION_PATCH 0)
|
||||
set(LIBFM_QT_VERSION ${LIBFM_QT_VERSION_MAJOR}.${LIBFM_QT_VERSION_MINOR}.${LIBFM_QT_VERSION_PATCH})
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
|
||||
|
||||
# We use the libtool versioning scheme for the internal so name, "current:revision:age"
|
||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info
|
||||
# https://www.sourceware.org/autobook/autobook/autobook_91.html
|
||||
@ -14,10 +24,6 @@ set(LIBFM_QT_VERSION "0.9.0")
|
||||
set(LIBFM_QT_LIB_VERSION "2.0.0")
|
||||
set(LIBFM_QT_LIB_SOVERSION "2")
|
||||
|
||||
# Set default installation paths
|
||||
set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}" CACHE PATH "Installation path for libraries")
|
||||
set(INCLUDE_INSTALL_DIR include CACHE PATH "Installation path for includes")
|
||||
|
||||
find_package(Qt5Widgets 5.2 REQUIRED)
|
||||
find_package(Qt5DBus 5.2 REQUIRED)
|
||||
find_package(Qt5LinguistTools 5.2 REQUIRED)
|
||||
@ -34,7 +40,10 @@ pkg_check_modules(SYSTEM_LIBS REQUIRED
|
||||
pkg_check_modules(LIBFM REQUIRED libfm>=1.2.0)
|
||||
pkg_check_modules(LIBMENUCACHE REQUIRED libmenu-cache>=0.4.0)
|
||||
|
||||
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
|
||||
include(GNUInstallDirs)
|
||||
include(LXQtTranslateTs)
|
||||
include(LXQtTranslateDesktop)
|
||||
|
||||
add_definitions(-DQT_NO_KEYWORDS)
|
||||
|
||||
@ -49,12 +58,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
add_subdirectory(libfm-qt)
|
||||
add_subdirectory(pcmanfm)
|
||||
|
||||
# update translations
|
||||
add_custom_target(update_translations ALL DEPENDS
|
||||
libfm_translations
|
||||
pcmanfm_translations
|
||||
)
|
||||
|
||||
# manpage for pcmanfm-qt
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/pcmanfm-qt.1.in"
|
||||
@ -89,9 +92,9 @@ include(InstallRequiredSystemLibraries)
|
||||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
|
||||
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README")
|
||||
set(CPACK_PACKAGE_VENDOR "")
|
||||
set(CPACK_PACKAGE_VERSION_MAJOR "0")
|
||||
set(CPACK_PACKAGE_VERSION_MINOR "8")
|
||||
set(CPACK_PACKAGE_VERSION_PATCH "0")
|
||||
set(CPACK_PACKAGE_VERSION_MAJOR ${PCMANFM_QT_VERSION_MAJOR})
|
||||
set(CPACK_PACKAGE_VERSION_MINOR ${PCMANFM_QT_VERSION_MINOR})
|
||||
set(CPACK_PACKAGE_VERSION_PATCH ${PCMANFM_QT_VERSION_PATCH})
|
||||
set(CPACK_GENERATOR TBZ2)
|
||||
set(CPACK_SOURCE_GENERATOR TBZ2)
|
||||
set(CPACK_SOURCE_IGNORE_FILES /build/;.gitignore;.*~;.git;.kdev4;temp)
|
||||
|
107
cmake/LXQtTranslateDesktop.cmake
Normal file
107
cmake/LXQtTranslateDesktop.cmake
Normal file
@ -0,0 +1,107 @@
|
||||
#=============================================================================
|
||||
# The lxqt_translate_desktop() function was copied from the the
|
||||
# LXQt LxQtTranste.cmake
|
||||
#
|
||||
# Original Author: Alexander Sokolov <sokoloff.a@gmail.com>
|
||||
#
|
||||
# funtion lxqt_translate_desktop(_RESULT
|
||||
# SOURCES <sources>
|
||||
# [TRANSLATION_DIR] translation_directory
|
||||
# )
|
||||
# Output:
|
||||
# _RESULT The generated .desktop (.desktop) files
|
||||
#
|
||||
# Input:
|
||||
#
|
||||
# SOURCES List of input desktop files (.destktop.in) to be translated
|
||||
# (merged), relative to the CMakeList.txt.
|
||||
#
|
||||
# TRANSLATION_DIR Optional path to the directory with the .ts files,
|
||||
# relative to the CMakeList.txt. Defaults to
|
||||
# "translations".
|
||||
#
|
||||
#=============================================================================
|
||||
|
||||
function(lxqt_translate_desktop _RESULT)
|
||||
# Parse arguments ***************************************
|
||||
set(oneValueArgs TRANSLATION_DIR)
|
||||
set(multiValueArgs SOURCES)
|
||||
|
||||
cmake_parse_arguments(_ARGS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||
|
||||
# check for unknown arguments
|
||||
set(_UNPARSED_ARGS ${_ARGS_UNPARSED_ARGUMENTS})
|
||||
if (NOT ${_UNPARSED_ARGS} STREQUAL "")
|
||||
MESSAGE(FATAL_ERROR
|
||||
"Unknown arguments '${_UNPARSED_ARGS}'.\n"
|
||||
"See lxqt_translate_desktop() documenation for more information.\n"
|
||||
)
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED _ARGS_SOURCES)
|
||||
set(${_RESULT} "" PARENT_SCOPE)
|
||||
return()
|
||||
else()
|
||||
set(_sources ${_ARGS_SOURCES})
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED _ARGS_TRANSLATION_DIR)
|
||||
set(_translationDir "translations")
|
||||
else()
|
||||
set(_translationDir ${_ARGS_TRANSLATION_DIR})
|
||||
endif()
|
||||
|
||||
|
||||
get_filename_component (_translationDir ${_translationDir} ABSOLUTE)
|
||||
|
||||
foreach (_inFile ${_sources})
|
||||
get_filename_component(_inFile ${_inFile} ABSOLUTE)
|
||||
get_filename_component(_fileName ${_inFile} NAME_WE)
|
||||
#Extract the real extension ............
|
||||
get_filename_component(_fileExt ${_inFile} EXT)
|
||||
string(REPLACE ".in" "" _fileExt ${_fileExt})
|
||||
#.......................................
|
||||
set(_outFile "${CMAKE_CURRENT_BINARY_DIR}/${_fileName}${_fileExt}")
|
||||
|
||||
file(GLOB _translations
|
||||
${_translationDir}/${_fileName}_*${_fileExt}
|
||||
${_translationDir}/local/${_fileName}_*${_fileExt}
|
||||
)
|
||||
|
||||
set(_pattern "'\\[.*]\\s*='")
|
||||
if (_translations)
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
|
||||
COMMENT "Generating ${_fileName}${_fileExt}"
|
||||
)
|
||||
else()
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
COMMENT "Generating ${_fileName}${_fileExt}"
|
||||
)
|
||||
endif()
|
||||
|
||||
set(__result ${__result} ${_outFile})
|
||||
|
||||
|
||||
# TX file ***********************************************
|
||||
set(_txFile "${CMAKE_BINARY_DIR}/tx/${_fileName}${_fileExt}.tx.sh")
|
||||
string(REPLACE "${CMAKE_SOURCE_DIR}/" "" _tx_translationDir ${_translationDir})
|
||||
string(REPLACE "${CMAKE_SOURCE_DIR}/" "" _tx_inFile ${_inFile})
|
||||
string(REPLACE "." "" _fileType ${_fileExt})
|
||||
|
||||
file(WRITE ${_txFile}
|
||||
"[ -f ${_inFile} ] || exit 0\n"
|
||||
"echo '[lxde-qt.${_fileName}_${_fileType}]'\n"
|
||||
"echo 'type = DESKTOP'\n"
|
||||
"echo 'source_lang = en'\n"
|
||||
"echo 'source_file = ${_tx_inFile}'\n"
|
||||
"echo 'file_filter = ${_tx_translationDir}/${_fileName}_<lang>${_fileExt}'\n"
|
||||
"echo ''\n"
|
||||
)
|
||||
|
||||
endforeach()
|
||||
|
||||
set(${_RESULT} ${__result} PARENT_SCOPE)
|
||||
endfunction(lxqt_translate_desktop)
|
131
cmake/LXQtTranslateTs.cmake
Normal file
131
cmake/LXQtTranslateTs.cmake
Normal file
@ -0,0 +1,131 @@
|
||||
#=============================================================================
|
||||
# Copyright 2014 Luís Pereira <luis.artur.pereira@gmail.com>
|
||||
#
|
||||
# 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 <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()
|
112
cmake/Qt5PatchedLinguistToolsMacros.cmake
Normal file
112
cmake/Qt5PatchedLinguistToolsMacros.cmake
Normal file
@ -0,0 +1,112 @@
|
||||
#=============================================================================
|
||||
# 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()
|
@ -3,6 +3,7 @@ project(fm-qt)
|
||||
set(LIBRARY_NAME "fm-qt5")
|
||||
set(QTX_INCLUDE_DIRS "")
|
||||
set(QTX_LIBRARIES Qt5::Widgets Qt5::X11Extras)
|
||||
set(libfm_TRANSLATION_TEMPLATE "lib${PROJECT_NAME}")
|
||||
|
||||
include_directories(
|
||||
${QTX_INCLUDE_DIRS}
|
||||
@ -31,6 +32,7 @@ set(libfm_SRCS
|
||||
proxyfoldermodel.cpp
|
||||
folderview.cpp
|
||||
folderitemdelegate.cpp
|
||||
createnewmenu.cpp
|
||||
filemenu.cpp
|
||||
foldermenu.cpp
|
||||
filepropsdialog.cpp
|
||||
@ -75,9 +77,17 @@ set(libfm_UIS
|
||||
|
||||
qt5_wrap_ui(libfm_UIS_H ${libfm_UIS})
|
||||
|
||||
# add translation for libfm-qt
|
||||
lxqt_translate_ts(QM_FILES
|
||||
UPDATE_TRANSLATIONS ${UPDATE_TRANSLATIONS}
|
||||
SOURCES ${libfm_SRCS} ${libfm_UIS}
|
||||
TEMPLATE ${libfm_TRANSLATION_TEMPLATE}
|
||||
)
|
||||
|
||||
add_library(${LIBRARY_NAME} SHARED
|
||||
${libfm_SRCS}
|
||||
${libfm_UIS_H}
|
||||
${QM_FILES}
|
||||
)
|
||||
|
||||
set_property(
|
||||
@ -131,17 +141,6 @@ else()
|
||||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/lib${LIBRARY_NAME}.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||
endif()
|
||||
|
||||
# add translation for pcmanfm-qt
|
||||
# See http://www.cmake.org/Wiki/CMake:How_To_Build_Qt4_Software
|
||||
option (UPDATE_TRANSLATIONS "Update source translation translations/*.ts files")
|
||||
file(GLOB TS_FILES translations/*.ts)
|
||||
if(UPDATE_TRANSLATIONS)
|
||||
qt5_create_translation(QM_FILES ${libfm_SRCS} ${libfm_UIS} ${TS_FILES})
|
||||
else()
|
||||
qt5_add_translation(QM_FILES ${TS_FILES})
|
||||
endif()
|
||||
|
||||
add_custom_target(libfm_translations DEPENDS ${QM_FILES})
|
||||
install(FILES ${QM_FILES} DESTINATION "${CMAKE_INSTALL_DATADIR}/libfm-qt/translations")
|
||||
|
||||
# prevent the generated files from being deleted during make cleaner
|
||||
|
@ -29,9 +29,10 @@ AppChooserComboBox::AppChooserComboBox(QWidget* parent):
|
||||
QComboBox(parent),
|
||||
defaultApp_(NULL),
|
||||
appInfos_(NULL),
|
||||
defaultAppIndex_(0),
|
||||
defaultAppIndex_(-1),
|
||||
prevIndex_(0),
|
||||
mimeType_(NULL) {
|
||||
mimeType_(NULL),
|
||||
blockOnCurrentIndexChanged_(false) {
|
||||
|
||||
// the new Qt5 signal/slot syntax cannot handle overloaded methods by default
|
||||
// hence a type-casting is needed here. really ugly!
|
||||
@ -69,14 +70,15 @@ void AppChooserComboBox::setMimeType(FmMimeType* mimeType) {
|
||||
// QVariant data = qVariantFromValue<void*>(app);
|
||||
// addItem(IconTheme::icon(gicon), name, data);
|
||||
addItem(IconTheme::icon(gicon), name);
|
||||
if(app == defaultApp_)
|
||||
if(g_app_info_equal(app, defaultApp_))
|
||||
defaultAppIndex_ = i;
|
||||
}
|
||||
setCurrentIndex(defaultAppIndex_);
|
||||
}
|
||||
// add "Other applications" item
|
||||
insertSeparator(count());
|
||||
addItem(tr("Customize"));
|
||||
if(defaultAppIndex_ != -1)
|
||||
setCurrentIndex(defaultAppIndex_);
|
||||
}
|
||||
|
||||
// returns the currently selected app.
|
||||
@ -89,7 +91,7 @@ bool AppChooserComboBox::isChanged() {
|
||||
}
|
||||
|
||||
void AppChooserComboBox::onCurrentIndexChanged(int index) {
|
||||
if(index == -1 || index == prevIndex_)
|
||||
if(index == -1 || index == prevIndex_ || blockOnCurrentIndexChanged_)
|
||||
return;
|
||||
|
||||
// the last item is "Customize"
|
||||
@ -108,6 +110,10 @@ void AppChooserComboBox::onCurrentIndexChanged(int index) {
|
||||
if(g_app_info_equal(app, G_APP_INFO(found->data)))
|
||||
break;
|
||||
}
|
||||
|
||||
// inserting new items or change current index will recursively trigger onCurrentIndexChanged.
|
||||
// we need to block our handler to prevent recursive calls.
|
||||
blockOnCurrentIndexChanged_ = true;
|
||||
/* if it's already in the list, select it */
|
||||
if(found) {
|
||||
setCurrentIndex(g_list_position(appInfos_, found));
|
||||
@ -120,11 +126,16 @@ void AppChooserComboBox::onCurrentIndexChanged(int index) {
|
||||
insertItem(0, IconTheme::icon(gicon), name);
|
||||
setCurrentIndex(0);
|
||||
}
|
||||
blockOnCurrentIndexChanged_ = false;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// block our handler to prevent recursive calls.
|
||||
blockOnCurrentIndexChanged_ = true;
|
||||
// restore to previously selected item
|
||||
setCurrentIndex(prevIndex_);
|
||||
blockOnCurrentIndexChanged_ = false;
|
||||
}
|
||||
else {
|
||||
prevIndex_ = index;
|
||||
|
@ -53,6 +53,7 @@ private:
|
||||
GAppInfo* defaultApp_; // default application used to open the file type
|
||||
int defaultAppIndex_;
|
||||
int prevIndex_;
|
||||
bool blockOnCurrentIndexChanged_;
|
||||
};
|
||||
|
||||
}
|
||||
|
90
libfm-qt/createnewmenu.cpp
Normal file
90
libfm-qt/createnewmenu.cpp
Normal file
@ -0,0 +1,90 @@
|
||||
/*
|
||||
Menu with entries to create new folders and files.
|
||||
Copyright (C) 2012 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "createnewmenu.h"
|
||||
#include "folderview.h"
|
||||
#include "icontheme.h"
|
||||
#include "utilities.h"
|
||||
|
||||
namespace Fm {
|
||||
|
||||
CreateNewMenu::CreateNewMenu(QWidget* dialogParent, FmPath* dirPath, QWidget* parent):
|
||||
QMenu(parent), dialogParent_(dialogParent), dirPath_(dirPath) {
|
||||
QAction* action = new QAction(QIcon::fromTheme("folder-new"), tr("Folder"), this);
|
||||
connect(action, &QAction::triggered, this, &CreateNewMenu::onCreateNewFolder);
|
||||
addAction(action);
|
||||
|
||||
action = new QAction(QIcon::fromTheme("document-new"), tr("Blank File"), this);
|
||||
connect(action, &QAction::triggered, this, &CreateNewMenu::onCreateNewFile);
|
||||
addAction(action);
|
||||
|
||||
// add more items to "Create New" menu from templates
|
||||
GList* templates = fm_template_list_all(fm_config->only_user_templates);
|
||||
if(templates) {
|
||||
addSeparator();
|
||||
for(GList* l = templates; l; l = l->next) {
|
||||
FmTemplate* templ = (FmTemplate*)l->data;
|
||||
/* we support directories differently */
|
||||
if(fm_template_is_directory(templ))
|
||||
continue;
|
||||
FmMimeType* mime_type = fm_template_get_mime_type(templ);
|
||||
const char* label = fm_template_get_label(templ);
|
||||
QString text = QString("%1 (%2)").arg(QString::fromUtf8(label)).arg(QString::fromUtf8(fm_mime_type_get_desc(mime_type)));
|
||||
FmIcon* icon = fm_template_get_icon(templ);
|
||||
if(!icon)
|
||||
icon = fm_mime_type_get_icon(mime_type);
|
||||
QAction* action = addAction(IconTheme::icon(icon), text);
|
||||
action->setObjectName(QString::fromUtf8(fm_template_get_name(templ, NULL)));
|
||||
connect(action, &QAction::triggered, this, &CreateNewMenu::onCreateNew);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
CreateNewMenu::~CreateNewMenu() {
|
||||
}
|
||||
|
||||
void CreateNewMenu::onCreateNewFile() {
|
||||
if(dirPath_)
|
||||
createFileOrFolder(CreateNewTextFile, dirPath_);
|
||||
}
|
||||
|
||||
void CreateNewMenu::onCreateNewFolder() {
|
||||
if(dirPath_)
|
||||
createFileOrFolder(CreateNewFolder, dirPath_);
|
||||
}
|
||||
|
||||
void CreateNewMenu::onCreateNew() {
|
||||
QAction* action = static_cast<QAction*>(sender());
|
||||
QByteArray name = action->objectName().toUtf8();
|
||||
GList* templates = fm_template_list_all(fm_config->only_user_templates);
|
||||
FmTemplate* templ = NULL;
|
||||
for(GList* l = templates; l; l = l->next) {
|
||||
FmTemplate* t = (FmTemplate*)l->data;
|
||||
if(name == fm_template_get_name(t, NULL)) {
|
||||
templ = t;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(templ) { // template found
|
||||
if(dirPath_)
|
||||
createFileOrFolder(CreateWithTemplate, dirPath_, templ, dialogParent_);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Fm
|
51
libfm-qt/createnewmenu.h
Normal file
51
libfm-qt/createnewmenu.h
Normal file
@ -0,0 +1,51 @@
|
||||
/*
|
||||
Menu with entries to create new folders and files.
|
||||
Copyright (C) 2012 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef FM_CREATENEWMENU_H
|
||||
#define FM_CREATENEWMENU_H
|
||||
|
||||
#include "libfmqtglobals.h"
|
||||
#include <QMenu>
|
||||
#include <libfm/fm.h>
|
||||
|
||||
namespace Fm {
|
||||
|
||||
class FolderView;
|
||||
|
||||
class LIBFM_QT_API CreateNewMenu : public QMenu {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CreateNewMenu(QWidget* dialogParent, FmPath* dirPath,
|
||||
QWidget* parent = 0);
|
||||
virtual ~CreateNewMenu();
|
||||
|
||||
protected Q_SLOTS:
|
||||
void onCreateNewFolder();
|
||||
void onCreateNewFile();
|
||||
void onCreateNew();
|
||||
|
||||
private:
|
||||
QWidget* dialogParent_;
|
||||
FmPath* dirPath_;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // FM_CREATENEWMENU_H
|
@ -226,7 +226,6 @@ qDebug() << "folder loaded";
|
||||
void DirTreeModelItem::onFolderFilesAdded(FmFolder* folder, GSList* files, gpointer user_data) {
|
||||
GSList* l;
|
||||
DirTreeModelItem* _this = (DirTreeModelItem*)user_data;
|
||||
DirTreeModel* model = _this->model_;
|
||||
for(l = files; l; l = l->next) {
|
||||
FmFileInfo* fi = FM_FILE_INFO(l->data);
|
||||
if(fm_file_info_is_dir(fi)) { /* FIXME: maybe adding files can be allowed later */
|
||||
|
@ -23,8 +23,10 @@
|
||||
#include <QDebug>
|
||||
#include <QItemSelection>
|
||||
#include <QGuiApplication>
|
||||
#include <QMouseEvent>
|
||||
#include "dirtreemodel.h"
|
||||
#include "dirtreemodelitem.h"
|
||||
#include "filemenu.h"
|
||||
|
||||
using namespace Fm;
|
||||
|
||||
@ -39,6 +41,10 @@ DirTreeView::DirTreeView(QWidget* parent):
|
||||
|
||||
connect(this, &DirTreeView::collapsed, this, &DirTreeView::onCollapsed);
|
||||
connect(this, &DirTreeView::expanded, this, &DirTreeView::onExpanded);
|
||||
|
||||
setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
connect(this, &DirTreeView::customContextMenuRequested,
|
||||
this, &DirTreeView::onCustomContextMenuRequested);
|
||||
}
|
||||
|
||||
DirTreeView::~DirTreeView() {
|
||||
@ -98,7 +104,7 @@ void DirTreeView::onRowLoaded(const QModelIndex& index) {
|
||||
/* disconnect the handler since we only need it once */
|
||||
disconnect(_model, &DirTreeModel::rowLoaded, this, &DirTreeView::onRowLoaded);
|
||||
|
||||
DirTreeModelItem* item = _model->itemFromIndex(index);
|
||||
// DirTreeModelItem* item = _model->itemFromIndex(index);
|
||||
// qDebug() << "row loaded: " << item->displayName_;
|
||||
/* after the folder is loaded, the files should have been added to
|
||||
* the tree model */
|
||||
@ -122,7 +128,7 @@ void DirTreeView::setCurrentPath(FmPath* path) {
|
||||
if(!_model)
|
||||
return;
|
||||
int rowCount = _model->rowCount(QModelIndex());
|
||||
if(rowCount == 0 || fm_path_equal(currentPath_, path))
|
||||
if(rowCount <= 0 || fm_path_equal(currentPath_, path))
|
||||
return;
|
||||
|
||||
if(currentPath_)
|
||||
@ -172,9 +178,85 @@ void DirTreeView::setModel(QAbstractItemModel* model) {
|
||||
connect(selectionModel(), &QItemSelectionModel::selectionChanged, this, &DirTreeView::onSelectionChanged);
|
||||
}
|
||||
|
||||
void DirTreeView::mousePressEvent(QMouseEvent* event) {
|
||||
if(event && event->button() == Qt::RightButton &&
|
||||
event->type() == QEvent::MouseButtonPress) {
|
||||
// Do not change the selection when the context menu is activated.
|
||||
return;
|
||||
}
|
||||
QTreeView::mousePressEvent(event);
|
||||
}
|
||||
|
||||
void DirTreeView::contextMenuEvent(QContextMenuEvent* event) {
|
||||
QAbstractScrollArea::contextMenuEvent(event);
|
||||
void DirTreeView::onCustomContextMenuRequested(const QPoint& pos) {
|
||||
QModelIndex index = indexAt(pos);
|
||||
if(index.isValid()) {
|
||||
QVariant data = index.data(DirTreeModel::FileInfoRole);
|
||||
FmFileInfo* fileInfo = reinterpret_cast<FmFileInfo*>(data.value<void*>());
|
||||
if(fileInfo) {
|
||||
FmPath* path = fm_file_info_get_path(fileInfo);
|
||||
FmFileInfoList* files = fm_file_info_list_new();
|
||||
fm_file_info_list_push_tail(files, fileInfo);
|
||||
Fm::FileMenu* menu = new Fm::FileMenu(files, fileInfo, path);
|
||||
// FIXME: apply some settings to the menu and set a proper file launcher to it
|
||||
Q_EMIT prepareFileMenu(menu);
|
||||
fm_file_info_list_unref(files);
|
||||
QVariant pathData = qVariantFromValue(reinterpret_cast<void*>(path));
|
||||
QAction* action = menu->openAction();
|
||||
action->disconnect();
|
||||
action->setData(index);
|
||||
connect(action, &QAction::triggered, this, &DirTreeView::onOpen);
|
||||
action = new QAction(QIcon::fromTheme("window-new"), tr("Open in New T&ab"), menu);
|
||||
action->setData(pathData);
|
||||
connect(action, &QAction::triggered, this, &DirTreeView::onNewTab);
|
||||
menu->insertAction(menu->separator1(), action);
|
||||
action = new QAction(QIcon::fromTheme("window-new"), tr("Open in New Win&dow"), menu);
|
||||
action->setData(pathData);
|
||||
connect(action, &QAction::triggered, this, &DirTreeView::onNewWindow);
|
||||
menu->insertAction(menu->separator1(), action);
|
||||
if(fm_file_info_is_native(fileInfo)) {
|
||||
action = new QAction(QIcon::fromTheme("utilities-terminal"), tr("Open in Termina&l"), menu);
|
||||
action->setData(pathData);
|
||||
connect(action, &QAction::triggered, this, &DirTreeView::onOpenInTerminal);
|
||||
menu->insertAction(menu->separator1(), action);
|
||||
}
|
||||
menu->exec(mapToGlobal(pos));
|
||||
delete menu;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void DirTreeView::onOpen() {
|
||||
if(QAction* action = qobject_cast<QAction*>(sender())) {
|
||||
setCurrentIndex(action->data().toModelIndex());
|
||||
}
|
||||
}
|
||||
|
||||
void DirTreeView::onNewWindow() {
|
||||
if(QAction* action = qobject_cast<QAction*>(sender())) {
|
||||
FmPath* path = reinterpret_cast<FmPath*>(action->data().value<void*>());
|
||||
Q_EMIT openFolderInNewWindowRequested(path);
|
||||
}
|
||||
}
|
||||
|
||||
void DirTreeView::onNewTab() {
|
||||
if(QAction* action = qobject_cast<QAction*>(sender())) {
|
||||
FmPath* path = reinterpret_cast<FmPath*>(action->data().value<void*>());
|
||||
Q_EMIT openFolderInNewTabRequested(path);
|
||||
}
|
||||
}
|
||||
|
||||
void DirTreeView::onOpenInTerminal() {
|
||||
if(QAction* action = qobject_cast<QAction*>(sender())) {
|
||||
FmPath* path = reinterpret_cast<FmPath*>(action->data().value<void*>());
|
||||
Q_EMIT openFolderInTerminalRequested(path);
|
||||
}
|
||||
}
|
||||
|
||||
void DirTreeView::onNewFolder() {
|
||||
if(QAction* action = qobject_cast<QAction*>(sender())) {
|
||||
FmPath* path = reinterpret_cast<FmPath*>(action->data().value<void*>());
|
||||
Q_EMIT createNewFolderRequested(path);
|
||||
}
|
||||
}
|
||||
|
||||
void DirTreeView::onCollapsed(const QModelIndex& index) {
|
||||
|
@ -30,6 +30,7 @@ class QItemSelection;
|
||||
|
||||
namespace Fm {
|
||||
|
||||
class FileMenu;
|
||||
class DirTreeModelItem;
|
||||
|
||||
class LIBFM_QT_API DirTreeView : public QTreeView {
|
||||
@ -57,7 +58,7 @@ public:
|
||||
virtual void setModel(QAbstractItemModel* model);
|
||||
|
||||
protected:
|
||||
virtual void contextMenuEvent(QContextMenuEvent* event);
|
||||
virtual void mousePressEvent(QMouseEvent* event);
|
||||
|
||||
private:
|
||||
void cancelPendingChdir();
|
||||
@ -65,12 +66,23 @@ private:
|
||||
|
||||
Q_SIGNALS:
|
||||
void chdirRequested(int type, FmPath* path);
|
||||
void openFolderInNewWindowRequested(FmPath* path);
|
||||
void openFolderInNewTabRequested(FmPath* path);
|
||||
void openFolderInTerminalRequested(FmPath* path);
|
||||
void createNewFolderRequested(FmPath* path);
|
||||
void prepareFileMenu(Fm::FileMenu* menu); // emit before showing a Fm::FileMenu
|
||||
|
||||
protected Q_SLOTS:
|
||||
void onCollapsed(const QModelIndex & index);
|
||||
void onExpanded(const QModelIndex & index);
|
||||
void onRowLoaded(const QModelIndex& index);
|
||||
void onSelectionChanged(const QItemSelection & selected, const QItemSelection & deselected);
|
||||
void onCustomContextMenuRequested(const QPoint& pos);
|
||||
void onOpen();
|
||||
void onNewWindow();
|
||||
void onNewTab();
|
||||
void onOpenInTerminal();
|
||||
void onNewFolder();
|
||||
|
||||
private:
|
||||
FmPath* currentPath_;
|
||||
|
@ -37,8 +37,8 @@ EditBookmarksDialog::EditBookmarksDialog(FmBookmarks* bookmarks, QWidget* parent
|
||||
setAttribute(Qt::WA_DeleteOnClose); // auto delete on close
|
||||
|
||||
// load bookmarks
|
||||
GList* l = fm_bookmarks_get_all(bookmarks_);
|
||||
for(; l; l = l->next) {
|
||||
GList* allBookmarks = fm_bookmarks_get_all(bookmarks_);
|
||||
for(GList* l = allBookmarks; l; l = l->next) {
|
||||
FmBookmarkItem* bookmark = reinterpret_cast<FmBookmarkItem*>(l->data);
|
||||
QTreeWidgetItem* item = new QTreeWidgetItem();
|
||||
char* path_str = fm_path_display_name(bookmark->path, false);
|
||||
@ -48,6 +48,7 @@ EditBookmarksDialog::EditBookmarksDialog(FmBookmarks* bookmarks, QWidget* parent
|
||||
g_free(path_str);
|
||||
ui->treeWidget->addTopLevelItem(item);
|
||||
}
|
||||
g_list_free_full(allBookmarks, (GDestroyNotify)fm_bookmark_item_unref);
|
||||
|
||||
connect(ui->addItem, &QPushButton::clicked, this, &EditBookmarksDialog::onAddItem);
|
||||
connect(ui->removeItem, &QPushButton::clicked, this, &EditBookmarksDialog::onRemoveItem);
|
||||
|
@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>407</width>
|
||||
<height>396</height>
|
||||
<width>424</width>
|
||||
<height>456</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
@ -19,7 +19,16 @@
|
||||
</iconset>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>10</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>10</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>10</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>10</number>
|
||||
</property>
|
||||
<item>
|
||||
@ -86,6 +95,9 @@
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
@ -106,6 +118,9 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
@ -126,6 +141,9 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
@ -146,6 +164,9 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="0">
|
||||
@ -166,6 +187,9 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="8" column="0">
|
||||
@ -186,6 +210,9 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
@ -209,6 +236,9 @@
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
@ -216,6 +246,9 @@
|
||||
<property name="text">
|
||||
<string>Open With:</string>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="1">
|
||||
@ -240,6 +273,9 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
|
@ -37,12 +37,11 @@ FmFileLauncher FileLauncher::funcs = {
|
||||
FileLauncher::_ask
|
||||
};
|
||||
|
||||
FileLauncher::FileLauncher() {
|
||||
|
||||
FileLauncher::FileLauncher():
|
||||
quickExec_(false) {
|
||||
}
|
||||
|
||||
FileLauncher::~FileLauncher() {
|
||||
|
||||
}
|
||||
|
||||
//static
|
||||
@ -82,6 +81,15 @@ bool FileLauncher::openFolder(GAppLaunchContext* ctx, GList* folder_infos, GErro
|
||||
}
|
||||
|
||||
FmFileLauncherExecAction FileLauncher::execFile(FmFileInfo* file) {
|
||||
if (quickExec_) {
|
||||
/* SF bug#838: open terminal for each script may be just a waste.
|
||||
User should open a terminal and start the script there
|
||||
in case if user wants to see the script output anyway.
|
||||
if (fm_file_info_is_text(file))
|
||||
return FM_FILE_LAUNCHER_EXEC_IN_TERMINAL; */
|
||||
return FM_FILE_LAUNCHER_EXEC;
|
||||
}
|
||||
|
||||
FmFileLauncherExecAction res = FM_FILE_LAUNCHER_EXEC_CANCEL;
|
||||
ExecFileDialog dlg(file);
|
||||
if(execModelessDialog(&dlg) == QDialog::Accepted) {
|
||||
|
@ -34,16 +34,24 @@ public:
|
||||
|
||||
bool launchFiles(QWidget* parent, FmFileInfoList* file_infos) {
|
||||
GList* fileList = fm_file_info_list_peek_head_link(file_infos);
|
||||
return Fm::FileLauncher::launchFiles(parent, fileList);
|
||||
return launchFiles(parent, fileList);
|
||||
}
|
||||
bool launchPaths(QWidget* parent, FmPathList* paths) {
|
||||
GList* pathList = fm_path_list_peek_head_link(paths);
|
||||
return Fm::FileLauncher::launchPaths(parent, pathList);
|
||||
return launchPaths(parent, pathList);
|
||||
}
|
||||
|
||||
bool launchFiles(QWidget* parent, GList* file_infos);
|
||||
bool launchPaths(QWidget* parent, GList* paths);
|
||||
|
||||
bool quickExec() const {
|
||||
return quickExec_;
|
||||
}
|
||||
|
||||
void setQuickExec(bool value) {
|
||||
quickExec_ = value;
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
virtual GAppInfo* getApp(GList* file_infos, FmMimeType* mime_type, GError** err);
|
||||
@ -71,6 +79,7 @@ private:
|
||||
|
||||
private:
|
||||
static FmFileLauncher funcs;
|
||||
bool quickExec_; // Don't ask options on launch executable file
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -19,6 +19,7 @@
|
||||
|
||||
|
||||
#include "filemenu.h"
|
||||
#include "createnewmenu.h"
|
||||
#include "icontheme.h"
|
||||
#include "filepropsdialog.h"
|
||||
#include "utilities.h"
|
||||
@ -59,6 +60,8 @@ FileMenu::~FileMenu() {
|
||||
void FileMenu::createMenu(FmFileInfoList* files, FmFileInfo* info, FmPath* cwd) {
|
||||
useTrash_ = true;
|
||||
confirmDelete_ = true;
|
||||
confirmTrash_ = false; // Confirm before moving files into "trash can"
|
||||
|
||||
files_ = fm_file_info_list_ref(files);
|
||||
info_ = info ? fm_file_info_ref(info) : NULL;
|
||||
cwd_ = cwd ? fm_path_ref(cwd) : NULL;
|
||||
@ -113,6 +116,13 @@ void FileMenu::createMenu(FmFileInfoList* files, FmFileInfo* info, FmPath* cwd)
|
||||
|
||||
separator1_ = addSeparator();
|
||||
|
||||
QAction* createAction = new QAction(tr("Create &New"), this);
|
||||
FmPath* dirPath = fm_file_info_list_get_length(files) == 1 && fm_file_info_is_dir(first)
|
||||
? path : cwd_;
|
||||
createAction->setMenu(new CreateNewMenu(NULL, dirPath, this));
|
||||
addAction(createAction);
|
||||
addSeparator();
|
||||
|
||||
if(allTrash_) { // all selected files are in trash:///
|
||||
bool can_restore = true;
|
||||
/* only immediate children of trash:/// can be restored. */
|
||||
@ -143,7 +153,7 @@ void FileMenu::createMenu(FmFileInfoList* files, FmFileInfo* info, FmPath* cwd)
|
||||
connect(pasteAction_, &QAction::triggered, this, &FileMenu::onPasteTriggered);
|
||||
addAction(pasteAction_);
|
||||
|
||||
deleteAction_ = new QAction(QIcon::fromTheme("edit-delete"), tr("&Move to Trash"), this);
|
||||
deleteAction_ = new QAction(QIcon::fromTheme("user-trash"), tr("&Move to Trash"), this);
|
||||
connect(deleteAction_, &QAction::triggered, this, &FileMenu::onDeleteTriggered);
|
||||
addAction(deleteAction_);
|
||||
|
||||
@ -311,7 +321,7 @@ void FileMenu::onCutTriggered() {
|
||||
void FileMenu::onDeleteTriggered() {
|
||||
FmPathList* paths = fm_path_list_new_from_file_info_list(files_);
|
||||
if(useTrash_)
|
||||
FileOperation::trashFiles(paths, confirmDelete_);
|
||||
FileOperation::trashFiles(paths, confirmTrash_);
|
||||
else
|
||||
FileOperation::deleteFiles(paths, confirmDelete_);
|
||||
fm_path_list_unref(paths);
|
||||
@ -337,6 +347,7 @@ void FileMenu::setUseTrash(bool trash) {
|
||||
if(useTrash_ != trash) {
|
||||
useTrash_ = trash;
|
||||
deleteAction_->setText(useTrash_ ? tr("&Move to Trash") : tr("&Delete"));
|
||||
deleteAction_->setIcon(useTrash_ ? QIcon::fromTheme("user-trash") : QIcon::fromTheme("edit-delete"));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -140,6 +140,14 @@ public:
|
||||
return allTrash_;
|
||||
}
|
||||
|
||||
bool confirmTrash() const {
|
||||
return confirmTrash_;
|
||||
}
|
||||
|
||||
void setConfirmTrash(bool value) {
|
||||
confirmTrash_ = value;
|
||||
}
|
||||
|
||||
protected:
|
||||
void createMenu(FmFileInfoList* files, FmFileInfo* info, FmPath* cwd);
|
||||
#ifdef CUSTOM_ACTIONS
|
||||
@ -172,6 +180,8 @@ private:
|
||||
FmPath* cwd_;
|
||||
bool useTrash_;
|
||||
bool confirmDelete_;
|
||||
bool confirmTrash_; // Confirm before moving files into "trash can"
|
||||
|
||||
bool sameType_;
|
||||
bool sameFilesystem_;
|
||||
bool allVirtual_;
|
||||
|
@ -86,6 +86,7 @@ FileOperation::~FileOperation() {
|
||||
}
|
||||
|
||||
bool FileOperation::run() {
|
||||
delete uiTimer;
|
||||
// run the job
|
||||
uiTimer = new QTimer();
|
||||
uiTimer->start(SHOW_DLG_DELAY);
|
||||
|
@ -349,7 +349,7 @@ void FilePropsDialog::accept() {
|
||||
// check if chown or chmod is needed
|
||||
guint32 newUid = uidFromName(ui->owner->text());
|
||||
guint32 newGid = gidFromName(ui->ownerGroup->text());
|
||||
bool needChown = (newUid != uid || newGid != gid);
|
||||
bool needChown = (newUid != -1 && newUid != uid) || (newGid != -1 && newGid != gid);
|
||||
|
||||
int newOwnerPermSel = ui->ownerPerm->currentIndex();
|
||||
int newGroupPermSel = ui->groupPerm->currentIndex();
|
||||
|
@ -53,8 +53,6 @@ QSize FolderItemDelegate::sizeHint(const QStyleOptionViewItem& option, const QMo
|
||||
initStyleOption(&opt, index);
|
||||
opt.decorationAlignment = Qt::AlignHCenter|Qt::AlignTop;
|
||||
opt.displayAlignment = Qt::AlignTop|Qt::AlignHCenter;
|
||||
const QWidget* widget = opt.widget;
|
||||
QStyle* style = widget ? widget->style() : QApplication::style();
|
||||
|
||||
// FIXME: there're some problems in this size hint calculation.
|
||||
Q_ASSERT(gridSize_ != QSize());
|
||||
@ -132,9 +130,6 @@ void FolderItemDelegate::paint(QPainter* painter, const QStyleOptionViewItem& op
|
||||
|
||||
// if painter is NULL, the method calculate the bounding rectangle of the text and save it to textRect
|
||||
void FolderItemDelegate::drawText(QPainter* painter, QStyleOptionViewItemV4& opt, QRectF& textRect) const {
|
||||
const QWidget* widget = opt.widget;
|
||||
QStyle* style = widget->style() ? widget->style() : qApp->style();
|
||||
const int focusMargin = style->pixelMetric(QStyle::PM_FocusFrameHMargin, &opt, widget);
|
||||
QTextLayout layout(opt.text, opt.font);
|
||||
QTextOption textOption;
|
||||
textOption.setAlignment(opt.displayAlignment);
|
||||
@ -210,7 +205,10 @@ void FolderItemDelegate::drawText(QPainter* painter, QStyleOptionViewItemV4& opt
|
||||
? QPalette::Normal : QPalette::Disabled;
|
||||
o.backgroundColor = opt.palette.color(cg, (opt.state & QStyle::State_Selected)
|
||||
? QPalette::Highlight : QPalette::Window);
|
||||
style->drawPrimitive(QStyle::PE_FrameFocusRect, &o, painter, widget);
|
||||
if (const QWidget* widget = opt.widget) {
|
||||
QStyle* style = widget->style() ? widget->style() : qApp->style();
|
||||
style->drawPrimitive(QStyle::PE_FrameFocusRect, &o, painter, widget);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
|
||||
#include "foldermenu.h"
|
||||
#include "createnewmenu.h"
|
||||
#include "filepropsdialog.h"
|
||||
#include "folderview.h"
|
||||
#include "utilities.h"
|
||||
@ -36,8 +37,7 @@ FolderMenu::FolderMenu(FolderView* view, QWidget* parent):
|
||||
createAction_ = new QAction(tr("Create &New"), this);
|
||||
addAction(createAction_);
|
||||
|
||||
createCreateNewMenu();
|
||||
createAction_->setMenu(createNewMenu_);
|
||||
createAction_->setMenu(new CreateNewMenu(view_, view_->path(), this));
|
||||
|
||||
separator1_ = addSeparator();
|
||||
|
||||
@ -78,40 +78,6 @@ FolderMenu::FolderMenu(FolderView* view, QWidget* parent):
|
||||
FolderMenu::~FolderMenu() {
|
||||
}
|
||||
|
||||
void FolderMenu::createCreateNewMenu() {
|
||||
QMenu* createMenu = new QMenu(this);
|
||||
createNewMenu_ = createMenu;
|
||||
|
||||
QAction* action = new QAction(tr("Folder"), this);
|
||||
connect(action, &QAction::triggered, this, &FolderMenu::onCreateNewFolder);
|
||||
createMenu->addAction(action);
|
||||
|
||||
action = new QAction(tr("Blank File"), this);
|
||||
connect(action, &QAction::triggered, this, &FolderMenu::onCreateNewFile);
|
||||
createMenu->addAction(action);
|
||||
|
||||
// add more items to "Create New" menu from templates
|
||||
GList* templates = fm_template_list_all(fm_config->only_user_templates);
|
||||
if(templates) {
|
||||
createMenu->addSeparator();
|
||||
for(GList* l = templates; l; l = l->next) {
|
||||
FmTemplate* templ = (FmTemplate*)l->data;
|
||||
/* we support directories differently */
|
||||
if(fm_template_is_directory(templ))
|
||||
continue;
|
||||
FmMimeType* mime_type = fm_template_get_mime_type(templ);
|
||||
const char* label = fm_template_get_label(templ);
|
||||
QString text = QString("%1 (%2)").arg(QString::fromUtf8(label)).arg(QString::fromUtf8(fm_mime_type_get_desc(mime_type)));
|
||||
FmIcon* icon = fm_template_get_icon(templ);
|
||||
if(!icon)
|
||||
icon = fm_mime_type_get_icon(mime_type);
|
||||
QAction* action = createMenu->addAction(IconTheme::icon(icon), text);
|
||||
action->setObjectName(QString::fromUtf8(fm_template_get_name(templ, NULL)));
|
||||
connect(action, &QAction::triggered, this, &FolderMenu::onCreateNew);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void FolderMenu::addSortMenuItem(QString title, int id) {
|
||||
QAction* action = new QAction(title, this);
|
||||
sortMenu_->addAction(action);
|
||||
@ -263,38 +229,4 @@ void FolderMenu::onPropertiesActionTriggered() {
|
||||
FilePropsDialog::showForFile(folderInfo);
|
||||
}
|
||||
|
||||
void FolderMenu::onCreateNewFile() {
|
||||
FmPath* dirPath = view_->path();
|
||||
|
||||
if(dirPath)
|
||||
createFile(CreateNewTextFile, dirPath);
|
||||
}
|
||||
|
||||
void FolderMenu::onCreateNewFolder() {
|
||||
FmPath* dirPath = view_->path();
|
||||
|
||||
if(dirPath)
|
||||
createFile(CreateNewFolder, dirPath);
|
||||
}
|
||||
|
||||
void FolderMenu::onCreateNew() {
|
||||
QAction* action = static_cast<QAction*>(sender());
|
||||
QByteArray name = action->objectName().toUtf8();
|
||||
GList* templates = fm_template_list_all(fm_config->only_user_templates);
|
||||
FmTemplate* templ = NULL;
|
||||
for(GList* l = templates; l; l = l->next) {
|
||||
FmTemplate* t = (FmTemplate*)l->data;
|
||||
if(name == fm_template_get_name(t, NULL)) {
|
||||
templ = t;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(templ) { // template found
|
||||
FmPath* dirPath = view_->path();
|
||||
if(dirPath)
|
||||
createFile(CreateWithTemplate, dirPath, templ, view_);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
} // namespace Fm
|
||||
|
@ -88,11 +88,6 @@ public:
|
||||
}
|
||||
|
||||
protected Q_SLOTS:
|
||||
|
||||
void onCreateNewFolder();
|
||||
void onCreateNewFile();
|
||||
void onCreateNew();
|
||||
|
||||
void onPasteActionTriggered();
|
||||
void onSelectAllActionTriggered();
|
||||
void onInvertSelectionActionTriggered();
|
||||
@ -104,14 +99,12 @@ protected Q_SLOTS:
|
||||
void onPropertiesActionTriggered();
|
||||
|
||||
private:
|
||||
void createCreateNewMenu();
|
||||
void createSortMenu();
|
||||
void addSortMenuItem(QString title, int id);
|
||||
|
||||
private:
|
||||
FolderView* view_;
|
||||
QAction* createAction_;
|
||||
QMenu* createNewMenu_;
|
||||
QAction* separator1_;
|
||||
QAction* pasteAction_;
|
||||
QAction* separator2_;
|
||||
|
@ -95,7 +95,8 @@ void FolderModel::onStartLoading(FmFolder* folder, gpointer user_data) {
|
||||
}
|
||||
|
||||
void FolderModel::onFinishLoading(FmFolder* folder, gpointer user_data) {
|
||||
FolderModel* model = static_cast<FolderModel*>(user_data);
|
||||
Q_UNUSED(folder)
|
||||
Q_UNUSED(user_data)
|
||||
}
|
||||
|
||||
void FolderModel::onFilesAdded(FmFolder* folder, GSList* files, gpointer user_data) {
|
||||
@ -119,7 +120,6 @@ void FolderModel::onFilesAdded(FmFolder* folder, GSList* files, gpointer user_da
|
||||
//static
|
||||
void FolderModel::onFilesChanged(FmFolder* folder, GSList* files, gpointer user_data) {
|
||||
FolderModel* model = static_cast<FolderModel*>(user_data);
|
||||
int n_files = g_slist_length(files);
|
||||
for(GSList* l = files; l; l = l->next) {
|
||||
FmFileInfo* info = FM_FILE_INFO(l->data);
|
||||
int row;
|
||||
@ -218,12 +218,10 @@ QVariant FolderModel::data(const QModelIndex & index, int role = Qt::DisplayRole
|
||||
case ColumnFileSize: {
|
||||
const char* name = fm_file_info_get_disp_size(info);
|
||||
return QString::fromUtf8(name);
|
||||
break;
|
||||
}
|
||||
case ColumnFileOwner: {
|
||||
const char* name = fm_file_info_get_disp_owner(info);
|
||||
return QString::fromUtf8(name);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -233,6 +231,7 @@ QVariant FolderModel::data(const QModelIndex & index, int role = Qt::DisplayRole
|
||||
return QVariant(item->icon);
|
||||
// return QVariant(pix);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case FileInfoRole:
|
||||
return qVariantFromValue((void*)info);
|
||||
|
@ -195,6 +195,11 @@ FolderViewTreeView::~FolderViewTreeView() {
|
||||
void FolderViewTreeView::setModel(QAbstractItemModel* model) {
|
||||
QTreeView::setModel(model);
|
||||
layoutColumns();
|
||||
if(ProxyFolderModel* proxyModel = qobject_cast<ProxyFolderModel*>(model)) {
|
||||
connect(proxyModel, &ProxyFolderModel::sortFilterChanged, this, &FolderViewTreeView::onSortFilterChanged,
|
||||
Qt::UniqueConnection);
|
||||
onSortFilterChanged();
|
||||
}
|
||||
}
|
||||
|
||||
void FolderViewTreeView::mousePressEvent(QMouseEvent* event) {
|
||||
@ -262,12 +267,10 @@ void FolderViewTreeView::layoutColumns() {
|
||||
// even when we reduce the width of the filename column to 200,
|
||||
// the available space is not enough. So we give up trying.
|
||||
widths[filenameColumn] = 200;
|
||||
desiredWidth += 200;
|
||||
}
|
||||
else { // we still have more space, so the width of filename column can be increased
|
||||
// expand the filename column to fill all available space.
|
||||
widths[filenameColumn] = availWidth - desiredWidth;
|
||||
desiredWidth = availWidth;
|
||||
}
|
||||
}
|
||||
|
||||
@ -287,7 +290,13 @@ void FolderViewTreeView::layoutColumns() {
|
||||
|
||||
void FolderViewTreeView::resizeEvent(QResizeEvent* event) {
|
||||
QAbstractItemView::resizeEvent(event);
|
||||
if(!doingLayout_) // prevent endless recursion.
|
||||
// prevent endless recursion.
|
||||
// When manually resizing columns, at the point where a horizontal scroll
|
||||
// bar has to be inserted or removed, the vertical size changes, a resize
|
||||
// event occurs and the column headers are flickering badly if the column
|
||||
// layout is modified at this point. Therefore only layout the columns if
|
||||
// the horizontal size changes.
|
||||
if(!doingLayout_ && event->size().width() != event->oldSize().width())
|
||||
layoutColumns(); // layoutColumns() also triggers resizeEvent
|
||||
}
|
||||
|
||||
@ -307,6 +316,17 @@ void FolderViewTreeView::dataChanged(const QModelIndex& topLeft, const QModelInd
|
||||
// queueLayoutColumns();
|
||||
}
|
||||
|
||||
void FolderViewTreeView::reset() {
|
||||
// Sometimes when the content of the model is radically changed, Qt does reset()
|
||||
// on the model rather than doing large amount of insertion and deletion.
|
||||
// This is for performance reason so in this case rowsInserted() and rowsAboutToBeRemoved()
|
||||
// might not be called. Hence we also have to re-layout the columns when the model is reset.
|
||||
// This fixes bug #190
|
||||
// https://github.com/lxde/pcmanfm-qt/issues/190
|
||||
QTreeView::reset();
|
||||
queueLayoutColumns();
|
||||
}
|
||||
|
||||
void FolderViewTreeView::queueLayoutColumns() {
|
||||
// qDebug("queueLayoutColumns");
|
||||
if(!layoutTimer_) {
|
||||
@ -346,6 +366,16 @@ void FolderViewTreeView::activation(const QModelIndex &index) {
|
||||
}
|
||||
}
|
||||
|
||||
void FolderViewTreeView::onSortFilterChanged() {
|
||||
if(QSortFilterProxyModel* proxyModel = qobject_cast<QSortFilterProxyModel*>(model())) {
|
||||
header()->setSortIndicatorShown(true);
|
||||
header()->setSortIndicator(proxyModel->sortColumn(), proxyModel->sortOrder());
|
||||
if (!isSortingEnabled()) {
|
||||
setSortingEnabled(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
@ -683,7 +713,7 @@ FmFileInfoList* FolderView::selectedFiles() const {
|
||||
if(!selIndexes.isEmpty()) {
|
||||
FmFileInfoList* files = fm_file_info_list_new();
|
||||
QModelIndexList::const_iterator it;
|
||||
for(it = selIndexes.constBegin(); it != selIndexes.constEnd(); it++) {
|
||||
for(it = selIndexes.constBegin(); it != selIndexes.constEnd(); ++it) {
|
||||
FmFileInfo* file = model_->fileInfoFromIndex(*it);
|
||||
fm_file_info_list_push_tail(files, file);
|
||||
}
|
||||
@ -905,15 +935,13 @@ void FolderView::onFileClicked(int type, FmFileInfo* fileInfo) {
|
||||
}
|
||||
}
|
||||
else {
|
||||
FmFolder* _folder = folder();
|
||||
FmFileInfo* info = fm_folder_get_info(_folder);
|
||||
Fm::FolderMenu* folderMenu = new Fm::FolderMenu(this);
|
||||
prepareFolderMenu(folderMenu);
|
||||
menu = folderMenu;
|
||||
}
|
||||
if (menu) {
|
||||
menu->popup(QCursor::pos());
|
||||
connect(menu, &QMenu::aboutToHide, menu, &QMenu::deleteLater);
|
||||
menu->exec(QCursor::pos());
|
||||
delete menu;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -84,6 +84,7 @@ public:
|
||||
virtual void rowsInserted(const QModelIndex& parent,int start, int end);
|
||||
virtual void rowsAboutToBeRemoved(const QModelIndex& parent,int start, int end);
|
||||
virtual void dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
|
||||
virtual void reset();
|
||||
|
||||
virtual void resizeEvent(QResizeEvent* event);
|
||||
void queueLayoutColumns();
|
||||
@ -94,6 +95,7 @@ Q_SIGNALS:
|
||||
private Q_SLOTS:
|
||||
void layoutColumns();
|
||||
void activation(const QModelIndex &index);
|
||||
void onSortFilterChanged();
|
||||
|
||||
private:
|
||||
bool doingLayout_;
|
||||
|
@ -33,6 +33,7 @@ struct LibFmQtData {
|
||||
ThumbnailLoader* thumbnailLoader;
|
||||
QTranslator translator;
|
||||
int refCount;
|
||||
Q_DISABLE_COPY(LibFmQtData)
|
||||
};
|
||||
|
||||
static LibFmQtData* theLibFmData = NULL;
|
||||
|
@ -37,7 +37,6 @@ PlacesModel::PlacesModel(QObject* parent):
|
||||
|
||||
setColumnCount(2);
|
||||
|
||||
PlacesModelItem* item;
|
||||
placesRoot = new QStandardItem(tr("Places"));
|
||||
placesRoot->setSelectable(false);
|
||||
placesRoot->setColumnCount(2);
|
||||
@ -52,7 +51,8 @@ PlacesModel::PlacesModel(QObject* parent):
|
||||
createTrashItem();
|
||||
|
||||
FmPath* path;
|
||||
if(isUriSchemeSupported("computer")) {
|
||||
// FIXME: add an option to hide network:///
|
||||
if(true) {
|
||||
path = fm_path_new_for_uri("computer:///");
|
||||
computerItem = new PlacesModelItem("computer", tr("Computer"), path);
|
||||
fm_path_unref(path);
|
||||
@ -61,6 +61,7 @@ PlacesModel::PlacesModel(QObject* parent):
|
||||
else
|
||||
computerItem = NULL;
|
||||
|
||||
// FIXME: add an option to hide applications:///
|
||||
const char* applicaion_icon_names[] = {"system-software-install", "applications-accessories", "application-x-executable"};
|
||||
// NOTE: g_themed_icon_new_from_names() accepts char**, but actually const char** is OK.
|
||||
GIcon* gicon = g_themed_icon_new_from_names((char**)applicaion_icon_names, G_N_ELEMENTS(applicaion_icon_names));
|
||||
@ -70,7 +71,8 @@ PlacesModel::PlacesModel(QObject* parent):
|
||||
fm_icon_unref(fmicon);
|
||||
placesRoot->appendRow(applicationsItem);
|
||||
|
||||
if(isUriSchemeSupported("network")) {
|
||||
// FIXME: add an option to hide network:///
|
||||
if(true) {
|
||||
const char* network_icon_names[] = {"network", "folder-network", "folder"};
|
||||
// NOTE: g_themed_icon_new_from_names() accepts char**, but actually const char** is OK.
|
||||
gicon = g_themed_icon_new_from_names((char**)network_icon_names, G_N_ELEMENTS(network_icon_names));
|
||||
@ -118,7 +120,7 @@ PlacesModel::PlacesModel(QObject* parent):
|
||||
if(volume)
|
||||
g_object_unref(volume);
|
||||
else { /* network mounts or others */
|
||||
item = new PlacesModelMountItem(mount);
|
||||
PlacesModelItem* item = new PlacesModelMountItem(mount);
|
||||
devicesRoot->appendRow(item);
|
||||
}
|
||||
g_object_unref(mount);
|
||||
|
@ -130,7 +130,9 @@ PlacesModelVolumeItem::PlacesModelVolumeItem(GVolume* volume):
|
||||
|
||||
void PlacesModelVolumeItem::update() {
|
||||
// set title
|
||||
setText(QString::fromUtf8(g_volume_get_name(volume_)));
|
||||
char* volumeName = g_volume_get_name(volume_);
|
||||
setText(QString::fromUtf8(volumeName));
|
||||
g_free(volumeName);
|
||||
|
||||
// set icon
|
||||
GIcon* gicon = g_volume_get_icon(volume_);
|
||||
|
@ -193,6 +193,38 @@ void PlacesView::onEmptyTrash() {
|
||||
fm_path_list_unref(files);
|
||||
}
|
||||
|
||||
void PlacesView::onMoveBookmarkUp()
|
||||
{
|
||||
PlacesModel::ItemAction* action = static_cast<PlacesModel::ItemAction*>(sender());
|
||||
if(!action->index().isValid())
|
||||
return;
|
||||
PlacesModelBookmarkItem* item = static_cast<PlacesModelBookmarkItem*>(model_->itemFromIndex(action->index()));
|
||||
|
||||
int row = item->row();
|
||||
if(row > 0) {
|
||||
FmBookmarkItem* bookmarkItem = item->bookmark();
|
||||
FmBookmarks* bookmarks = fm_bookmarks_dup();
|
||||
fm_bookmarks_reorder(bookmarks, bookmarkItem, row - 1);
|
||||
g_object_unref(bookmarks);
|
||||
}
|
||||
}
|
||||
|
||||
void PlacesView::onMoveBookmarkDown()
|
||||
{
|
||||
PlacesModel::ItemAction* action = static_cast<PlacesModel::ItemAction*>(sender());
|
||||
if(!action->index().isValid())
|
||||
return;
|
||||
PlacesModelBookmarkItem* item = static_cast<PlacesModelBookmarkItem*>(model_->itemFromIndex(action->index()));
|
||||
|
||||
int row = item->row();
|
||||
if(row < model_->rowCount()) {
|
||||
FmBookmarkItem* bookmarkItem = item->bookmark();
|
||||
FmBookmarks* bookmarks = fm_bookmarks_dup();
|
||||
fm_bookmarks_reorder(bookmarks, bookmarkItem, row + 1);
|
||||
g_object_unref(bookmarks);
|
||||
}
|
||||
}
|
||||
|
||||
void PlacesView::onDeleteBookmark() {
|
||||
PlacesModel::ItemAction* action = static_cast<PlacesModel::ItemAction*>(sender());
|
||||
if(!action->index().isValid())
|
||||
@ -215,6 +247,26 @@ void PlacesView::commitData(QWidget * editor) {
|
||||
g_object_unref(bookmarks);
|
||||
}
|
||||
|
||||
void PlacesView::onOpenNewTab()
|
||||
{
|
||||
PlacesModel::ItemAction* action = static_cast<PlacesModel::ItemAction*>(sender());
|
||||
if(!action->index().isValid())
|
||||
return;
|
||||
PlacesModelItem* item = static_cast<PlacesModelItem*>(model_->itemFromIndex(action->index()));
|
||||
if(item)
|
||||
Q_EMIT chdirRequested(1, item->path());
|
||||
}
|
||||
|
||||
void PlacesView::onOpenNewWindow()
|
||||
{
|
||||
PlacesModel::ItemAction* action = static_cast<PlacesModel::ItemAction*>(sender());
|
||||
if(!action->index().isValid())
|
||||
return;
|
||||
PlacesModelItem* item = static_cast<PlacesModelItem*>(model_->itemFromIndex(action->index()));
|
||||
if(item)
|
||||
Q_EMIT chdirRequested(2, item->path());
|
||||
}
|
||||
|
||||
void PlacesView::onRenameBookmark() {
|
||||
PlacesModel::ItemAction* action = static_cast<PlacesModel::ItemAction*>(sender());
|
||||
if(!action->index().isValid())
|
||||
@ -240,7 +292,6 @@ void PlacesView::onUnmountVolume() {
|
||||
if(!action->index().isValid())
|
||||
return;
|
||||
PlacesModelVolumeItem* item = static_cast<PlacesModelVolumeItem*>(model_->itemFromIndex(action->index()));
|
||||
GMount* mount = NULL;
|
||||
MountOperation* op = new MountOperation(true, this);
|
||||
op->unmount(item->volume());
|
||||
op->wait();
|
||||
@ -270,14 +321,25 @@ void PlacesView::onEjectVolume() {
|
||||
void PlacesView::contextMenuEvent(QContextMenuEvent* event) {
|
||||
QModelIndex index = indexAt(event->pos());
|
||||
if(index.isValid() && index.parent().isValid()) {
|
||||
QMenu* menu = NULL;
|
||||
QMenu* menu = new QMenu(this);
|
||||
QAction* action;
|
||||
PlacesModelItem* item = static_cast<PlacesModelItem*>(model_->itemFromIndex(index));
|
||||
|
||||
if(item->type() != PlacesModelItem::Mount
|
||||
&& (item->type() != PlacesModelItem::Volume
|
||||
|| static_cast<PlacesModelVolumeItem*>(item)->isMounted())) {
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Open in New Tab"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onOpenNewTab);
|
||||
menu->addAction(action);
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Open in New Window"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onOpenNewWindow);
|
||||
menu->addAction(action);
|
||||
}
|
||||
|
||||
switch(item->type()) {
|
||||
case PlacesModelItem::Places: {
|
||||
FmPath* path = item->path();
|
||||
if(path && fm_path_equal(fm_path_get_trash(), path)) {
|
||||
menu = new QMenu(this);
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Empty Trash"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onEmptyTrash);
|
||||
menu->addAction(action);
|
||||
@ -286,18 +348,26 @@ void PlacesView::contextMenuEvent(QContextMenuEvent* event) {
|
||||
}
|
||||
case PlacesModelItem::Bookmark: {
|
||||
// create context menu for bookmark item
|
||||
menu = new QMenu(this);
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Rename"), menu);
|
||||
if(item->index().row() > 0) {
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Move Bookmark Up"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onMoveBookmarkUp);
|
||||
menu->addAction(action);
|
||||
}
|
||||
if(item->index().row() < model_->rowCount()) {
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Move Bookmark Down"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onMoveBookmarkDown);
|
||||
menu->addAction(action);
|
||||
}
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Rename Bookmark"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onRenameBookmark);
|
||||
menu->addAction(action);
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Delete"), menu);
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Remove Bookmark"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onDeleteBookmark);
|
||||
menu->addAction(action);
|
||||
break;
|
||||
}
|
||||
case PlacesModelItem::Volume: {
|
||||
PlacesModelVolumeItem* volumeItem = static_cast<PlacesModelVolumeItem*>(item);
|
||||
menu = new QMenu(this);
|
||||
|
||||
if(volumeItem->isMounted()) {
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Unmount"), menu);
|
||||
@ -317,16 +387,17 @@ void PlacesView::contextMenuEvent(QContextMenuEvent* event) {
|
||||
break;
|
||||
}
|
||||
case PlacesModelItem::Mount: {
|
||||
menu = new QMenu(this);
|
||||
action = new PlacesModel::ItemAction(item->index(), tr("Unmount"), menu);
|
||||
connect(action, &QAction::triggered, this, &PlacesView::onUnmountMount);
|
||||
menu->addAction(action);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(menu) {
|
||||
if(menu->actions().size()) {
|
||||
menu->popup(mapToGlobal(event->pos()));
|
||||
connect(menu, &QMenu::aboutToHide, menu, &QMenu::deleteLater);
|
||||
} else {
|
||||
menu->deleteLater();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -59,6 +59,9 @@ protected Q_SLOTS:
|
||||
void onPressed(const QModelIndex & index);
|
||||
// void onMountOperationFinished(GError* error);
|
||||
|
||||
void onOpenNewTab();
|
||||
void onOpenNewWindow();
|
||||
|
||||
void onEmptyTrash();
|
||||
|
||||
void onMountVolume();
|
||||
@ -66,6 +69,8 @@ protected Q_SLOTS:
|
||||
void onEjectVolume();
|
||||
void onUnmountMount();
|
||||
|
||||
void onMoveBookmarkUp();
|
||||
void onMoveBookmarkDown();
|
||||
void onDeleteBookmark();
|
||||
void onRenameBookmark();
|
||||
|
||||
|
@ -122,7 +122,7 @@ bool ProxyFolderModel::lessThan(const QModelIndex& left, const QModelIndex& righ
|
||||
bool leftIsFolder = (bool)fm_file_info_is_dir(leftInfo);
|
||||
bool rightIsFolder = (bool)fm_file_info_is_dir(rightInfo);
|
||||
if(leftIsFolder != rightIsFolder)
|
||||
return leftIsFolder ? true : false;
|
||||
return sortOrder() == Qt::AscendingOrder ? leftIsFolder : rightIsFolder;
|
||||
}
|
||||
|
||||
switch(sortColumn()) {
|
||||
@ -226,9 +226,8 @@ QVariant ProxyFolderModel::data(const QModelIndex& index, int role) const {
|
||||
}
|
||||
|
||||
void ProxyFolderModel::onThumbnailLoaded(const QModelIndex& srcIndex, int size) {
|
||||
|
||||
FolderModel* srcModel = static_cast<FolderModel*>(sourceModel());
|
||||
FolderModelItem* item = srcModel->itemFromIndex(srcIndex);
|
||||
// FolderModel* srcModel = static_cast<FolderModel*>(sourceModel());
|
||||
// FolderModelItem* item = srcModel->itemFromIndex(srcIndex);
|
||||
// qDebug("ProxyFolderModel::onThumbnailLoaded: %d, %s", size, item->displayName.toUtf8().data());
|
||||
|
||||
if(size == thumbnailSize_) { // if a thumbnail of the size we want is loaded
|
||||
|
@ -42,8 +42,6 @@ public:
|
||||
|
||||
class LIBFM_QT_API ProxyFolderModel : public QSortFilterProxyModel {
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
public:
|
||||
explicit ProxyFolderModel(QObject * parent = 0);
|
||||
virtual ~ProxyFolderModel();
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "dirtreeview.h"
|
||||
#include "dirtreemodel.h"
|
||||
#include "path.h"
|
||||
#include "filemenu.h"
|
||||
|
||||
namespace Fm {
|
||||
|
||||
@ -161,6 +162,7 @@ void SidePane::initDirTree() {
|
||||
// TODO
|
||||
DirTreeModel* model = new DirTreeModel(view_);
|
||||
FmFileInfoJob* job = fm_file_info_job_new(NULL, FM_FILE_INFO_JOB_NONE);
|
||||
model->setShowHidden(showHidden_);
|
||||
|
||||
GList* l;
|
||||
/* query FmFileInfo for home dir and root dir, and then,
|
||||
@ -207,6 +209,16 @@ void SidePane::setMode(Mode mode) {
|
||||
dirTreeView->setIconSize(iconSize_);
|
||||
dirTreeView->setCurrentPath(currentPath_);
|
||||
connect(dirTreeView, &DirTreeView::chdirRequested, this, &SidePane::onDirTreeViewChdirRequested);
|
||||
connect(dirTreeView, &DirTreeView::openFolderInNewWindowRequested,
|
||||
this, &SidePane::openFolderInNewWindowRequested);
|
||||
connect(dirTreeView, &DirTreeView::openFolderInNewTabRequested,
|
||||
this, &SidePane::openFolderInNewTabRequested);
|
||||
connect(dirTreeView, &DirTreeView::openFolderInTerminalRequested,
|
||||
this, &SidePane::openFolderInTerminalRequested);
|
||||
connect(dirTreeView, &DirTreeView::createNewFolderRequested,
|
||||
this, &SidePane::createNewFolderRequested);
|
||||
connect(dirTreeView, &DirTreeView::prepareFileMenu,
|
||||
this, &SidePane::prepareFileMenu);
|
||||
break;
|
||||
}
|
||||
default:;
|
||||
@ -216,19 +228,19 @@ void SidePane::setMode(Mode mode) {
|
||||
// g_signal_connect(sp->view, "item-popup", G_CALLBACK(on_item_popup), sp);
|
||||
verticalLayout->addWidget(view_);
|
||||
}
|
||||
Q_EMIT modeChanged();
|
||||
Q_EMIT modeChanged(mode);
|
||||
}
|
||||
|
||||
bool SidePane::setShowHidden(bool show_hidden) {
|
||||
if(view_ == NULL)
|
||||
return false;
|
||||
// TODO: SidePane::setShowHidden
|
||||
|
||||
// spec = g_object_class_find_property(klass, "show-hidden");
|
||||
//if(spec == NULL || spec->value_type != G_TYPE_BOOLEAN)
|
||||
// return false; /* isn't supported by view */
|
||||
// g_object_set(sp->view, "show-hidden", show_hidden, NULL);
|
||||
return true;
|
||||
void SidePane::setShowHidden(bool show_hidden) {
|
||||
if(view_ == NULL || show_hidden == showHidden_)
|
||||
return;
|
||||
showHidden_ = show_hidden;
|
||||
if(mode_ == ModeDirTree) {
|
||||
DirTreeView* dirTreeView = static_cast<DirTreeView*>(view_);
|
||||
DirTreeModel* model = static_cast<DirTreeModel*>( dirTreeView->model());
|
||||
if(model)
|
||||
model->setShowHidden(showHidden_);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Fm
|
||||
|
@ -31,6 +31,8 @@ class QWidget;
|
||||
|
||||
namespace Fm {
|
||||
|
||||
class FileMenu;
|
||||
|
||||
class LIBFM_QT_API SidePane : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
@ -82,7 +84,7 @@ public:
|
||||
QString modeTooltip(Mode mode);
|
||||
#endif
|
||||
|
||||
bool setShowHidden(bool show_hidden);
|
||||
void setShowHidden(bool show_hidden);
|
||||
|
||||
bool showHidden() {
|
||||
return showHidden_;
|
||||
@ -101,7 +103,13 @@ public:
|
||||
|
||||
Q_SIGNALS:
|
||||
void chdirRequested(int type, FmPath* path);
|
||||
void modeChanged();
|
||||
void openFolderInNewWindowRequested(FmPath* path);
|
||||
void openFolderInNewTabRequested(FmPath* path);
|
||||
void openFolderInTerminalRequested(FmPath* path);
|
||||
void createNewFolderRequested(FmPath* path);
|
||||
void modeChanged(Fm::SidePane::Mode mode);
|
||||
|
||||
void prepareFileMenu(Fm::FileMenu* menu); // emit before showing a Fm::FileMenu
|
||||
|
||||
protected Q_SLOTS:
|
||||
void onPlacesViewChdirRequested(int type, FmPath* path);
|
||||
|
@ -82,7 +82,6 @@ bool ThumbnailLoader::localFilesOnly_ = true;
|
||||
int ThumbnailLoader::maxThumbnailFileSize_ = 0;
|
||||
|
||||
ThumbnailLoader::ThumbnailLoader() {
|
||||
gboolean success;
|
||||
// apply the settings to libfm
|
||||
fm_config->thumbnail_local = localFilesOnly_;
|
||||
fm_config->thumbnail_max = maxThumbnailFileSize_;
|
||||
@ -98,7 +97,7 @@ ThumbnailLoader::ThumbnailLoader() {
|
||||
getImageText,
|
||||
setImageText
|
||||
};
|
||||
success = fm_thumbnail_loader_set_backend(&qt_backend);
|
||||
gboolean success = fm_thumbnail_loader_set_backend(&qt_backend);
|
||||
}
|
||||
|
||||
ThumbnailLoader::~ThumbnailLoader() {
|
||||
|
@ -152,133 +152,133 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -338,7 +338,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -364,6 +364,16 @@ What do you want to do with it?</source>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="82"/>
|
||||
<source>Open With...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="110"/>
|
||||
<source>Other Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="128"/>
|
||||
<source>&Restore</source>
|
||||
@ -390,31 +400,11 @@ What do you want to do with it?</source>
|
||||
<source>&Move to Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="289"/>
|
||||
<source>Output</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="339"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="150"/>
|
||||
<source>Rename</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="82"/>
|
||||
<source>Open With...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="110"/>
|
||||
<source>Other Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="177"/>
|
||||
<source>Extract to...</source>
|
||||
@ -435,33 +425,43 @@ What do you want to do with it?</source>
|
||||
<source>Properties</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="289"/>
|
||||
<source>Output</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../filemenu.cpp" line="339"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -688,27 +688,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -737,76 +737,96 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<source>Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="57"/>
|
||||
<source>Computer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -919,14 +939,6 @@ Modified: %3</source>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="123"/>
|
||||
<source>Rename File</source>
|
||||
@ -938,35 +950,48 @@ Modified: %3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<source>Create File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RenameDialog</name>
|
@ -152,133 +152,133 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -338,7 +338,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -439,29 +439,29 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -688,27 +688,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -737,17 +737,17 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -757,22 +757,22 @@ Do you want to delete them instead?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -780,33 +780,53 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -921,7 +941,7 @@ Modified: %3</source>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -938,32 +958,37 @@ Modified: %3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -152,133 +152,133 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -338,7 +338,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Nová záložka</translation>
|
||||
</message>
|
||||
@ -439,29 +439,29 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Chyba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -688,27 +688,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Jméno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Typ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Velikost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Změněno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Vlastník</translation>
|
||||
</message>
|
||||
@ -737,17 +737,17 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation type="unfinished">Místa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -757,22 +757,22 @@ Do you want to delete them instead?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -780,33 +780,61 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation type="unfinished">Vysypat koš</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation type="unfinished">Přejmenovat</translation>
|
||||
<translation type="obsolete">Přejmenovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished">Smazat</translation>
|
||||
<translation type="obsolete">Smazat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation type="unfinished">Odpojit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation type="unfinished">Připojit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation type="unfinished">Vysunout</translation>
|
||||
</message>
|
||||
@ -921,7 +949,7 @@ Modified: %3</source>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -938,32 +966,37 @@ Modified: %3</source>
|
||||
<translation type="unfinished">Prosím zadej nové jméno:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation type="unfinished">Prosím zadej nové jméno souboru:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation type="unfinished">Nový textový soubor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation type="unfinished">Prosím zadej nové jméno složky:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation type="unfinished">Nová složka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation type="unfinished">Zadej jméno pro nový %1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation type="unfinished">Vytvořit soubor</translation>
|
||||
</message>
|
||||
|
@ -158,133 +158,133 @@
|
||||
<translation>Dateieigenschaften</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Allgemeines</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Ort:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Dateityp:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>MIME-Typ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Dateigröße:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Größe auf dem Datenträger:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Letztes Änderungsdatum:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Verknüpfungsziel:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Öffnen mit:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Letzter Zugriff:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Berechtigungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Besitz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Gruppe:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Besitzer:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Zugriffskontrolle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Andere:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Datei ausführbar machen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Lesen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Schreiben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Ausführen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>"Sticky bit"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>SetUID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>SetGID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Erweiterte Einstellungen</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Neuer Favorit</translation>
|
||||
</message>
|
||||
@ -446,30 +446,30 @@ Was möchten Sie damit tun?</translation>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Einige Dateien können nicht in den Papierkorb verschoben werden, da die zugrundeliegenden Dateisysteme den Vorgang nicht unterstützen.
|
||||
Sollen die Dateien stattdessen gelöscht werden?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Bestätigung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Möchten Sie die ausgewählten Dateien löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Möchten Sie die ausgewählten Dateien in den Papierkorb verschieben?</translation>
|
||||
</message>
|
||||
@ -696,27 +696,27 @@ Sollen die Dateien stattdessen gelöscht werden?</translation>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Typ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Größe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Besitzer</translation>
|
||||
</message>
|
||||
@ -745,17 +745,17 @@ Sollen die Dateien stattdessen gelöscht werden?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Orte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Arbeitsplatz</translation>
|
||||
<translation>Schreibtisch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Papierkorb</translation>
|
||||
</message>
|
||||
@ -765,22 +765,22 @@ Sollen die Dateien stattdessen gelöscht werden?</translation>
|
||||
<translation>Rechner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Anwendungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Netzwerk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Geräte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Favoriten</translation>
|
||||
</message>
|
||||
@ -788,33 +788,61 @@ Sollen die Dateien stattdessen gelöscht werden?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>Papierkorb leeren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Umbenennen</translation>
|
||||
<translation type="vanished">Umbenennen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Löschen</translation>
|
||||
<translation type="vanished">Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Aushängen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Einhängen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Auswerfen</translation>
|
||||
</message>
|
||||
@ -933,7 +961,7 @@ Geändert: %3</translation>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -950,32 +978,37 @@ Geändert: %3</translation>
|
||||
<translation>Bitte geben Sie einen neuen Namen ein:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Bitte geben Sie einen neuen Dateinamen ein:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Neue Textdatei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Bitte geben Sie einen neuen Ordnernamen ein:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Neuer Ordner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>Geben Sie einen Namen für %1 ein:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Datei erstellen</translation>
|
||||
</message>
|
||||
|
@ -158,133 +158,133 @@
|
||||
<translation>Propiedades de Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>General</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Localización:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Tipo de archivo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Tipo Mime:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Tamaño del archivo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Tamaño en disco:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Última modificación:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Destino del enlace:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Abrir con:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Último acceso:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Permisos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Propiedad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Grupo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Dueño:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Control de acceso</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Otro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Marcar como ejecutable</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Lectura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Escritura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Ejecución</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>Sticky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>SetUID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>SetGID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Modo avanzado</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Nuevo marcador</translation>
|
||||
</message>
|
||||
@ -446,30 +446,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation>Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Algunos archivos no pueden moverse a la papelera porque el subsistema de archivos no permite esta operación.
|
||||
¿Quiere eliminarlos en su lugar?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Confirmación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>¿Quiere borrar los archivos seleccionados?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>¿Quiere mover los archivos seleccionados a la papelera?</translation>
|
||||
</message>
|
||||
@ -696,27 +696,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Nombre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Tipo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamaño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Modificado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Dueño</translation>
|
||||
</message>
|
||||
@ -745,12 +745,12 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Lugares</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Escritorio</translation>
|
||||
</message>
|
||||
@ -760,27 +760,27 @@ Do you want to delete them instead?</source>
|
||||
<translation>Sistema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Aplicaciones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Red</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Dispositivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Papelera</translation>
|
||||
</message>
|
||||
@ -788,33 +788,61 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>Vaciar Papelera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Renombrar</translation>
|
||||
<translation type="vanished">Renombrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Borrar</translation>
|
||||
<translation type="vanished">Borrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Desmontar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Montar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Expulsar</translation>
|
||||
</message>
|
||||
@ -933,7 +961,7 @@ Modificado: %3</translation>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -950,32 +978,37 @@ Modificado: %3</translation>
|
||||
<translation>Introduzca un nuevo nombre:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Introduzca un nuevo nombre de archivo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Nuevo archivo de texto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Ingrese un nuevo nombre de directorio:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Nuevo directorio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>Ingresar un nombre para el nuevo %1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Crear Archivo</translation>
|
||||
</message>
|
||||
|
@ -152,133 +152,133 @@
|
||||
<translation>Propriétés du fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Général</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Emplacement :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Type de fichier :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Type Mime :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Taille du fichier :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Taille sur le disque :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Date de dernière modification :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Cible du lien :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Ouvrir avec :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Date de dernier accès :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Droits d'accès</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Propriété</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Groupe :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Propriétaire :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Contrôle d'accès</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Autre :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Rendre le fichier exécutable</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Lecture</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Écriture</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Exécution</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>Permanent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>SetUID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>SetGID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Mode avancé</translation>
|
||||
</message>
|
||||
@ -338,7 +338,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Nouveau signet</translation>
|
||||
</message>
|
||||
@ -443,30 +443,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation>Erreur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Certains fichiers ne peuvent pas être mis à la corbeille car les systèmes de fichiers sous-jacents ne prennent pas en charge cette opération.
|
||||
Voulez-vous plutôt les supprimer ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Confirmer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Voulez-vous supprimer les fichiers sélectionnés ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Voulez-vous mettre les fichiers sélectionnés à la corbeille ?</translation>
|
||||
</message>
|
||||
@ -697,27 +697,27 @@ Voulez-vous plutôt les supprimer ?</translation>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Nom</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Type</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Taille</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Modifié</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Propriétaire</translation>
|
||||
</message>
|
||||
@ -746,17 +746,17 @@ Voulez-vous plutôt les supprimer ?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Emplacements</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Bureau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Corbeille</translation>
|
||||
</message>
|
||||
@ -766,22 +766,22 @@ Voulez-vous plutôt les supprimer ?</translation>
|
||||
<translation>Ordinateur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Applications</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Réseau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Appareils</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Signets</translation>
|
||||
</message>
|
||||
@ -789,33 +789,61 @@ Voulez-vous plutôt les supprimer ?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Renommer</translation>
|
||||
<translation type="vanished">Renommer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Supprimer</translation>
|
||||
<translation type="vanished">Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Démonter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Monter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Éjecter</translation>
|
||||
</message>
|
||||
@ -934,7 +962,7 @@ Modification : %3</translation>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -951,32 +979,37 @@ Modification : %3</translation>
|
||||
<translation>Veuillez entrer un nouveau nom :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Veuillez entrer un nouveau nom de fichier :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Nouveau fichier texte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Veuillez entrer un nouveau nom de répertoire :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Nouveau répertoire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Créer un fichier</translation>
|
||||
</message>
|
||||
|
@ -152,133 +152,133 @@
|
||||
<translation>Propiedades do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Xeral</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Localización</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Tipo de ficheiro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Tipo MIME:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Tamaño do ficheiro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Tamaño no disco:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Última modificación:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Destino da ligazón:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Abrir con:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Último acceso:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Permisos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Dono</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Grupo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Propietario:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Control de acceso</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Outros:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Facer que o ficheiro sexa executábel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Lectura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Escritura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Execución</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>Persistente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>Estabelecer o UID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>Estabelecer o GID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Modo avanzado</translation>
|
||||
</message>
|
||||
@ -338,7 +338,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Novo marcador</translation>
|
||||
</message>
|
||||
@ -443,30 +443,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation>Erro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Algúns ficheiros non poden enviarse ao cesto do lixo porque o subsistema de ficheiros non permite esta operación.
|
||||
Desexa eliminalos no seu canto?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Confirmar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Quere eliminar os ficheiros seleccionados?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Quere mover os ficheiros seleccionados ao cesto do lixo?</translation>
|
||||
</message>
|
||||
@ -697,27 +697,27 @@ Desexa eliminalos no seu canto?</translation>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Tipo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamaño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Modificado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Propietario</translation>
|
||||
</message>
|
||||
@ -746,17 +746,17 @@ Desexa eliminalos no seu canto?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Lugares</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Escritorio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Lixo</translation>
|
||||
</message>
|
||||
@ -766,22 +766,22 @@ Desexa eliminalos no seu canto?</translation>
|
||||
<translation>Computador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Aplicacións</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Rede</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Dispositivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Marcadores</translation>
|
||||
</message>
|
||||
@ -789,33 +789,61 @@ Desexa eliminalos no seu canto?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Renomear</translation>
|
||||
<translation type="vanished">Renomear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Eliminar</translation>
|
||||
<translation type="vanished">Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Desmontar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Montar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Expulsar</translation>
|
||||
</message>
|
||||
@ -934,7 +962,7 @@ Modificado: %3</translation>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -951,32 +979,37 @@ Modificado: %3</translation>
|
||||
<translation>Introduza un nome novo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Introduza un novo nome de ficheiro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Novo ficheiro de texto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Introduza un nome novo para o cartafol:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Novo cartafol</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Crear un ficheiro</translation>
|
||||
</message>
|
||||
|
1065
libfm-qt/translations/libfm-qt_hu.ts
Normal file
1065
libfm-qt/translations/libfm-qt_hu.ts
Normal file
File diff suppressed because it is too large
Load Diff
@ -152,133 +152,133 @@
|
||||
<translation>Proprietà file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Generali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Posizione:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Tipo file:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Tipo MIME:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Dimensione file:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Dimensione sul disco:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Ultima modifica:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Collegamento a:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Apri con:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Ultimo accesso:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Permessi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Proprietario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Gruppo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Proprietario:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Controllo accessi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Altri:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Rendi il file eseguibile</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Lettura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Scrittura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Esecuzione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>Sticky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>SetUID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>SetGID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Modalità avanzata</translation>
|
||||
</message>
|
||||
@ -338,7 +338,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Nuovo segnalibro</translation>
|
||||
</message>
|
||||
@ -443,30 +443,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Errore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Alcuni file non possono essere spostati nel cestino perché il file system su cui si trovano non supporta questa operazione.
|
||||
Vuoi invece eliminarli?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Conferma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Rimuovere i file selezionati?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Spostare nel cestino i file selezionati?</translation>
|
||||
</message>
|
||||
@ -697,27 +697,27 @@ Vuoi invece eliminarli?</translation>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Tipo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Dimensione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Modificato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Proprietario</translation>
|
||||
</message>
|
||||
@ -746,17 +746,17 @@ Vuoi invece eliminarli?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Luoghi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Scrivania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Cestino</translation>
|
||||
</message>
|
||||
@ -766,22 +766,22 @@ Vuoi invece eliminarli?</translation>
|
||||
<translation>Computer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Applicazioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Rete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Periferiche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Segnalibri</translation>
|
||||
</message>
|
||||
@ -789,33 +789,61 @@ Vuoi invece eliminarli?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Rinomina</translation>
|
||||
<translation type="vanished">Rinomina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Rimuovi</translation>
|
||||
<translation type="vanished">Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Smonta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Monta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Espelli</translation>
|
||||
</message>
|
||||
@ -934,7 +962,7 @@ Ultima modifica: %3</translation>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -951,32 +979,37 @@ Ultima modifica: %3</translation>
|
||||
<translation>Inserire il nuovo nome:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Inserire il nuovo nome del file:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Nuovo file di testo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Inserire il nuovo nome della cartella:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Nuova cartella</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Crea file</translation>
|
||||
</message>
|
||||
|
@ -158,133 +158,133 @@
|
||||
<translation>ファイルのプロパティー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>一般</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>場所:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>種類:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>MIMEタイプ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>サイズ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>ディスク上のサイズ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>最終更新日時:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>リンク先:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>関連付け:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>最終アクセス日時:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>パーミッション</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>所有権</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>グループ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>所有者:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>アクセス制限</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>その他:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>ファイルを実行可能にする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>読取り</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>書込み</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>実行</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>スティッキー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>UIDを設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>GIDを設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>高度なモード</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>新規ブックマーク</translation>
|
||||
</message>
|
||||
@ -451,30 +451,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>ファイルシステムのサポートがないため、ゴミ箱へ移動できないファイルがあります。
|
||||
かわりにこれらを削除しますか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>確認</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>選択したファイルを削除しますか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>選択したファイルをゴミ箱に移しますか?</translation>
|
||||
</message>
|
||||
@ -705,27 +705,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>名前</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>種類</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>サイズ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>更新日時</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>所有者</translation>
|
||||
</message>
|
||||
@ -754,17 +754,17 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>場所</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>デスクトップ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>ゴミ箱</translation>
|
||||
</message>
|
||||
@ -774,22 +774,22 @@ Do you want to delete them instead?</source>
|
||||
<translation>コンピューター</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>アプリケーション</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>ネットワーク</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>デバイス</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>ブックマーク</translation>
|
||||
</message>
|
||||
@ -797,33 +797,61 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>ゴミ箱を空にする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>名前を変更</translation>
|
||||
<translation type="vanished">名前を変更</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>削除</translation>
|
||||
<translation type="vanished">削除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>アンマウント</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>マウント</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>取出し</translation>
|
||||
</message>
|
||||
@ -942,7 +970,7 @@ Modified: %3</source>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -959,32 +987,37 @@ Modified: %3</source>
|
||||
<translation>新しい名前を入力してください:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>新規ファイルの名前を入力してください:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>新規テキストファイル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>新規フォルダの名前を入力してください:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>新規フォルダー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>新しい %1 の名前を入力してください:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>ファイル作成</translation>
|
||||
</message>
|
||||
|
File diff suppressed because it is too large
Load Diff
1064
libfm-qt/translations/libfm-qt_pl.ts
Normal file
1064
libfm-qt/translations/libfm-qt_pl.ts
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="pt">
|
||||
<TS version="2.1" language="pt">
|
||||
<context>
|
||||
<name>AppChooserDialog</name>
|
||||
<message>
|
||||
@ -158,133 +158,133 @@
|
||||
<translation>Propriedades do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Geral</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Localização:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Tipo de ficheiro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Tipo MIME:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Tamanho do ficheiro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Tamanho no disco:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Última modificação:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Destino da ligação:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Abrir com:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Último acesso:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Pemissões</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Propriedade</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Grupo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Dono:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Controlo de acesso</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Outro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Marcar como executável</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Leitura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Escrita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Execução</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation>Fixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation>Definir UID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation>Definir GID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Modo avançado</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Novo marcador</translation>
|
||||
</message>
|
||||
@ -450,30 +450,30 @@ O que pretende fazer com o ficheiro?</translation>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation>Erro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Alguns ficheiros não podem ser movidos para o lixo porque o sistema de ficheiros não suporta esta operação.
|
||||
Eliminar permanentemente?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Confirmação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Quer mesmo eliminar o(s) ficheiro(s) selecionado(s)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Quer mesmo mover o(s) ficheiro(s) selecionado(s) para o lixo?</translation>
|
||||
</message>
|
||||
@ -704,27 +704,27 @@ Eliminar permanentemente?</translation>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Tipo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamanho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Modificado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Dono</translation>
|
||||
</message>
|
||||
@ -753,17 +753,17 @@ Eliminar permanentemente?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Locais</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Área de trabalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Lixo</translation>
|
||||
</message>
|
||||
@ -773,22 +773,22 @@ Eliminar permanentemente?</translation>
|
||||
<translation>Computador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Aplicações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Rede</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Dispositivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Marcadores</translation>
|
||||
</message>
|
||||
@ -796,33 +796,61 @@ Eliminar permanentemente?</translation>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>Esvaziar lixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Mudar nome</translation>
|
||||
<translation type="vanished">Mudar nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Eliminar</translation>
|
||||
<translation type="vanished">Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Desmontar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Montar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Ejetar</translation>
|
||||
</message>
|
||||
@ -941,7 +969,7 @@ Modificado: %3</translation>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -958,32 +986,37 @@ Modificado: %3</translation>
|
||||
<translation>Introduza o novo nome:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Introduza o nome do ficheiro:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Novo ficheiro de texto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Introduza o nome da pasta:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Nova pasta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>Introduza o nome para %1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Criar ficheiro</translation>
|
||||
</message>
|
||||
|
@ -158,133 +158,133 @@
|
||||
<translation>Свойства файла</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Общие</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Расположение:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Тип файла:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Тип Mime:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Размер файла:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Размер на диске:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Последнее изменение:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Цель ссылки:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Открыть с помощью:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Последний доступ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Разрешения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Владение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Группа:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Владелец:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Контроль доступа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Остальные:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Сделать файл исполняемым</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Чтение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Запись</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Выполнение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Расширенный режим</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Новая закладка</translation>
|
||||
</message>
|
||||
@ -446,30 +446,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Ошибка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Некоторые файлы не могут быть помещены в корзину, поскольку файловая система не поддерживает эту операцию.
|
||||
Вы всё равно хотите их удалить?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Подтвердить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Вы действительно хотите удалить выбранные файлы?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Переместить выбранные файлы в корзину?</translation>
|
||||
</message>
|
||||
@ -696,27 +696,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Имя</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Тип</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Размер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Изменён</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Владелец</translation>
|
||||
</message>
|
||||
@ -745,12 +745,12 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Места</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Рабочий стол</translation>
|
||||
</message>
|
||||
@ -760,27 +760,27 @@ Do you want to delete them instead?</source>
|
||||
<translation>Компьютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Программы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Сеть</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Устройства</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Закладки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Корзина</translation>
|
||||
</message>
|
||||
@ -788,33 +788,61 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>Очистить корзину</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Переименовать</translation>
|
||||
<translation type="vanished">Переименовать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Удалить</translation>
|
||||
<translation type="vanished">Удалить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Отключить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Подключить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Извлечь</translation>
|
||||
</message>
|
||||
@ -933,7 +961,7 @@ Modified: %3</source>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -950,32 +978,37 @@ Modified: %3</source>
|
||||
<translation>Введите новое имя:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Введите имя нового файла:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Новый текстовый файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Введите имя новой папки:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Новая папка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>Введите имя для нового %1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Создать файл</translation>
|
||||
</message>
|
||||
|
@ -158,133 +158,133 @@
|
||||
<translation>Свойства файла</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>Общие</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>Расположение:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>Тип файла:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Тип Mime:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>Размер файла:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>Размер на диске:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>Последнее изменение:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>Цель ссылки:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>Открыть с помощью:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>Последний доступ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>Разрешения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>Владение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>Группа:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>Владелец:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>Контроль доступа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>Остальные:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>Сделать файл исполняемым</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>Чтение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>Запись</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>Выполнение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>Расширенный режим</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>Новая закладка</translation>
|
||||
</message>
|
||||
@ -446,30 +446,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Ошибка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>Некоторые файлы не могут быть помещены в корзину, поскольку файловая система не поддерживает эту операцию.
|
||||
Вы всё равно хотите их удалить?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Подтвердить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>Вы действительно хотите удалить выбранные файлы?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>Переместить выбранные файлы в корзину?</translation>
|
||||
</message>
|
||||
@ -696,27 +696,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>Имя</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>Тип</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>Размер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>Изменён</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>Владелец</translation>
|
||||
</message>
|
||||
@ -745,12 +745,12 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>Места</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>Рабочий стол</translation>
|
||||
</message>
|
||||
@ -760,27 +760,27 @@ Do you want to delete them instead?</source>
|
||||
<translation>Компьютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>Программы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>Сеть</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>Устройства</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>Закладки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>Корзина</translation>
|
||||
</message>
|
||||
@ -788,33 +788,61 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>Очистить корзину</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>Переименовать</translation>
|
||||
<translation type="vanished">Переименовать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>Удалить</translation>
|
||||
<translation type="vanished">Удалить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>Отключить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>Подключить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>Извлечь</translation>
|
||||
</message>
|
||||
@ -933,7 +961,7 @@ Modified: %3</source>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -950,32 +978,37 @@ Modified: %3</source>
|
||||
<translation>Введите новое имя:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>Введите имя нового файла:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>Новый текстовый файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>Введите имя новой папки:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>Новая папка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>Введите имя для нового %1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>Создать файл</translation>
|
||||
</message>
|
||||
|
@ -158,133 +158,133 @@
|
||||
<translation>檔案屬性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="32"/>
|
||||
<location filename="../file-props.ui" line="41"/>
|
||||
<source>General</source>
|
||||
<translation>一般</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="71"/>
|
||||
<location filename="../file-props.ui" line="80"/>
|
||||
<source>Location:</source>
|
||||
<translation>位置:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="94"/>
|
||||
<location filename="../file-props.ui" line="106"/>
|
||||
<source>File type:</source>
|
||||
<translation>檔案類型:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="114"/>
|
||||
<location filename="../file-props.ui" line="129"/>
|
||||
<source>Mime type:</source>
|
||||
<translation>Mime 類型:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="134"/>
|
||||
<location filename="../file-props.ui" line="152"/>
|
||||
<source>File size:</source>
|
||||
<translation>檔案大小:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="154"/>
|
||||
<location filename="../file-props.ui" line="175"/>
|
||||
<source>On-disk size:</source>
|
||||
<translation>磁碟上大小:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="174"/>
|
||||
<location filename="../file-props.ui" line="198"/>
|
||||
<source>Last modified:</source>
|
||||
<translation>最後修改:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="194"/>
|
||||
<location filename="../file-props.ui" line="221"/>
|
||||
<source>Link target:</source>
|
||||
<translation>連結目標:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="217"/>
|
||||
<location filename="../file-props.ui" line="247"/>
|
||||
<source>Open With:</source>
|
||||
<translation>開啟:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="234"/>
|
||||
<location filename="../file-props.ui" line="267"/>
|
||||
<source>Last accessed:</source>
|
||||
<translation>最後存取:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="249"/>
|
||||
<location filename="../file-props.ui" line="285"/>
|
||||
<source>Permissions</source>
|
||||
<translation>權限</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="264"/>
|
||||
<location filename="../file-props.ui" line="300"/>
|
||||
<source>Ownership</source>
|
||||
<translation>所有權</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="288"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<location filename="../file-props.ui" line="467"/>
|
||||
<location filename="../file-props.ui" line="324"/>
|
||||
<location filename="../file-props.ui" line="389"/>
|
||||
<location filename="../file-props.ui" line="503"/>
|
||||
<source>Group:</source>
|
||||
<translation>群組:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="301"/>
|
||||
<location filename="../file-props.ui" line="336"/>
|
||||
<location filename="../file-props.ui" line="415"/>
|
||||
<location filename="../file-props.ui" line="337"/>
|
||||
<location filename="../file-props.ui" line="372"/>
|
||||
<location filename="../file-props.ui" line="451"/>
|
||||
<source>Owner:</source>
|
||||
<translation>擁有者:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="317"/>
|
||||
<location filename="../file-props.ui" line="353"/>
|
||||
<source>Access Control</source>
|
||||
<translation>存取控制</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="370"/>
|
||||
<location filename="../file-props.ui" line="519"/>
|
||||
<location filename="../file-props.ui" line="406"/>
|
||||
<location filename="../file-props.ui" line="555"/>
|
||||
<source>Other:</source>
|
||||
<translation>其他:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="387"/>
|
||||
<location filename="../file-props.ui" line="423"/>
|
||||
<source>Make the file executable</source>
|
||||
<translation>使檔案可執行</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="428"/>
|
||||
<location filename="../file-props.ui" line="480"/>
|
||||
<location filename="../file-props.ui" line="532"/>
|
||||
<location filename="../file-props.ui" line="464"/>
|
||||
<location filename="../file-props.ui" line="516"/>
|
||||
<location filename="../file-props.ui" line="568"/>
|
||||
<source>Read</source>
|
||||
<translation>讀取</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="441"/>
|
||||
<location filename="../file-props.ui" line="493"/>
|
||||
<location filename="../file-props.ui" line="545"/>
|
||||
<location filename="../file-props.ui" line="477"/>
|
||||
<location filename="../file-props.ui" line="529"/>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<source>Write</source>
|
||||
<translation>寫入</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="454"/>
|
||||
<location filename="../file-props.ui" line="506"/>
|
||||
<location filename="../file-props.ui" line="558"/>
|
||||
<location filename="../file-props.ui" line="490"/>
|
||||
<location filename="../file-props.ui" line="542"/>
|
||||
<location filename="../file-props.ui" line="594"/>
|
||||
<source>Execute</source>
|
||||
<translation>執行</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="567"/>
|
||||
<location filename="../file-props.ui" line="603"/>
|
||||
<source>Sticky</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="574"/>
|
||||
<location filename="../file-props.ui" line="610"/>
|
||||
<source>SetUID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="581"/>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<source>SetGID</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../file-props.ui" line="617"/>
|
||||
<location filename="../file-props.ui" line="653"/>
|
||||
<source>Advanced Mode</source>
|
||||
<translation>進階模式</translation>
|
||||
</message>
|
||||
@ -344,7 +344,7 @@
|
||||
<context>
|
||||
<name>Fm::EditBookmarksDialog</name>
|
||||
<message>
|
||||
<location filename="../editbookmarksdialog.cpp" line="95"/>
|
||||
<location filename="../editbookmarksdialog.cpp" line="96"/>
|
||||
<source>New bookmark</source>
|
||||
<translation>新書籤</translation>
|
||||
</message>
|
||||
@ -454,30 +454,30 @@ What do you want to do with it?</source>
|
||||
<context>
|
||||
<name>Fm::FileOperation</name>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="188"/>
|
||||
<location filename="../fileoperation.cpp" line="220"/>
|
||||
<source>Error</source>
|
||||
<translation>錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="189"/>
|
||||
<location filename="../fileoperation.cpp" line="221"/>
|
||||
<source>Some files cannot be moved to trash can because the underlying file systems don't support this operation.
|
||||
Do you want to delete them instead?</source>
|
||||
<translation>因為檔案系統不支援,有些檔案無法丟到垃圾桶
|
||||
是否直接刪除這些檔案?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="230"/>
|
||||
<location filename="../fileoperation.cpp" line="246"/>
|
||||
<location filename="../fileoperation.cpp" line="262"/>
|
||||
<location filename="../fileoperation.cpp" line="278"/>
|
||||
<source>Confirm</source>
|
||||
<translation>確認</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="231"/>
|
||||
<location filename="../fileoperation.cpp" line="263"/>
|
||||
<source>Do you want to delete the selected files?</source>
|
||||
<translation>你確定要刪除選取的檔案嗎?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fileoperation.cpp" line="247"/>
|
||||
<location filename="../fileoperation.cpp" line="279"/>
|
||||
<source>Do you want to move the selected files to trash can?</source>
|
||||
<translation>你確定要把選取的檔案移到垃圾桶嗎?</translation>
|
||||
</message>
|
||||
@ -708,27 +708,27 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::FolderModel</name>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="249"/>
|
||||
<location filename="../foldermodel.cpp" line="248"/>
|
||||
<source>Name</source>
|
||||
<translation>名稱</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="252"/>
|
||||
<location filename="../foldermodel.cpp" line="251"/>
|
||||
<source>Type</source>
|
||||
<translation>類型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="255"/>
|
||||
<location filename="../foldermodel.cpp" line="254"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="258"/>
|
||||
<location filename="../foldermodel.cpp" line="257"/>
|
||||
<source>Modified</source>
|
||||
<translation>修改</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../foldermodel.cpp" line="261"/>
|
||||
<location filename="../foldermodel.cpp" line="260"/>
|
||||
<source>Owner</source>
|
||||
<translation>所有者</translation>
|
||||
</message>
|
||||
@ -757,17 +757,17 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesModel</name>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="41"/>
|
||||
<location filename="../placesmodel.cpp" line="40"/>
|
||||
<source>Places</source>
|
||||
<translation>位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="49"/>
|
||||
<location filename="../placesmodel.cpp" line="48"/>
|
||||
<source>Desktop</source>
|
||||
<translation>桌面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="205"/>
|
||||
<location filename="../placesmodel.cpp" line="207"/>
|
||||
<source>Trash</source>
|
||||
<translation>垃圾桶</translation>
|
||||
</message>
|
||||
@ -777,22 +777,22 @@ Do you want to delete them instead?</source>
|
||||
<translation>電腦</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="69"/>
|
||||
<location filename="../placesmodel.cpp" line="70"/>
|
||||
<source>Applications</source>
|
||||
<translation>應用程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="80"/>
|
||||
<location filename="../placesmodel.cpp" line="82"/>
|
||||
<source>Network</source>
|
||||
<translation>網路</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="88"/>
|
||||
<location filename="../placesmodel.cpp" line="90"/>
|
||||
<source>Devices</source>
|
||||
<translation>裝置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesmodel.cpp" line="130"/>
|
||||
<location filename="../placesmodel.cpp" line="132"/>
|
||||
<source>Bookmarks</source>
|
||||
<translation>書籤</translation>
|
||||
</message>
|
||||
@ -800,33 +800,61 @@ Do you want to delete them instead?</source>
|
||||
<context>
|
||||
<name>Fm::PlacesView</name>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="281"/>
|
||||
<location filename="../placesview.cpp" line="343"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>清空垃圾桶</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="290"/>
|
||||
<source>Rename</source>
|
||||
<translation>重新命名</translation>
|
||||
<translation type="vanished">重新命名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="293"/>
|
||||
<source>Delete</source>
|
||||
<translation>刪除</translation>
|
||||
<translation type="vanished">刪除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="303"/>
|
||||
<location filename="../placesview.cpp" line="321"/>
|
||||
<location filename="../placesview.cpp" line="331"/>
|
||||
<source>Open in New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="334"/>
|
||||
<source>Open in New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="352"/>
|
||||
<source>Move Bookmark Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="357"/>
|
||||
<source>Move Bookmark Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="361"/>
|
||||
<source>Rename Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="364"/>
|
||||
<source>Remove Bookmark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="373"/>
|
||||
<location filename="../placesview.cpp" line="390"/>
|
||||
<source>Unmount</source>
|
||||
<translation>卸載</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="307"/>
|
||||
<location filename="../placesview.cpp" line="377"/>
|
||||
<source>Mount</source>
|
||||
<translation>掛載</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../placesview.cpp" line="313"/>
|
||||
<location filename="../placesview.cpp" line="383"/>
|
||||
<source>Eject</source>
|
||||
<translation>退出</translation>
|
||||
</message>
|
||||
@ -945,7 +973,7 @@ Modified: %3</source>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="152"/>
|
||||
<location filename="../utilities.cpp" line="226"/>
|
||||
<location filename="../utilities.cpp" line="228"/>
|
||||
<location filename="../mountoperation.cpp" line="185"/>
|
||||
<location filename="../filelauncher.cpp" line="109"/>
|
||||
<source>Error</source>
|
||||
@ -962,32 +990,37 @@ Modified: %3</source>
|
||||
<translation>請輸入一個新名稱:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="167"/>
|
||||
<location filename="../utilities.cpp" line="164"/>
|
||||
<source>Create Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="169"/>
|
||||
<source>Please enter a new file name:</source>
|
||||
<translation>請輸入一個新檔名:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="172"/>
|
||||
<location filename="../utilities.cpp" line="174"/>
|
||||
<source>Please enter a new folder name:</source>
|
||||
<translation>請輸入一個新資料夾名稱:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="173"/>
|
||||
<location filename="../utilities.cpp" line="175"/>
|
||||
<source>New folder</source>
|
||||
<translation>新資料夾</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="168"/>
|
||||
<location filename="../utilities.cpp" line="170"/>
|
||||
<source>New text file</source>
|
||||
<translation>新文字檔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="178"/>
|
||||
<location filename="../utilities.cpp" line="180"/>
|
||||
<source>Enter a name for the new %1:</source>
|
||||
<translation>幫新的 %1 輸入一個名稱:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../utilities.cpp" line="187"/>
|
||||
<location filename="../utilities.cpp" line="165"/>
|
||||
<source>Create File</source>
|
||||
<translation>建立檔案</translation>
|
||||
</message>
|
||||
|
@ -158,9 +158,11 @@ void renameFile(FmFileInfo *file, QWidget *parent) {
|
||||
}
|
||||
|
||||
// templateFile is a file path used as a template of the new file.
|
||||
void createFile(CreateFileType type, FmPath* parentDir, FmTemplate* templ, QWidget* parent) {
|
||||
void createFileOrFolder(CreateFileType type, FmPath* parentDir, FmTemplate* templ, QWidget* parent) {
|
||||
QString defaultNewName;
|
||||
QString prompt;
|
||||
QString dialogTitle = type == CreateNewFolder ? QObject::tr("Create Folder")
|
||||
: QObject::tr("Create File");
|
||||
|
||||
switch(type) {
|
||||
case CreateNewTextFile:
|
||||
@ -184,7 +186,7 @@ void createFile(CreateFileType type, FmPath* parentDir, FmTemplate* templ, QWidg
|
||||
_retry:
|
||||
// ask the user to input a file name
|
||||
bool ok;
|
||||
QString new_name = QInputDialog::getText(parent, QObject::tr("Create File"),
|
||||
QString new_name = QInputDialog::getText(parent, dialogTitle,
|
||||
prompt,
|
||||
QLineEdit::Normal,
|
||||
defaultNewName,
|
||||
@ -230,7 +232,8 @@ _retry:
|
||||
|
||||
uid_t uidFromName(QString name) {
|
||||
uid_t ret;
|
||||
|
||||
if(name.isEmpty())
|
||||
return -1;
|
||||
if(name.at(0).digitValue() != -1) {
|
||||
ret = uid_t(name.toUInt());
|
||||
}
|
||||
@ -249,13 +252,16 @@ QString uidToName(uid_t uid) {
|
||||
|
||||
if(pw)
|
||||
ret = pw->pw_name;
|
||||
else
|
||||
ret = QString::number(uid);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
gid_t gidFromName(QString name) {
|
||||
gid_t ret;
|
||||
|
||||
if(name.isEmpty())
|
||||
return -1;
|
||||
if(name.at(0).digitValue() != -1) {
|
||||
ret = gid_t(name.toUInt());
|
||||
}
|
||||
@ -274,6 +280,8 @@ QString gidToName(gid_t gid) {
|
||||
|
||||
if(grp)
|
||||
ret = grp->gr_name;
|
||||
else
|
||||
ret = QString::number(gid);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -290,6 +298,9 @@ int execModelessDialog(QDialog* dlg) {
|
||||
}
|
||||
|
||||
// check if GVFS can support this uri scheme (lower case)
|
||||
// NOTE: this does not work reliably due to some problems in gio/gvfs and causes bug lxde/lxqt#512
|
||||
// https://github.com/lxde/lxqt/issues/512
|
||||
// Use uriExists() whenever possible.
|
||||
bool isUriSchemeSupported(const char* uriScheme) {
|
||||
const gchar * const * schemes = g_vfs_get_supported_uri_schemes(g_vfs_get_default());
|
||||
if(Q_UNLIKELY(schemes == NULL))
|
||||
@ -300,5 +311,16 @@ bool isUriSchemeSupported(const char* uriScheme) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// check if the URI exists.
|
||||
// NOTE: this is a blocking call possibly involving I/O.
|
||||
// So it's better to use it in limited cases, like checking trash:// or computer://.
|
||||
// Avoid calling this on a slow filesystem.
|
||||
// Checking "network:///" is very slow, for example.
|
||||
bool uriExists(const char* uri) {
|
||||
GFile* gf = g_file_new_for_uri(uri);
|
||||
bool ret = (bool)g_file_query_exists(gf, NULL);
|
||||
g_object_unref(gf);
|
||||
return ret;
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -48,7 +48,7 @@ enum CreateFileType {
|
||||
CreateWithTemplate
|
||||
};
|
||||
|
||||
LIBFM_QT_API void createFile(CreateFileType type, FmPath* parentDir, FmTemplate* templ = NULL, QWidget* parent = 0);
|
||||
LIBFM_QT_API void createFileOrFolder(CreateFileType type, FmPath* parentDir, FmTemplate* templ = NULL, QWidget* parent = 0);
|
||||
|
||||
LIBFM_QT_API uid_t uidFromName(QString name);
|
||||
|
||||
@ -60,8 +60,12 @@ LIBFM_QT_API QString gidToName(gid_t gid);
|
||||
|
||||
LIBFM_QT_API int execModelessDialog(QDialog* dlg);
|
||||
|
||||
// NOTE: this does not work reliably due to some problems in gio/gvfs
|
||||
// Use uriExists() whenever possible.
|
||||
LIBFM_QT_API bool isUriSchemeSupported(const char* uriScheme);
|
||||
|
||||
LIBFM_QT_API bool uriExists(const char* uri);
|
||||
|
||||
}
|
||||
|
||||
#endif // FM_UTILITIES_H
|
||||
|
@ -26,6 +26,7 @@ set(pcmanfm_SRCS
|
||||
view.cpp
|
||||
launcher.cpp
|
||||
preferencesdialog.cpp
|
||||
xdgdir.cpp
|
||||
desktoppreferencesdialog.cpp
|
||||
desktopwindow.cpp
|
||||
desktopitemdelegate.cpp
|
||||
@ -51,9 +52,24 @@ set(pcmanfm_UIS
|
||||
|
||||
qt5_wrap_ui(pcmanfm_UIS_H ${pcmanfm_UIS})
|
||||
|
||||
# add translation for pcmanfm-qt
|
||||
lxqt_translate_ts(QM_FILES
|
||||
UPDATE_TRANSLATIONS ${UPDATE_TRANSLATIONS}
|
||||
SOURCES ${pcmanfm_SRCS} ${pcmanfm_UIS_H}
|
||||
)
|
||||
|
||||
# translate desktop entry files for pcmanfm-qt and desktop preferences
|
||||
lxqt_translate_desktop(DESKTOP_FILES
|
||||
SOURCES
|
||||
pcmanfm-qt.desktop.in
|
||||
pcmanfm-qt-desktop-pref.desktop.in
|
||||
)
|
||||
|
||||
add_executable(pcmanfm-qt
|
||||
${pcmanfm_SRCS}
|
||||
${pcmanfm_UIS_H}
|
||||
${QM_FILES}
|
||||
${DESKTOP_FILES}
|
||||
)
|
||||
set_property(
|
||||
TARGET pcmanfm-qt APPEND
|
||||
@ -75,22 +91,9 @@ target_link_libraries(pcmanfm-qt
|
||||
install(TARGETS pcmanfm-qt RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||
|
||||
# install a desktop entry file for pcmanfm-qt and desktop preferences
|
||||
configure_file(pcmanfm-qt.desktop.in pcmanfm-qt.desktop @ONLY)
|
||||
configure_file(pcmanfm-qt-desktop-pref.desktop.in pcmanfm-qt-desktop-pref.desktop @ONLY)
|
||||
install(FILES
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/pcmanfm-qt.desktop"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/pcmanfm-qt-desktop-pref.desktop"
|
||||
DESTINATION "${CMAKE_INSTALL_DATADIR}/applications"
|
||||
install(FILES ${DESKTOP_FILES} DESTINATION "${CMAKE_INSTALL_DATADIR}/applications"
|
||||
)
|
||||
|
||||
# add translation for pcmanfm-qt
|
||||
# See http://www.cmake.org/Wiki/CMake:How_To_Build_Qt4_Software
|
||||
file(GLOB TS_FILES translations/*.ts)
|
||||
|
||||
qt5_create_translation(QM_FILES ${pcmanfm_SRCS} ${pcmanfm_UIS_H} ${TS_FILES})
|
||||
qt5_add_translation(QM_FILES ${TS_FILES})
|
||||
|
||||
add_custom_target(pcmanfm_translations DEPENDS ${QM_FILES})
|
||||
install(FILES ${QM_FILES} DESTINATION "${CMAKE_INSTALL_DATADIR}/pcmanfm-qt/translations")
|
||||
|
||||
# prevent the generated files from being deleted during make clean
|
||||
|
@ -32,7 +32,9 @@
|
||||
#include <QFile>
|
||||
#include <QMessageBox>
|
||||
#include <QCommandLineParser>
|
||||
#include <QSocketNotifier>
|
||||
#include <gio/gio.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
#include "applicationadaptor.h"
|
||||
#include "preferencesdialog.h"
|
||||
@ -84,6 +86,8 @@ Application::Application(int& argc, char** argv):
|
||||
dbus.registerObject("/Application", this);
|
||||
|
||||
connect(this, &Application::aboutToQuit, this, &Application::onAboutToQuit);
|
||||
// aboutToQuit() is not signalled on SIGTERM, install signal handler
|
||||
installSigtermHandler();
|
||||
settings_.load(profileName_);
|
||||
|
||||
// decrease the cache size to reduce memory usage
|
||||
@ -200,7 +204,7 @@ bool Application::parseCommandLineArgs() {
|
||||
paths.push_back(QDir::currentPath());
|
||||
}
|
||||
if(!paths.isEmpty())
|
||||
launchFiles(paths, parser.isSet(newWindowOption));
|
||||
launchFiles(QDir::currentPath(), paths, parser.isSet(newWindowOption));
|
||||
keepRunning = true;
|
||||
}
|
||||
}
|
||||
@ -235,8 +239,8 @@ bool Application::parseCommandLineArgs() {
|
||||
QStringList paths = parser.positionalArguments();
|
||||
if(paths.isEmpty()) {
|
||||
paths.push_back(QDir::currentPath());
|
||||
}
|
||||
iface.call("launchFiles", paths, parser.isSet(newWindowOption));
|
||||
}
|
||||
iface.call("launchFiles", QDir::currentPath(), paths, parser.isSet(newWindowOption));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -370,15 +374,31 @@ void Application::findFiles(QStringList paths) {
|
||||
qDebug("findFiles");
|
||||
}
|
||||
|
||||
void Application::launchFiles(QStringList paths, bool inNewWindow) {
|
||||
void Application::launchFiles(QString cwd, QStringList paths, bool inNewWindow) {
|
||||
FmPathList* pathList = fm_path_list_new();
|
||||
FmPath* cwd_path = NULL;
|
||||
QStringList::iterator it;
|
||||
for(it = paths.begin(); it != paths.end(); ++it) {
|
||||
QString& pathName = *it;
|
||||
FmPath* path = fm_path_new_for_commandline_arg(pathName.toLocal8Bit().constData());
|
||||
Q_FOREACH(const QString& it, paths) {
|
||||
QByteArray pathName = it.toLocal8Bit();
|
||||
FmPath* path = NULL;
|
||||
if(pathName[0] == '/') // absolute path
|
||||
path = fm_path_new_for_path(pathName.constData());
|
||||
else if(pathName.contains(":/")) // URI
|
||||
path = fm_path_new_for_uri(pathName.constData());
|
||||
else if(pathName == "~") // special case for home dir
|
||||
path = fm_path_ref(fm_path_get_home());
|
||||
else // basename
|
||||
{
|
||||
if(Q_UNLIKELY(!cwd_path))
|
||||
cwd_path = fm_path_new_for_str(cwd.toLocal8Bit().constData());
|
||||
path = fm_path_new_relative(cwd_path, pathName.constData());
|
||||
}
|
||||
fm_path_list_push_tail(pathList, path);
|
||||
fm_path_unref(path);
|
||||
}
|
||||
if(cwd_path)
|
||||
fm_path_unref(cwd_path);
|
||||
|
||||
Launcher(NULL).launchPaths(NULL, pathList);
|
||||
fm_path_list_unref(pathList);
|
||||
}
|
||||
@ -659,7 +679,6 @@ void Application::onScreenDestroyed(QObject* screenObj) {
|
||||
//
|
||||
// The workaround is very simple. Just completely destroy the window before Qt has a chance to do
|
||||
// QWindow::setScreen() for it. Later, we recreate the window ourselves. So this can bypassing the Qt bugs.
|
||||
QScreen* screen = static_cast<QScreen*>(screenObj);
|
||||
if(enableDesktopManager_) {
|
||||
bool reloadNeeded = false;
|
||||
// FIXME: add workarounds for Qt5 bug #40681 and #40791 here.
|
||||
@ -699,10 +718,44 @@ void Application::onVirtualGeometryChanged(const QRect& rect) {
|
||||
// virtualGeometryChanged() is emitted correctly when the workAreas changed.
|
||||
// So we use it in Qt5.
|
||||
if(enableDesktopManager_) {
|
||||
QScreen* screeb = static_cast<QScreen*>(sender());
|
||||
// qDebug() << "onVirtualGeometryChanged";
|
||||
Q_FOREACH(DesktopWindow* desktop, desktopWindows_) {
|
||||
desktop->queueRelayout();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static int sigterm_fd[2];
|
||||
|
||||
static void sigtermHandler(int) {
|
||||
char c = 1;
|
||||
::write(sigterm_fd[0], &c, sizeof(c));
|
||||
}
|
||||
|
||||
void Application::installSigtermHandler() {
|
||||
if(::socketpair(AF_UNIX, SOCK_STREAM, 0, sigterm_fd) == 0) {
|
||||
QSocketNotifier* notifier = new QSocketNotifier(sigterm_fd[1], QSocketNotifier::Read, this);
|
||||
connect(notifier, &QSocketNotifier::activated, this, &Application::onSigtermNotified);
|
||||
|
||||
struct sigaction action;
|
||||
action.sa_handler = sigtermHandler;
|
||||
::sigemptyset(&action.sa_mask);
|
||||
action.sa_flags |= SA_RESTART;
|
||||
if(::sigaction(SIGTERM, &action, 0) != 0) {
|
||||
qWarning("Couldn't install SIGTERM handler");
|
||||
}
|
||||
} else {
|
||||
qWarning("Couldn't create SIGTERM socketpair");
|
||||
}
|
||||
}
|
||||
|
||||
void Application::onSigtermNotified() {
|
||||
if (QSocketNotifier* notifier = qobject_cast<QSocketNotifier*>(sender())) {
|
||||
notifier->setEnabled(false);
|
||||
char c;
|
||||
::read(sigterm_fd[1], &c, sizeof(c));
|
||||
quit();
|
||||
notifier->setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
@ -69,7 +69,7 @@ public:
|
||||
}
|
||||
|
||||
// public interface exported via dbus
|
||||
void launchFiles(QStringList paths, bool inNewWindow);
|
||||
void launchFiles(QString cwd, QStringList paths, bool inNewWindow);
|
||||
void setWallpaper(QString path, QString modeString);
|
||||
void preferences(QString page);
|
||||
void desktopPrefrences(QString page);
|
||||
@ -95,6 +95,7 @@ public:
|
||||
|
||||
protected Q_SLOTS:
|
||||
void onAboutToQuit();
|
||||
void onSigtermNotified();
|
||||
|
||||
void onLastWindowClosed();
|
||||
void onSaveStateRequest(QSessionManager & manager);
|
||||
@ -116,6 +117,8 @@ protected:
|
||||
static void onVolumeAdded(GVolumeMonitor* monitor, GVolume* volume, Application* pThis);
|
||||
|
||||
private:
|
||||
void installSigtermHandler();
|
||||
|
||||
bool isPrimaryInstance;
|
||||
Fm::LibFmQt libFm_;
|
||||
Settings settings_;
|
||||
|
@ -42,8 +42,6 @@ void DesktopItemDelegate::paint(QPainter* painter, const QStyleOptionViewItem& o
|
||||
Q_ASSERT(index.isValid());
|
||||
QStyleOptionViewItemV4 opt = option;
|
||||
initStyleOption(&opt, index);
|
||||
const QWidget* widget = opt.widget;
|
||||
QStyle* style = widget ? widget->style() : QApplication::style();
|
||||
|
||||
painter->save();
|
||||
painter->setClipRect(option.rect);
|
||||
@ -112,8 +110,8 @@ void DesktopItemDelegate::paint(QPainter* painter, const QStyleOptionViewItem& o
|
||||
QRectF boundRect = layout.boundingRect();
|
||||
boundRect.setWidth(width);
|
||||
boundRect.moveTo(textRect.x() + (textRect.width() - width)/2, textRect.y());
|
||||
if(opt.state & QStyle::State_Selected) {
|
||||
QPalette palette = widget->palette();
|
||||
if((opt.state & QStyle::State_Selected) && opt.widget) {
|
||||
QPalette palette = opt.widget->palette();
|
||||
// qDebug("w: %f, h:%f, m:%f", boundRect.width(), boundRect.height(), layout.minimumWidth());
|
||||
painter->fillRect(boundRect, palette.highlight());
|
||||
}
|
||||
@ -158,8 +156,6 @@ QSize DesktopItemDelegate::sizeHint(const QStyleOptionViewItem& option, const QM
|
||||
return qvariant_cast<QSize>(value);
|
||||
QStyleOptionViewItemV4 opt = option;
|
||||
initStyleOption(&opt, index);
|
||||
const QWidget* widget = opt.widget;
|
||||
QStyle* style = widget ? widget->style() : QApplication::style();
|
||||
|
||||
// use grid size as size hint
|
||||
QSize gridSize = view_->gridSize();
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "desktopwindow.h"
|
||||
#include "settings.h"
|
||||
#include "application.h"
|
||||
#include "xdgdir.h"
|
||||
#include <QFileDialog>
|
||||
#include <QImageReader>
|
||||
#include <QFile>
|
||||
@ -32,54 +33,6 @@
|
||||
|
||||
using namespace PCManFM;
|
||||
|
||||
static QString readUserDirsFile() {
|
||||
QFile file(QStandardPaths::writableLocation(QStandardPaths::ConfigLocation) + QStringLiteral("/user-dirs.dirs"));
|
||||
if(file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||
QByteArray data = file.readAll();
|
||||
file.close();
|
||||
return QString::fromLocal8Bit(data);
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
static QString readDesktopDir() {
|
||||
QString str = readUserDirsFile();
|
||||
if(str.isEmpty())
|
||||
return QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + QStringLiteral("/Desktop");
|
||||
QRegExp reg(QStringLiteral("XDG_DESKTOP_DIR=\"([^\n]*)\""));
|
||||
if(reg.lastIndexIn(str) != -1) {
|
||||
str = reg.cap(1);
|
||||
if(str.startsWith(QStringLiteral("$HOME")))
|
||||
str = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + str.mid(5);
|
||||
return str;
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
static void setDesktopDir(QString path) {
|
||||
QString home = QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
|
||||
if(path.startsWith(home))
|
||||
path = QStringLiteral("$HOME") + path.mid(home.length());
|
||||
QString str = readUserDirsFile();
|
||||
QRegExp reg(QStringLiteral("XDG_DESKTOP_DIR=\"([^\n]*)\""));
|
||||
QString line = QStringLiteral("XDG_DESKTOP_DIR=\"") + path + '\"';
|
||||
if(reg.indexIn(str) != -1)
|
||||
str.replace(reg, line);
|
||||
else {
|
||||
if(!str.endsWith('\n'))
|
||||
str += '\n';
|
||||
str += line + '\n';
|
||||
}
|
||||
QString dir = QStandardPaths::writableLocation(QStandardPaths::ConfigLocation);
|
||||
if(QDir().mkpath(dir)) { // write the file
|
||||
QSaveFile file(dir + QStringLiteral("/user-dirs.dirs"));
|
||||
if(file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
||||
file.write(str.toLocal8Bit());
|
||||
file.commit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
DesktopPreferencesDialog::DesktopPreferencesDialog(QWidget* parent, Qt::WindowFlags f):
|
||||
QDialog(parent, f) {
|
||||
|
||||
@ -122,7 +75,7 @@ DesktopPreferencesDialog::DesktopPreferencesDialog(QWidget* parent, Qt::WindowFl
|
||||
ui.imageFile->setText(settings.wallpaper());
|
||||
|
||||
connect(ui.browseDesktopFolder, &QPushButton::clicked, this, &DesktopPreferencesDialog::onBrowseDesktopFolderClicked);
|
||||
QString desktopFolder = readDesktopDir();
|
||||
QString desktopFolder = XdgDir::readDesktopDir();
|
||||
qDebug("desktop folder: %s", desktopFolder.toStdString().c_str());
|
||||
ui.desktopFolder->setText(desktopFolder);
|
||||
|
||||
@ -140,7 +93,7 @@ DesktopPreferencesDialog::~DesktopPreferencesDialog() {
|
||||
void DesktopPreferencesDialog::accept() {
|
||||
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||
|
||||
setDesktopDir(ui.desktopFolder->text());
|
||||
XdgDir::setDesktopDir(ui.desktopFolder->text());
|
||||
|
||||
settings.setWallpaper(ui.imageFile->text());
|
||||
int mode = ui.wallpaperMode->itemData(ui.wallpaperMode->currentIndex()).toInt();
|
||||
@ -158,7 +111,6 @@ void DesktopPreferencesDialog::accept() {
|
||||
}
|
||||
|
||||
void DesktopPreferencesDialog::onWallpaperModeChanged(int index) {
|
||||
int n = ui.wallpaperMode->count();
|
||||
int mode = ui.wallpaperMode->itemData(index).toInt();
|
||||
|
||||
bool enable = (mode != DesktopWindow::WallpaperNone);
|
||||
|
@ -48,6 +48,7 @@
|
||||
#include "filepropsdialog.h"
|
||||
#include "utilities.h"
|
||||
#include "path.h"
|
||||
#include "xdgdir.h"
|
||||
|
||||
#include <QX11Info>
|
||||
#include <QScreen>
|
||||
@ -198,7 +199,8 @@ void DesktopWindow::resizeEvent(QResizeEvent* event) {
|
||||
}
|
||||
|
||||
void DesktopWindow::setDesktopFolder() {
|
||||
model_ = Fm::CachedFolderModel::modelFromPath(fm_path_get_desktop());
|
||||
FmPath *path = fm_path_new_for_path(XdgDir::readDesktopDir().toStdString().c_str());
|
||||
model_ = Fm::CachedFolderModel::modelFromPath(path);
|
||||
proxyModel_->setSourceModel(model_);
|
||||
}
|
||||
|
||||
@ -649,7 +651,7 @@ void DesktopWindow::onDeleteActivated() {
|
||||
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||
bool shiftPressed = (qApp->keyboardModifiers() & Qt::ShiftModifier ? true : false);
|
||||
if(settings.useTrash() && !shiftPressed)
|
||||
Fm::FileOperation::trashFiles(paths, settings.confirmDelete());
|
||||
Fm::FileOperation::trashFiles(paths, settings.confirmTrash());
|
||||
else
|
||||
Fm::FileOperation::deleteFiles(paths, settings.confirmDelete());
|
||||
fm_path_list_unref(paths);
|
||||
@ -697,7 +699,11 @@ bool DesktopWindow::event(QEvent* event)
|
||||
case QEvent::FontChange:
|
||||
queueRelayout();
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return QWidget::event(event);
|
||||
}
|
||||
|
||||
|
@ -28,6 +28,8 @@ Launcher::Launcher(PCManFM::MainWindow* mainWindow):
|
||||
Fm::FileLauncher(),
|
||||
mainWindow_(mainWindow) {
|
||||
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
setQuickExec(app->settings().quickExec());
|
||||
}
|
||||
|
||||
Launcher::~Launcher() {
|
||||
|
@ -74,9 +74,18 @@
|
||||
<property name="title">
|
||||
<string>&File</string>
|
||||
</property>
|
||||
<widget class="QMenu" name="menuCreateNew">
|
||||
<property name="title">
|
||||
<string>C&reate New</string>
|
||||
</property>
|
||||
<addaction name="actionNewFolder"/>
|
||||
<addaction name="actionNewBlankFile"/>
|
||||
</widget>
|
||||
<addaction name="actionNewTab"/>
|
||||
<addaction name="actionNewWin"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="menuCreateNew"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionFileProperties"/>
|
||||
<addaction name="actionFolderProperties"/>
|
||||
<addaction name="separator"/>
|
||||
@ -628,6 +637,28 @@
|
||||
<string>&Edit Bookmarks</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionNewFolder">
|
||||
<property name="icon">
|
||||
<iconset theme="folder-new"/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Folder</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+Shift+N</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionNewBlankFile">
|
||||
<property name="icon">
|
||||
<iconset theme="document-new"/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Blank File</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+Alt+N</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
|
@ -59,12 +59,16 @@ MainWindow::MainWindow(FmPath* path):
|
||||
ui.setupUi(this);
|
||||
|
||||
// hide menu items that are not usable
|
||||
if(!isUriSchemeSupported("computer"))
|
||||
ui.actionComputer->setVisible(false);
|
||||
if(!isUriSchemeSupported("trash"))
|
||||
//if(!uriExists("computer:///"))
|
||||
// ui.actionComputer->setVisible(false);
|
||||
if(!settings.supportTrash())
|
||||
ui.actionTrash->setVisible(false);
|
||||
if(!isUriSchemeSupported("network"))
|
||||
ui.actionNetwork->setVisible(false);
|
||||
|
||||
// FIXME: add an option to hide network:///
|
||||
// We cannot use uriExists() here since calling this on "network:///"
|
||||
// is very slow and blocking.
|
||||
//if(!uriExists("network:///"))
|
||||
// ui.actionNetwork->setVisible(false);
|
||||
|
||||
// add a context menu for showing browse history to back and forward buttons
|
||||
QToolButton* forwardButton = static_cast<QToolButton*>(ui.toolBar->widgetForAction(ui.actionGoForward));
|
||||
@ -94,8 +98,14 @@ MainWindow::MainWindow(FmPath* path):
|
||||
|
||||
// side pane
|
||||
ui.sidePane->setIconSize(QSize(settings.sidePaneIconSize(), settings.sidePaneIconSize()));
|
||||
ui.sidePane->setMode(Fm::SidePane::ModePlaces);
|
||||
ui.sidePane->setMode(settings.sidePaneMode());
|
||||
connect(ui.sidePane, &Fm::SidePane::chdirRequested, this, &MainWindow::onSidePaneChdirRequested);
|
||||
connect(ui.sidePane, &Fm::SidePane::openFolderInNewWindowRequested, this, &MainWindow::onSidePaneOpenFolderInNewWindowRequested);
|
||||
connect(ui.sidePane, &Fm::SidePane::openFolderInNewTabRequested, this, &MainWindow::onSidePaneOpenFolderInNewTabRequested);
|
||||
connect(ui.sidePane, &Fm::SidePane::openFolderInTerminalRequested, this, &MainWindow::onSidePaneOpenFolderInTerminalRequested);
|
||||
connect(ui.sidePane, &Fm::SidePane::createNewFolderRequested, this, &MainWindow::onSidePaneCreateNewFolderRequested);
|
||||
connect(ui.sidePane, &Fm::SidePane::modeChanged, this, &MainWindow::onSidePaneModeChanged);
|
||||
|
||||
// detect change of splitter position
|
||||
connect(ui.splitter, &QSplitter::splitterMoved, this, &MainWindow::onSplitterMoved);
|
||||
|
||||
@ -173,6 +183,13 @@ MainWindow::MainWindow(FmPath* path):
|
||||
|
||||
if(path)
|
||||
addTab(path);
|
||||
|
||||
// size from settings
|
||||
if(settings.rememberWindowSize()) {
|
||||
resize(settings.windowWidth(), settings.windowHeight());
|
||||
if(settings.windowMaximized())
|
||||
setWindowState(windowState() | Qt::WindowMaximized);
|
||||
}
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow() {
|
||||
@ -262,14 +279,25 @@ void MainWindow::on_actionNewTab_triggered() {
|
||||
|
||||
void MainWindow::on_actionNewWin_triggered() {
|
||||
FmPath* path = currentPage()->path();
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
MainWindow* newWin = new MainWindow(path);
|
||||
newWin->resize(app->settings().windowWidth(), app->settings().windowHeight());
|
||||
(new MainWindow(path))->show();
|
||||
}
|
||||
|
||||
if(app->settings().windowMaximized())
|
||||
newWin->setWindowState(newWin->windowState() | Qt::WindowMaximized);
|
||||
void MainWindow::on_actionNewFolder_triggered() {
|
||||
if(TabPage* tabPage = currentPage()) {
|
||||
FmPath* dirPath = tabPage->folderView()->path();
|
||||
|
||||
newWin->show();
|
||||
if(dirPath)
|
||||
createFileOrFolder(CreateNewFolder, dirPath);
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_actionNewBlankFile_triggered() {
|
||||
if(TabPage* tabPage = currentPage()) {
|
||||
FmPath* dirPath = tabPage->folderView()->path();
|
||||
|
||||
if(dirPath)
|
||||
createFileOrFolder(CreateNewTextFile, dirPath);
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_actionCloseTab_triggered() {
|
||||
@ -313,6 +341,7 @@ void MainWindow::on_actionFolderProperties_triggered() {
|
||||
void MainWindow::on_actionShowHidden_triggered(bool checked) {
|
||||
TabPage* tabPage = currentPage();
|
||||
tabPage->setShowHidden(checked);
|
||||
ui.sidePane->setShowHidden(checked);
|
||||
static_cast<Application*>(qApp)->settings().setShowHidden(checked);
|
||||
}
|
||||
|
||||
@ -562,6 +591,7 @@ void MainWindow::updateUIForCurrentPage() {
|
||||
|
||||
// update side pane
|
||||
ui.sidePane->setCurrentPath(tabPage->path());
|
||||
ui.sidePane->setShowHidden(tabPage->showHidden());
|
||||
|
||||
// update back/forward/up toolbar buttons
|
||||
ui.actionGoUp->setEnabled(tabPage->canUp());
|
||||
@ -625,24 +655,16 @@ void MainWindow::onTabPageStatusChanged(int type, QString statusText) {
|
||||
|
||||
void MainWindow::onTabPageOpenDirRequested(FmPath* path, int target) {
|
||||
switch(target) {
|
||||
case View::OpenInCurrentView:
|
||||
case OpenInCurrentTab:
|
||||
chdir(path);
|
||||
break;
|
||||
|
||||
case View::OpenInNewTab:
|
||||
case OpenInNewTab:
|
||||
addTab(path);
|
||||
break;
|
||||
|
||||
case View::OpenInNewWindow: {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
MainWindow* newWin = new MainWindow(path);
|
||||
// TODO: apply window size from app->settings
|
||||
newWin->resize(app->settings().windowWidth(), app->settings().windowHeight());
|
||||
|
||||
if(app->settings().windowMaximized())
|
||||
newWin->setWindowState(newWin->windowState() | Qt::WindowMaximized);
|
||||
|
||||
newWin->show();
|
||||
case OpenInNewWindow: {
|
||||
(new MainWindow(path))->show();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -653,6 +675,10 @@ void MainWindow::onTabPageSortFilterChanged() {
|
||||
|
||||
if(tabPage == currentPage()) {
|
||||
updateViewMenuForCurrentPage();
|
||||
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||
settings.setSortColumn(static_cast<Fm::FolderModel::ColumnId>(tabPage->sortColumn()));
|
||||
settings.setSortOrder(tabPage->sortOrder());
|
||||
settings.setSortFolderFirst(tabPage->sortFolderFirst());
|
||||
}
|
||||
}
|
||||
|
||||
@ -663,6 +689,29 @@ void MainWindow::onSidePaneChdirRequested(int type, FmPath* path) {
|
||||
chdir(path);
|
||||
else if(type == 1) // middle button
|
||||
addTab(path);
|
||||
else if(type == 2) // new window
|
||||
(new MainWindow(path))->show();
|
||||
}
|
||||
|
||||
void MainWindow::onSidePaneOpenFolderInNewWindowRequested(FmPath* path) {
|
||||
(new MainWindow(path))->show();
|
||||
}
|
||||
|
||||
void MainWindow::onSidePaneOpenFolderInNewTabRequested(FmPath* path) {
|
||||
addTab(path);
|
||||
}
|
||||
|
||||
void MainWindow::onSidePaneOpenFolderInTerminalRequested(FmPath* path) {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
app->openFolderInTerminal(path);
|
||||
}
|
||||
|
||||
void MainWindow::onSidePaneCreateNewFolderRequested(FmPath* path) {
|
||||
createFileOrFolder(CreateNewFolder, path);
|
||||
}
|
||||
|
||||
void MainWindow::onSidePaneModeChanged(Fm::SidePane::Mode mode) {
|
||||
static_cast<Application*>(qApp)->settings().setSidePaneMode(mode);
|
||||
}
|
||||
|
||||
void MainWindow::onSplitterMoved(int pos, int index) {
|
||||
@ -671,17 +720,18 @@ void MainWindow::onSplitterMoved(int pos, int index) {
|
||||
}
|
||||
|
||||
void MainWindow::loadBookmarksMenu() {
|
||||
GList* l = fm_bookmarks_get_all(bookmarks);
|
||||
GList* allBookmarks = fm_bookmarks_get_all(bookmarks);
|
||||
QAction* before = ui.actionAddToBookmarks;
|
||||
|
||||
for(; l; l = l->next) {
|
||||
for(GList* l = allBookmarks; l; l = l->next) {
|
||||
FmBookmarkItem* item = reinterpret_cast<FmBookmarkItem*>(l->data);
|
||||
BookmarkAction* action = new BookmarkAction(item);
|
||||
BookmarkAction* action = new BookmarkAction(item, ui.menu_Bookmarks);
|
||||
connect(action, &QAction::triggered, this, &MainWindow::onBookmarkActionTriggered);
|
||||
ui.menu_Bookmarks->insertAction(before, action);
|
||||
}
|
||||
|
||||
ui.menu_Bookmarks->insertSeparator(before);
|
||||
g_list_free_full(allBookmarks, (GDestroyNotify)fm_bookmark_item_unref);
|
||||
}
|
||||
|
||||
void MainWindow::onBookmarksChanged(FmBookmarks* bookmarks, MainWindow* pThis) {
|
||||
@ -702,9 +752,22 @@ void MainWindow::onBookmarksChanged(FmBookmarks* bookmarks, MainWindow* pThis) {
|
||||
void MainWindow::onBookmarkActionTriggered() {
|
||||
BookmarkAction* action = static_cast<BookmarkAction*>(sender());
|
||||
FmPath* path = action->path();
|
||||
|
||||
if(path)
|
||||
chdir(path);
|
||||
if(path) {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
Settings& settings = app->settings();
|
||||
switch(settings.bookmarkOpenMethod()) {
|
||||
case OpenInCurrentTab: /* current tab */
|
||||
default:
|
||||
chdir(path);
|
||||
break;
|
||||
case OpenInNewTab: /* new tab */
|
||||
addTab(path);
|
||||
break;
|
||||
case OpenInNewWindow: /* new window */
|
||||
(new MainWindow(path))->show();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_actionCopy_triggered() {
|
||||
@ -733,7 +796,7 @@ void MainWindow::on_actionDelete_triggered() {
|
||||
|
||||
bool shiftPressed = (qApp->keyboardModifiers() & Qt::ShiftModifier ? true : false);
|
||||
if(settings.useTrash() && !shiftPressed)
|
||||
FileOperation::trashFiles(paths, settings.confirmDelete(), this);
|
||||
FileOperation::trashFiles(paths, settings.confirmTrash(), this);
|
||||
else
|
||||
FileOperation::deleteFiles(paths, settings.confirmDelete(), this);
|
||||
|
||||
@ -808,6 +871,7 @@ void MainWindow::updateFromSettings(Settings& settings) {
|
||||
|
||||
// menu
|
||||
ui.actionDelete->setText(settings.useTrash() ? tr("&Move to Trash") : tr("&Delete"));
|
||||
ui.actionDelete->setIcon(settings.useTrash() ? QIcon::fromTheme("user-trash") : QIcon::fromTheme("edit-delete"));
|
||||
|
||||
// side pane
|
||||
ui.sidePane->setIconSize(QSize(settings.sidePaneIconSize(), settings.sidePaneIconSize()));
|
||||
|
@ -59,6 +59,8 @@ protected Q_SLOTS:
|
||||
|
||||
void on_actionNewTab_triggered();
|
||||
void on_actionNewWin_triggered();
|
||||
void on_actionNewFolder_triggered();
|
||||
void on_actionNewBlankFile_triggered();
|
||||
void on_actionCloseTab_triggered();
|
||||
void on_actionCloseWindow_triggered();
|
||||
void on_actionFileProperties_triggered();
|
||||
@ -128,6 +130,11 @@ protected Q_SLOTS:
|
||||
void onTabPageSortFilterChanged();
|
||||
|
||||
void onSidePaneChdirRequested(int type, FmPath* path);
|
||||
void onSidePaneOpenFolderInNewWindowRequested(FmPath* path);
|
||||
void onSidePaneOpenFolderInNewTabRequested(FmPath* path);
|
||||
void onSidePaneOpenFolderInTerminalRequested(FmPath* path);
|
||||
void onSidePaneCreateNewFolderRequested(FmPath* path);
|
||||
void onSidePaneModeChanged(Fm::SidePane::Mode mode);
|
||||
void onSplitterMoved(int pos, int index);
|
||||
|
||||
void onBackForwardContextMenu(QPoint pos);
|
||||
|
@ -11,6 +11,7 @@
|
||||
<arg type="b" direction="in"/>
|
||||
</method>
|
||||
<method name="launchFiles">
|
||||
<arg type="s" direction="in"/>
|
||||
<arg type="as" direction="in"/>
|
||||
<arg type="b" direction="in"/>
|
||||
</method>
|
||||
|
@ -3,6 +3,10 @@
|
||||
#include "libfmqt.h"
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
// ensure that glib integration of Qt is not turned off
|
||||
// This fixes #168: https://github.com/lxde/pcmanfm-qt/issues/168
|
||||
qunsetenv("QT_NO_GLIB");
|
||||
|
||||
PCManFM::Application app(argc, argv);
|
||||
app.init();
|
||||
return app.exec();
|
||||
|
@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>736</width>
|
||||
<height>497</height>
|
||||
<width>685</width>
|
||||
<height>440</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
@ -28,16 +28,21 @@
|
||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
||||
</property>
|
||||
<property name="currentRow">
|
||||
<number>0</number>
|
||||
<number>-1</number>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>User Interface</string>
|
||||
<string>Behavior</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Behavior</string>
|
||||
<string>Display</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>User Interface</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
@ -68,14 +73,176 @@
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="uiPage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||
<widget class="QWidget" name="behaviorPage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3" stretch="0,0,1">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_4">
|
||||
<property name="title">
|
||||
<string>Browsing</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_5">
|
||||
<property name="fieldGrowthPolicy">
|
||||
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
|
||||
</property>
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="singleClick">
|
||||
<property name="text">
|
||||
<string>Open files with single click</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Delay of auto-selection in single click mode (0 to disable)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_11">
|
||||
<property name="text">
|
||||
<string>Default view mode:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QComboBox" name="viewMode"/>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QDoubleSpinBox" name="autoSelectionDelay">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string> sec</string>
|
||||
</property>
|
||||
<property name="singleStep">
|
||||
<double>0.100000000000000</double>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Bookmarks:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QComboBox" name="bookmarkOpenMethod">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Open in current tab</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Open in new tab</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Open in new window</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_6">
|
||||
<property name="title">
|
||||
<string>File Operations</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_9">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="configmDelete">
|
||||
<property name="text">
|
||||
<string>Confirm before deleting files</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="useTrash">
|
||||
<property name="text">
|
||||
<string>Move deleted files to "trash bin" instead of erasing from disk.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="noUsbTrash">
|
||||
<property name="text">
|
||||
<string>Erase files on removable media instead of "trash can" creation</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="confirmTrash">
|
||||
<property name="text">
|
||||
<string>Confirm before moving files into "trash can"</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="quickExec">
|
||||
<property name="text">
|
||||
<string>Don't ask options on launch executable file</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="displayPage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_7" stretch="0,0,1">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_2">
|
||||
<property name="title">
|
||||
<string>Icons</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_2">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="iconThemeLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Icon theme:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="iconTheme">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_6">
|
||||
<property name="text">
|
||||
@ -116,32 +283,69 @@
|
||||
<item row="4" column="1">
|
||||
<widget class="QComboBox" name="sidePaneIconSize"/>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="iconThemeLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_9">
|
||||
<property name="title">
|
||||
<string>User interface</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_8">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="siUnit">
|
||||
<property name="text">
|
||||
<string>Icon theme:</string>
|
||||
<string>Use SI decimal prefixes instead of IEC binary prefixes</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="iconTheme">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="backupAsHidden">
|
||||
<property name="text">
|
||||
<string>Treat backup files as hidden</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="showFullNames">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Always show full file names</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="shadowHidden">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show icons of hidden files shadowed</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="uiPage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_5" stretch="0,0,1">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_5">
|
||||
<property name="title">
|
||||
@ -203,6 +407,100 @@
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_10">
|
||||
<property name="title">
|
||||
<string>Show in places</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_10">
|
||||
<item>
|
||||
<widget class="QListWidget" name="showInPlaces">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Home</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="user-home">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Desktop</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="user-desktop">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Trash can</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="user-trash">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Computer</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="computer">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Applications</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Devices</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Network</string>
|
||||
</property>
|
||||
<property name="checkState">
|
||||
<enum>Unchecked</enum>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="folder-network">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_4">
|
||||
<property name="orientation">
|
||||
@ -210,100 +508,8 @@
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="behaviorPage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_4">
|
||||
<property name="title">
|
||||
<string>Browsing</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_5">
|
||||
<property name="fieldGrowthPolicy">
|
||||
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
|
||||
</property>
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="singleClick">
|
||||
<property name="text">
|
||||
<string>Open files with single click</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Delay of auto-selection in single click mode (0 to disable)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_11">
|
||||
<property name="text">
|
||||
<string>Default view mode:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QComboBox" name="viewMode"/>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QDoubleSpinBox" name="autoSelectionDelay">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string> sec</string>
|
||||
</property>
|
||||
<property name="singleStep">
|
||||
<double>0.100000000000000</double>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_6">
|
||||
<property name="title">
|
||||
<string>File Operations</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_6">
|
||||
<item row="0" column="0">
|
||||
<widget class="QCheckBox" name="configmDelete">
|
||||
<property name="text">
|
||||
<string>Confirm before deleting files</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="useTrash">
|
||||
<property name="text">
|
||||
<string>Move deleted files to "trash bin" instead of erasing from disk.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
@ -311,45 +517,64 @@
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="thumbnailPage">
|
||||
<layout class="QFormLayout" name="formLayout_3">
|
||||
<property name="fieldGrowthPolicy">
|
||||
<enum>QFormLayout::ExpandingFieldsGrow</enum>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QCheckBox" name="showThumbnails">
|
||||
<property name="text">
|
||||
<string>Show thumbnails of files</string>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_11">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_8">
|
||||
<property name="title">
|
||||
<string>Thumbnail</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_3">
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_10">
|
||||
<property name="text">
|
||||
<string>Do not generate thumbnails for image files exceeding this size:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QSpinBox" name="maxThumbnailFileSize">
|
||||
<property name="suffix">
|
||||
<string> KB</string>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>1048576</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="thumbnailLocal">
|
||||
<property name="text">
|
||||
<string>Only show thumbnails for local files</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="showThumbnails">
|
||||
<property name="text">
|
||||
<string>Show thumbnails of files</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="thumbnailLocal">
|
||||
<property name="text">
|
||||
<string>Only show thumbnails for local files</string>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_10">
|
||||
<property name="text">
|
||||
<string>Do not generate thumbnails for image files exceeding this size:</string>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>225</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QSpinBox" name="maxThumbnailFileSize">
|
||||
<property name="suffix">
|
||||
<string> KB</string>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>1048576</number>
|
||||
</property>
|
||||
</widget>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="volumePage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,1">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_3">
|
||||
<property name="title">
|
||||
@ -389,14 +614,14 @@
|
||||
<item>
|
||||
<widget class="QRadioButton" name="closeOnUnmount">
|
||||
<property name="text">
|
||||
<string>Close tab containing removable medium</string>
|
||||
<string>Close &tab containing removable medium</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="goHomeOnUnmount">
|
||||
<property name="text">
|
||||
<string>Change folder in the tab to home folder</string>
|
||||
<string>Chan&ge folder in the tab to home folder</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -410,8 +635,8 @@
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
@ -419,7 +644,7 @@
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="advancedPage">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2" stretch="0,0,1">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="title">
|
||||
@ -439,7 +664,7 @@
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="text">
|
||||
<string>Switch user command:</string>
|
||||
<string>Switch &user command:</string>
|
||||
</property>
|
||||
<property name="buddy">
|
||||
<cstring>suCommand</cstring>
|
||||
@ -463,7 +688,7 @@
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_5">
|
||||
<property name="text">
|
||||
<string>Archiver integration:</string>
|
||||
<string>Archiver in&tegration:</string>
|
||||
</property>
|
||||
<property name="buddy">
|
||||
<cstring>archiver</cstring>
|
||||
@ -484,13 +709,33 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="siUnit">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use SI decimal prefixes instead of IEC binary prefixes</string>
|
||||
<widget class="QGroupBox" name="groupBox_11">
|
||||
<property name="title">
|
||||
<string>Templates</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_12">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="onlyUserTemplates">
|
||||
<property name="text">
|
||||
<string>Show only user defined templates in menu</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="templateTypeOnce">
|
||||
<property name="text">
|
||||
<string>Show only one template for each MIME type</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="templateRunApp">
|
||||
<property name="text">
|
||||
<string>Run default application after creation from template</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -500,8 +745,8 @@
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
@ -525,28 +770,25 @@
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>smallIconSize</tabstop>
|
||||
<tabstop>bigIconSize</tabstop>
|
||||
<tabstop>thumbnailIconSize</tabstop>
|
||||
<tabstop>sidePaneIconSize</tabstop>
|
||||
<tabstop>iconTheme</tabstop>
|
||||
<tabstop>listWidget</tabstop>
|
||||
<tabstop>alwaysShowTabs</tabstop>
|
||||
<tabstop>showTabClose</tabstop>
|
||||
<tabstop>rememberWindowSize</tabstop>
|
||||
<tabstop>fixedWindowWidth</tabstop>
|
||||
<tabstop>fixedWindowHeight</tabstop>
|
||||
<tabstop>singleClick</tabstop>
|
||||
<tabstop>autoSelectionDelay</tabstop>
|
||||
<tabstop>viewMode</tabstop>
|
||||
<tabstop>configmDelete</tabstop>
|
||||
<tabstop>useTrash</tabstop>
|
||||
<tabstop>showThumbnails</tabstop>
|
||||
<tabstop>mountOnStartup</tabstop>
|
||||
<tabstop>mountRemovable</tabstop>
|
||||
<tabstop>autoRun</tabstop>
|
||||
<tabstop>closeOnUnmount</tabstop>
|
||||
<tabstop>goHomeOnUnmount</tabstop>
|
||||
<tabstop>terminal</tabstop>
|
||||
<tabstop>suCommand</tabstop>
|
||||
<tabstop>archiver</tabstop>
|
||||
<tabstop>siUnit</tabstop>
|
||||
<tabstop>autoRun</tabstop>
|
||||
<tabstop>mountRemovable</tabstop>
|
||||
<tabstop>buttonBox</tabstop>
|
||||
<tabstop>listWidget</tabstop>
|
||||
<tabstop>thumbnailLocal</tabstop>
|
||||
<tabstop>maxThumbnailFileSize</tabstop>
|
||||
</tabstops>
|
||||
<resources/>
|
||||
<connections>
|
||||
|
@ -81,8 +81,6 @@ static void findIconThemesInDir(QHash<QString, QString>& iconThemes, QString dir
|
||||
}
|
||||
|
||||
void PreferencesDialog::initIconThemes(Settings& settings) {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
|
||||
// check if auto-detection is done (for example, from xsettings)
|
||||
if(settings.useFallbackIconTheme()) { // auto-detection failed
|
||||
// load xdg icon themes and select the current one
|
||||
@ -133,45 +131,62 @@ void PreferencesDialog::initArchivers(Settings& settings) {
|
||||
}
|
||||
}
|
||||
|
||||
void PreferencesDialog::initDisplayPage(Settings& settings) {
|
||||
initIconThemes(settings);
|
||||
// icon sizes
|
||||
int i;
|
||||
for(i = 0; i < G_N_ELEMENTS(bigIconSizes); ++i) {
|
||||
int size = bigIconSizes[i];
|
||||
ui.bigIconSize->addItem(QString("%1 x %1").arg(size), size);
|
||||
if(settings.bigIconSize() == size)
|
||||
ui.bigIconSize->setCurrentIndex(i);
|
||||
}
|
||||
for(i = 0; i < G_N_ELEMENTS(smallIconSizes); ++i) {
|
||||
int size = smallIconSizes[i];
|
||||
QString text = QString("%1 x %1").arg(size);
|
||||
ui.smallIconSize->addItem(text, size);
|
||||
if(settings.smallIconSize() == size)
|
||||
ui.smallIconSize->setCurrentIndex(i);
|
||||
|
||||
ui.sidePaneIconSize->addItem(text, size);
|
||||
if(settings.sidePaneIconSize() == size)
|
||||
ui.sidePaneIconSize->setCurrentIndex(i);
|
||||
}
|
||||
for(i = 0; i < G_N_ELEMENTS(thumbnailIconSizes); ++i) {
|
||||
int size = thumbnailIconSizes[i];
|
||||
ui.thumbnailIconSize->addItem(QString("%1 x %1").arg(size), size);
|
||||
if(settings.thumbnailIconSize() == size)
|
||||
ui.thumbnailIconSize->setCurrentIndex(i);
|
||||
}
|
||||
|
||||
ui.siUnit->setChecked(settings.siUnit());
|
||||
ui.backupAsHidden->setChecked(settings.backupAsHidden());
|
||||
|
||||
ui.showFullNames->setChecked(settings.showFullNames());
|
||||
ui.shadowHidden->setChecked(settings.shadowHidden());
|
||||
|
||||
// FIXME: Hide options that we don't support yet.
|
||||
ui.showFullNames->hide();
|
||||
ui.shadowHidden->hide();
|
||||
}
|
||||
|
||||
void PreferencesDialog::initUiPage(Settings& settings) {
|
||||
initIconThemes(settings);
|
||||
// icon sizes
|
||||
int i;
|
||||
for(i = 0; i < G_N_ELEMENTS(bigIconSizes); ++i) {
|
||||
int size = bigIconSizes[i];
|
||||
ui.bigIconSize->addItem(QString("%1 x %1").arg(size), size);
|
||||
if(settings.bigIconSize() == size)
|
||||
ui.bigIconSize->setCurrentIndex(i);
|
||||
}
|
||||
for(i = 0; i < G_N_ELEMENTS(smallIconSizes); ++i) {
|
||||
int size = smallIconSizes[i];
|
||||
QString text = QString("%1 x %1").arg(size);
|
||||
ui.smallIconSize->addItem(text, size);
|
||||
if(settings.smallIconSize() == size)
|
||||
ui.smallIconSize->setCurrentIndex(i);
|
||||
|
||||
ui.sidePaneIconSize->addItem(text, size);
|
||||
if(settings.sidePaneIconSize() == size)
|
||||
ui.sidePaneIconSize->setCurrentIndex(i);
|
||||
}
|
||||
for(i = 0; i < G_N_ELEMENTS(thumbnailIconSizes); ++i) {
|
||||
int size = thumbnailIconSizes[i];
|
||||
ui.thumbnailIconSize->addItem(QString("%1 x %1").arg(size), size);
|
||||
if(settings.thumbnailIconSize() == size)
|
||||
ui.thumbnailIconSize->setCurrentIndex(i);
|
||||
}
|
||||
|
||||
ui.alwaysShowTabs->setChecked(settings.alwaysShowTabs());
|
||||
ui.showTabClose->setChecked(settings.showTabClose());
|
||||
ui.rememberWindowSize->setChecked(settings.rememberWindowSize());
|
||||
ui.fixedWindowWidth->setValue(settings.fixedWindowWidth());
|
||||
ui.fixedWindowHeight->setValue(settings.fixedWindowHeight());
|
||||
|
||||
// FIXME: Hide options that we don't support yet.
|
||||
ui.showInPlaces->parentWidget()->hide();
|
||||
}
|
||||
|
||||
void PreferencesDialog::initBehaviorPage(Settings& settings) {
|
||||
ui.singleClick->setChecked(settings.singleClick());
|
||||
ui.autoSelectionDelay->setValue(double(settings.autoSelectionDelay()) / 1000);
|
||||
|
||||
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("Thumbnail View"), (int)Fm::FolderView::ThumbnailMode);
|
||||
@ -196,6 +211,10 @@ void PreferencesDialog::initBehaviorPage(Settings& settings) {
|
||||
else {
|
||||
ui.useTrash->hide();
|
||||
}
|
||||
|
||||
ui.noUsbTrash->setChecked(settings.noUsbTrash());
|
||||
ui.confirmTrash->setChecked(settings.confirmTrash());
|
||||
ui.quickExec->setChecked(settings.quickExec());
|
||||
}
|
||||
|
||||
void PreferencesDialog::initThumbnailPage(Settings& settings) {
|
||||
@ -225,11 +244,19 @@ void PreferencesDialog::initAdvancedPage(Settings& settings) {
|
||||
initArchivers(settings);
|
||||
initTerminals(settings);
|
||||
ui.suCommand->setText(settings.suCommand());
|
||||
// ui.siUnit->setChecked(settings.siUnit());
|
||||
|
||||
ui.onlyUserTemplates->setChecked(settings.onlyUserTemplates());
|
||||
ui.templateTypeOnce->setChecked(settings.templateTypeOnce());
|
||||
|
||||
ui.templateRunApp->setChecked(settings.templateRunApp());
|
||||
|
||||
// FIXME: Hide options that we don't support yet.
|
||||
ui.templateRunApp->hide();
|
||||
}
|
||||
|
||||
void PreferencesDialog::initFromSettings() {
|
||||
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||
initDisplayPage(settings);
|
||||
initUiPage(settings);
|
||||
initBehaviorPage(settings);
|
||||
initThumbnailPage(settings);
|
||||
@ -237,7 +264,7 @@ void PreferencesDialog::initFromSettings() {
|
||||
initAdvancedPage(settings);
|
||||
}
|
||||
|
||||
void PreferencesDialog::applyUiPage(Settings& settings) {
|
||||
void PreferencesDialog::applyDisplayPage(Settings& settings) {
|
||||
if(settings.useFallbackIconTheme()) {
|
||||
// only apply the value if icon theme combo box is in use
|
||||
// the combo box is hidden when auto-detection of icon theme from xsettings works.
|
||||
@ -257,6 +284,14 @@ void PreferencesDialog::applyUiPage(Settings& settings) {
|
||||
settings.setSmallIconSize(ui.smallIconSize->itemData(ui.smallIconSize->currentIndex()).toInt());
|
||||
settings.setThumbnailIconSize(ui.thumbnailIconSize->itemData(ui.thumbnailIconSize->currentIndex()).toInt());
|
||||
settings.setSidePaneIconSize(ui.sidePaneIconSize->itemData(ui.sidePaneIconSize->currentIndex()).toInt());
|
||||
|
||||
settings.setSiUnit(ui.siUnit->isChecked());
|
||||
settings.setBackupAsHidden(ui.backupAsHidden->isChecked());
|
||||
settings.setShowFullNames(ui.showFullNames->isChecked());
|
||||
settings.setShadowHidden(ui.shadowHidden->isChecked());
|
||||
}
|
||||
|
||||
void PreferencesDialog::applyUiPage(Settings& settings) {
|
||||
settings.setAlwaysShowTabs(ui.alwaysShowTabs->isChecked());
|
||||
settings.setShowTabClose(ui.showTabClose->isChecked());
|
||||
settings.setRememberWindowSize(ui.rememberWindowSize->isChecked());
|
||||
@ -267,6 +302,9 @@ void PreferencesDialog::applyUiPage(Settings& settings) {
|
||||
void PreferencesDialog::applyBehaviorPage(Settings& settings) {
|
||||
settings.setSingleClick(ui.singleClick->isChecked());
|
||||
settings.setAutoSelectionDelay(int(ui.autoSelectionDelay->value() * 1000));
|
||||
|
||||
settings.setBookmarkOpenMethod(OpenDirTargetType(ui.bookmarkOpenMethod->currentIndex()));
|
||||
|
||||
// FIXME: bug here?
|
||||
Fm::FolderView::ViewMode mode = Fm::FolderView::ViewMode(ui.viewMode->itemData(ui.viewMode->currentIndex()).toInt());
|
||||
settings.setViewMode(mode);
|
||||
@ -274,6 +312,10 @@ void PreferencesDialog::applyBehaviorPage(Settings& settings) {
|
||||
|
||||
if(settings.supportTrash())
|
||||
settings.setUseTrash(ui.useTrash->isChecked());
|
||||
|
||||
settings.setNoUsbTrash(ui.noUsbTrash->isChecked());
|
||||
settings.setConfirmTrash(ui.confirmTrash->isChecked());
|
||||
settings.setQuickExec(ui.quickExec->isChecked());
|
||||
}
|
||||
|
||||
void PreferencesDialog::applyThumbnailPage(Settings& settings) {
|
||||
@ -293,12 +335,16 @@ void PreferencesDialog::applyAdvancedPage(Settings& settings) {
|
||||
settings.setTerminal(ui.terminal->currentText());
|
||||
settings.setSuCommand(ui.suCommand->text());
|
||||
settings.setArchiver(ui.archiver->itemData(ui.archiver->currentIndex()).toString());
|
||||
settings.setSiUnit(ui.siUnit->isChecked());
|
||||
|
||||
settings.setOnlyUserTemplates(ui.onlyUserTemplates->isChecked());
|
||||
settings.setTemplateTypeOnce(ui.templateTypeOnce->isChecked());
|
||||
settings.setTemplateRunApp(ui.templateRunApp->isChecked());
|
||||
}
|
||||
|
||||
|
||||
void PreferencesDialog::applySettings() {
|
||||
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||
applyDisplayPage(settings);
|
||||
applyUiPage(settings);
|
||||
applyBehaviorPage(settings);
|
||||
applyThumbnailPage(settings);
|
||||
|
@ -43,6 +43,7 @@ public:
|
||||
private:
|
||||
void initIconThemes(Settings& settings);
|
||||
void initArchivers(Settings& settings);
|
||||
void initDisplayPage(Settings& settings);
|
||||
void initUiPage(Settings& settings);
|
||||
void initBehaviorPage(Settings& settings);
|
||||
void initThumbnailPage(Settings& settings);
|
||||
@ -51,6 +52,7 @@ private:
|
||||
void initTerminals(Settings& settings);
|
||||
|
||||
void applyUiPage(Settings& settings);
|
||||
void applyDisplayPage(Settings& settings);
|
||||
void applyBehaviorPage(Settings& settings);
|
||||
void applyThumbnailPage(Settings& settings);
|
||||
void applyVolumePage(Settings& settings);
|
||||
|
@ -30,8 +30,8 @@
|
||||
|
||||
using namespace PCManFM;
|
||||
|
||||
inline static const char* bookmarkOpenMethodToString(int value);
|
||||
inline static int bookmarkOpenMethodFromString(const QString str);
|
||||
inline static const char* bookmarkOpenMethodToString(OpenDirTargetType value);
|
||||
inline static OpenDirTargetType bookmarkOpenMethodFromString(const QString str);
|
||||
|
||||
inline static const char* wallpaperModeToString(int value);
|
||||
inline static int wallpaperModeFromString(const QString str);
|
||||
@ -39,8 +39,8 @@ inline static int wallpaperModeFromString(const QString str);
|
||||
inline static const char* viewModeToString(Fm::FolderView::ViewMode value);
|
||||
inline static Fm::FolderView::ViewMode viewModeFromString(const QString str);
|
||||
|
||||
inline static const char* sidePaneModeToString(int value);
|
||||
inline static int sidePaneModeFromString(const QString str);
|
||||
inline static const char* sidePaneModeToString(Fm::SidePane::Mode value);
|
||||
inline static Fm::SidePane::Mode sidePaneModeFromString(const QString& str);
|
||||
|
||||
inline static const char* sortOrderToString(Qt::SortOrder order);
|
||||
inline static Qt::SortOrder sortOrderFromString(const QString str);
|
||||
@ -50,10 +50,10 @@ inline static Fm::FolderModel::ColumnId sortColumnFromString(const QString str);
|
||||
|
||||
Settings::Settings():
|
||||
QObject(),
|
||||
supportTrash_(Fm::isUriSchemeSupported("trash")),
|
||||
supportTrash_(Fm::uriExists("trash:///")), // check if trash:/// is supported
|
||||
fallbackIconThemeName_(),
|
||||
useFallbackIconTheme_(QIcon::themeName().isEmpty() || QIcon::themeName() == "hicolor"),
|
||||
bookmarkOpenMethod_(0),
|
||||
bookmarkOpenMethod_(OpenInCurrentTab),
|
||||
suCommand_(),
|
||||
terminal_(),
|
||||
mountOnStartup_(true),
|
||||
@ -71,23 +71,27 @@ Settings::Settings():
|
||||
desktopSortColumn_(Fm::FolderModel::ColumnFileName),
|
||||
alwaysShowTabs_(true),
|
||||
showTabClose_(true),
|
||||
rememberWindowSize_(true),
|
||||
fixedWindowWidth_(640),
|
||||
fixedWindowHeight_(480),
|
||||
lastWindowWidth_(640),
|
||||
lastWindowHeight_(480),
|
||||
lastWindowMaximized_(false),
|
||||
splitterPos_(120),
|
||||
sidePaneMode_(0),
|
||||
sidePaneMode_(Fm::SidePane::ModePlaces),
|
||||
viewMode_(Fm::FolderView::IconMode),
|
||||
showHidden_(false),
|
||||
sortOrder_(Qt::AscendingOrder),
|
||||
sortColumn_(Fm::FolderModel::ColumnFileName),
|
||||
sortFolderFirst_(true),
|
||||
// settings for use with libfm
|
||||
singleClick_(false),
|
||||
autoSelectionDelay_(600),
|
||||
useTrash_(true),
|
||||
confirmDelete_(true),
|
||||
noUsbTrash_(false),
|
||||
confirmTrash_(false),
|
||||
quickExec_(false),
|
||||
showThumbnails_(true),
|
||||
archiver_(),
|
||||
siUnit_(false),
|
||||
@ -149,6 +153,11 @@ bool Settings::loadFile(QString filePath) {
|
||||
setTerminal(settings.value("Terminal", "xterm").toString());
|
||||
setArchiver(settings.value("Archiver", "file-roller").toString());
|
||||
setSiUnit(settings.value("SIUnit", false).toBool());
|
||||
|
||||
setOnlyUserTemplates(settings.value("OnlyUserTemplates", false).toBool());
|
||||
setTemplateTypeOnce(settings.value("OemplateTypeOnce", false).toBool());
|
||||
setTemplateRunApp(settings.value("TemplateRunApp", false).toBool());
|
||||
|
||||
settings.endGroup();
|
||||
|
||||
settings.beginGroup("Behavior");
|
||||
@ -158,8 +167,9 @@ bool Settings::loadFile(QString filePath) {
|
||||
singleClick_ = settings.value("SingleClick", false).toBool();
|
||||
autoSelectionDelay_ = settings.value("AutoSelectionDelay", 600).toInt();
|
||||
confirmDelete_ = settings.value("ConfirmDelete", true).toBool();
|
||||
noUsbTrash_ = settings.value("NoUsbTrash", false).toBool();
|
||||
fm_config->no_usb_trash = noUsbTrash_; // also set this to libfm since FmFileOpsJob reads this config value before trashing files.
|
||||
setNoUsbTrash(settings.value("NoUsbTrash", false).toBool());
|
||||
confirmTrash_ = settings.value("ConfirmTrash", false).toBool();
|
||||
setQuickExec(settings.value("QuickExec", false).toBool());
|
||||
// bool thumbnailLocal_;
|
||||
// bool thumbnailMax;
|
||||
settings.endGroup();
|
||||
@ -199,6 +209,11 @@ bool Settings::loadFile(QString filePath) {
|
||||
showHidden_ = settings.value("ShowHidden", false).toBool();
|
||||
sortOrder_ = sortOrderFromString(settings.value("SortOrder").toString());
|
||||
sortColumn_ = sortColumnFromString(settings.value("SortColumn").toString());
|
||||
sortFolderFirst_ = settings.value("SortFolderFirst", true).toBool();
|
||||
|
||||
setBackupAsHidden(settings.value("BackupAsHidden", false).toBool());
|
||||
showFullNames_ = settings.value("ShowFullNames", false).toBool();
|
||||
shadowHidden_ = settings.value("ShadowHidden", false).toBool();
|
||||
|
||||
// override config in libfm's FmConfig
|
||||
bigIconSize_ = settings.value("BigIconSize", 48).toInt();
|
||||
@ -232,16 +247,23 @@ bool Settings::saveFile(QString filePath) {
|
||||
settings.setValue("Terminal", terminal_);
|
||||
settings.setValue("Archiver", archiver_);
|
||||
settings.setValue("SIUnit", siUnit_);
|
||||
|
||||
settings.setValue("OnlyUserTemplates", onlyUserTemplates_);
|
||||
settings.setValue("OemplateTypeOnce", templateTypeOnce_);
|
||||
settings.setValue("TemplateRunApp", templateRunApp_);
|
||||
|
||||
settings.endGroup();
|
||||
|
||||
settings.beginGroup("Behavior");
|
||||
// settings.setValue("BookmarkOpenMethod", bookmarkOpenMethodToString(bookmarkOpenMethod_));
|
||||
settings.setValue("BookmarkOpenMethod", bookmarkOpenMethodToString(bookmarkOpenMethod_));
|
||||
// settings for use with libfm
|
||||
settings.setValue("UseTrash", useTrash_);
|
||||
settings.setValue("SingleClick", singleClick_);
|
||||
settings.setValue("AutoSelectionDelay", autoSelectionDelay_);
|
||||
settings.setValue("ConfirmDelete", confirmDelete_);
|
||||
settings.setValue("NoUsbTrash", noUsbTrash_);
|
||||
settings.setValue("ConfirmTrash", confirmTrash_);
|
||||
settings.setValue("QuickExec", quickExec_);
|
||||
// bool thumbnailLocal_;
|
||||
// bool thumbnailMax;
|
||||
settings.endGroup();
|
||||
@ -277,6 +299,11 @@ bool Settings::saveFile(QString filePath) {
|
||||
settings.setValue("ShowHidden", showHidden_);
|
||||
settings.setValue("SortOrder", sortOrderToString(sortOrder_));
|
||||
settings.setValue("SortColumn", sortColumnToString(sortColumn_));
|
||||
settings.setValue("SortFolderFirst", sortFolderFirst_);
|
||||
|
||||
settings.setValue("BackupAsHidden", backupAsHidden_);
|
||||
settings.setValue("ShowFullNames", showFullNames_);
|
||||
settings.setValue("ShadowHidden", shadowHidden_);
|
||||
|
||||
// override config in libfm's FmConfig
|
||||
settings.setValue("BigIconSize", bigIconSize_);
|
||||
@ -295,17 +322,35 @@ bool Settings::saveFile(QString filePath) {
|
||||
settings.setValue("AlwaysShowTabs", alwaysShowTabs_);
|
||||
settings.setValue("ShowTabClose", showTabClose_);
|
||||
settings.setValue("SplitterPos", splitterPos_);
|
||||
// settings.setValue("SidePaneMode", sidePaneModeToString(sidePaneMode_));
|
||||
settings.setValue("SidePaneMode", sidePaneModeToString(sidePaneMode_));
|
||||
settings.endGroup();
|
||||
return true;
|
||||
}
|
||||
|
||||
static const char* bookmarkOpenMethodToString(int value) {
|
||||
static const char* bookmarkOpenMethodToString(OpenDirTargetType value) {
|
||||
switch(value) {
|
||||
case OpenInCurrentTab:
|
||||
default:
|
||||
return "current_tab";
|
||||
case OpenInNewTab:
|
||||
return "new_tab";
|
||||
case OpenInNewWindow:
|
||||
return "new_window";
|
||||
case OpenInLastActiveWindow:
|
||||
return "last_window";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
static int bookmarkOpenMethodFromString(const QString str) {
|
||||
return 0;
|
||||
static OpenDirTargetType bookmarkOpenMethodFromString(const QString str) {
|
||||
|
||||
if(str == QStringLiteral("new_tab"))
|
||||
return OpenInNewTab;
|
||||
else if(str == QStringLiteral("new_window"))
|
||||
return OpenInNewWindow;
|
||||
else if(str == QStringLiteral("last_window"))
|
||||
return OpenInLastActiveWindow;
|
||||
return OpenInCurrentTab;
|
||||
}
|
||||
|
||||
static const char* viewModeToString(Fm::FolderView::ViewMode value) {
|
||||
@ -429,12 +474,32 @@ static int wallpaperModeFromString(const QString str) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const char* sidePaneModeToString(int value) {
|
||||
return NULL;
|
||||
static const char* sidePaneModeToString(Fm::SidePane::Mode value) {
|
||||
const char* ret;
|
||||
switch(value) {
|
||||
case Fm::SidePane::ModePlaces:
|
||||
default:
|
||||
ret = "places";
|
||||
break;
|
||||
case Fm::SidePane::ModeDirTree:
|
||||
ret = "dirtree";
|
||||
break;
|
||||
case Fm::SidePane::ModeNone:
|
||||
ret = "none";
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int sidePaneModeFromString(const QString str) {
|
||||
return 0;
|
||||
static Fm::SidePane::Mode sidePaneModeFromString(const QString& str) {
|
||||
Fm::SidePane::Mode ret;
|
||||
if(str == "none")
|
||||
ret = Fm::SidePane::ModeNone;
|
||||
else if(str == "dirtree")
|
||||
ret = Fm::SidePane::ModeDirTree;
|
||||
else
|
||||
ret = Fm::SidePane::ModePlaces;
|
||||
return ret;
|
||||
}
|
||||
|
||||
void Settings::setTerminal(QString terminalCommand) {
|
||||
|
@ -26,10 +26,18 @@
|
||||
#include "folderview.h"
|
||||
#include "foldermodel.h"
|
||||
#include "desktopwindow.h"
|
||||
#include "sidepane.h"
|
||||
#include "thumbnailloader.h"
|
||||
|
||||
namespace PCManFM {
|
||||
|
||||
enum OpenDirTargetType {
|
||||
OpenInCurrentTab,
|
||||
OpenInNewTab,
|
||||
OpenInNewWindow,
|
||||
OpenInLastActiveWindow
|
||||
};
|
||||
|
||||
class Settings : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
@ -65,11 +73,11 @@ public:
|
||||
fallbackIconThemeName_ = iconThemeName;
|
||||
}
|
||||
|
||||
int bookmarkOpenMethod() {
|
||||
OpenDirTargetType bookmarkOpenMethod() {
|
||||
return bookmarkOpenMethod_;
|
||||
}
|
||||
|
||||
void setBookmarkOpenMethod(int bookmarkOpenMethod) {
|
||||
void setBookmarkOpenMethod(OpenDirTargetType bookmarkOpenMethod) {
|
||||
bookmarkOpenMethod_ = bookmarkOpenMethod;
|
||||
}
|
||||
|
||||
@ -290,11 +298,11 @@ public:
|
||||
splitterPos_ = splitterPos;
|
||||
}
|
||||
|
||||
int sidePaneMode() const {
|
||||
Fm::SidePane::Mode sidePaneMode() const {
|
||||
return sidePaneMode_;
|
||||
}
|
||||
|
||||
void setSidePaneMode(int sidePaneMode) {
|
||||
void setSidePaneMode(Fm::SidePane::Mode sidePaneMode) {
|
||||
sidePaneMode_ = sidePaneMode;
|
||||
}
|
||||
|
||||
@ -330,6 +338,14 @@ public:
|
||||
sortColumn_ = sortColumn;
|
||||
}
|
||||
|
||||
bool sortFolderFirst() const {
|
||||
return sortFolderFirst_;
|
||||
}
|
||||
|
||||
void setSortFolderFirst(bool folderFirst) {
|
||||
sortFolderFirst_ = folderFirst;
|
||||
}
|
||||
|
||||
// settings for use with libfm
|
||||
bool singleClick() const {
|
||||
return singleClick_;
|
||||
@ -371,6 +387,24 @@ public:
|
||||
|
||||
void setNoUsbTrash(bool noUsbTrash) {
|
||||
noUsbTrash_ = noUsbTrash;
|
||||
fm_config->no_usb_trash = noUsbTrash_; // also set this to libfm since FmFileOpsJob reads this config value before trashing files.
|
||||
}
|
||||
|
||||
bool confirmTrash() const {
|
||||
return confirmTrash_;
|
||||
}
|
||||
|
||||
void setConfirmTrash(bool value) {
|
||||
confirmTrash_ = value;
|
||||
}
|
||||
|
||||
bool quickExec() const {
|
||||
return quickExec_;
|
||||
}
|
||||
|
||||
void setQuickExec(bool value) {
|
||||
quickExec_ = value;
|
||||
fm_config->quick_exec = quickExec_;
|
||||
}
|
||||
|
||||
// bool thumbnailLocal_;
|
||||
@ -442,6 +476,58 @@ public:
|
||||
fm_config->si_unit = (gboolean)siUnit_;
|
||||
}
|
||||
|
||||
bool backupAsHidden() const {
|
||||
return backupAsHidden_;
|
||||
}
|
||||
|
||||
void setBackupAsHidden(bool value) {
|
||||
backupAsHidden_ = value;
|
||||
fm_config->backup_as_hidden = backupAsHidden_; // also set this to libfm since fm_file_info_is_hidden() reads this value internally.
|
||||
}
|
||||
|
||||
bool showFullNames() const {
|
||||
return showFullNames_;
|
||||
}
|
||||
|
||||
void setShowFullNames(bool value) {
|
||||
showFullNames_ = value;
|
||||
}
|
||||
|
||||
bool shadowHidden() const {
|
||||
return shadowHidden_;
|
||||
}
|
||||
|
||||
void setShadowHidden(bool value) {
|
||||
shadowHidden_ = value;
|
||||
}
|
||||
|
||||
bool onlyUserTemplates() const {
|
||||
return onlyUserTemplates_;
|
||||
}
|
||||
|
||||
void setOnlyUserTemplates(bool value) {
|
||||
onlyUserTemplates_ = value;
|
||||
fm_config->only_user_templates = onlyUserTemplates_;
|
||||
}
|
||||
|
||||
bool templateTypeOnce() const {
|
||||
return templateTypeOnce_;
|
||||
}
|
||||
|
||||
void setTemplateTypeOnce(bool value) {
|
||||
templateTypeOnce_ = value;
|
||||
fm_config->template_type_once = templateTypeOnce_;
|
||||
}
|
||||
|
||||
bool templateRunApp() const {
|
||||
return templateRunApp_;
|
||||
}
|
||||
|
||||
void setTemplateRunApp(bool value) {
|
||||
templateRunApp_ = value;
|
||||
fm_config->template_run_app = templateRunApp_;
|
||||
}
|
||||
|
||||
private:
|
||||
QString profileName_;
|
||||
bool supportTrash_;
|
||||
@ -450,7 +536,7 @@ private:
|
||||
QString fallbackIconThemeName_;
|
||||
bool useFallbackIconTheme_;
|
||||
|
||||
int bookmarkOpenMethod_;
|
||||
OpenDirTargetType bookmarkOpenMethod_;
|
||||
QString suCommand_;
|
||||
QString terminal_;
|
||||
bool mountOnStartup_;
|
||||
@ -479,12 +565,13 @@ private:
|
||||
int lastWindowHeight_;
|
||||
bool lastWindowMaximized_;
|
||||
int splitterPos_;
|
||||
int sidePaneMode_;
|
||||
Fm::SidePane::Mode sidePaneMode_;
|
||||
|
||||
Fm::FolderView::ViewMode viewMode_;
|
||||
bool showHidden_;
|
||||
Qt::SortOrder sortOrder_;
|
||||
Fm::FolderModel::ColumnId sortColumn_;
|
||||
bool sortFolderFirst_;
|
||||
|
||||
// settings for use with libfm
|
||||
bool singleClick_;
|
||||
@ -492,16 +579,25 @@ private:
|
||||
bool useTrash_;
|
||||
bool confirmDelete_;
|
||||
bool noUsbTrash_; // do not trash files on usb removable devices
|
||||
bool confirmTrash_; // Confirm before moving files into "trash can"
|
||||
bool quickExec_; // Don't ask options on launch executable file
|
||||
|
||||
bool showThumbnails_;
|
||||
|
||||
QString archiver_;
|
||||
bool siUnit_;
|
||||
bool backupAsHidden_;
|
||||
bool showFullNames_;
|
||||
bool shadowHidden_;
|
||||
|
||||
int bigIconSize_;
|
||||
int smallIconSize_;
|
||||
int sidePaneIconSize_;
|
||||
int thumbnailIconSize_;
|
||||
|
||||
bool onlyUserTemplates_;
|
||||
bool templateTypeOnce_;
|
||||
bool templateRunApp_;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -328,7 +328,10 @@ void TabPage::chdir(FmPath* newPath, bool addHistory) {
|
||||
|
||||
folderModel_ = CachedFolderModel::modelFromFolder(folder_);
|
||||
proxyModel_->setSourceModel(folderModel_);
|
||||
proxyModel_->sort(Fm::FolderModel::ColumnFileName);
|
||||
proxyModel_->sort(proxyModel_->sortColumn(), proxyModel_->sortOrder());
|
||||
Settings& settings = static_cast<Application*>(qApp)->settings();
|
||||
proxyModel_->setFolderFirst(settings.sortFolderFirst());
|
||||
proxyModel_->sort(settings.sortColumn(), settings.sortOrder());
|
||||
|
||||
if(fm_folder_is_loaded(folder_)) {
|
||||
onFolderStartLoading(folder_, this);
|
||||
@ -340,7 +343,6 @@ void TabPage::chdir(FmPath* newPath, bool addHistory) {
|
||||
|
||||
if(addHistory) {
|
||||
// add current path to browse history
|
||||
QAbstractItemView* childView = folderView_->childView();
|
||||
history_.add(path());
|
||||
}
|
||||
}
|
||||
@ -381,15 +383,13 @@ void TabPage::onSelChanged(int numSel) {
|
||||
fm_file_info_list_unref(files);
|
||||
}
|
||||
else {
|
||||
FmFileInfoList* files;
|
||||
goffset sum;
|
||||
GList* l;
|
||||
char size_str[128];
|
||||
msg = tr("%1 item(s) selected", NULL, numSel).arg(numSel);
|
||||
/* don't count if too many files are selected, that isn't lightweight */
|
||||
if(numSel < 1000) {
|
||||
sum = 0;
|
||||
files = folderView_->selectedFiles();
|
||||
FmFileInfoList* files = folderView_->selectedFiles();
|
||||
for(l = fm_file_info_list_peek_head_link(files); l; l = l->next) {
|
||||
if(fm_file_info_is_dir(FM_FILE_INFO(l->data))) {
|
||||
/* if we got a directory then we cannot tell it's size
|
||||
@ -400,6 +400,7 @@ void TabPage::onSelChanged(int numSel) {
|
||||
sum += fm_file_info_get_size(FM_FILE_INFO(l->data));
|
||||
}
|
||||
if(sum >= 0) {
|
||||
char size_str[128];
|
||||
fm_file_size_to_str(size_str, sizeof(size_str), sum,
|
||||
fm_config->si_unit);
|
||||
msg += QString(" (%1)").arg(QString::fromUtf8(size_str));
|
||||
|
4
pcmanfm/translations/pcmanfm-qt-desktop-pref_de.desktop
Normal file
4
pcmanfm/translations/pcmanfm-qt-desktop-pref_de.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[de]=Schreibtisch
|
||||
GenericName[de]=Schreibtischeinstellungen
|
||||
Comment[de]=Einstellungen wie Hintergrundbild oder verwendete Menüs
|
4
pcmanfm/translations/pcmanfm-qt-desktop-pref_hu.desktop
Normal file
4
pcmanfm/translations/pcmanfm-qt-desktop-pref_hu.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[hu]=Asztal
|
||||
GenericName[hu]=Asztalbeállítás
|
||||
Comment[hu]=Asztal kinézet és viselkedés beállítása
|
4
pcmanfm/translations/pcmanfm-qt-desktop-pref_pl.desktop
Normal file
4
pcmanfm/translations/pcmanfm-qt-desktop-pref_pl.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[pl]=Pulpit
|
||||
GenericName[pl]=Ustawienia pulpitu
|
||||
Comment[pl]=Zmiana tapety oraz zachowania pulpitu
|
File diff suppressed because it is too large
Load Diff
@ -193,397 +193,422 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -704,32 +729,32 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -737,12 +762,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -750,28 +775,28 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -779,22 +804,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -862,218 +887,218 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -193,397 +193,422 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation type="unfinished">Správce souborů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation type="unfinished">Nahoru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation type="unfinished">Alt+Nahoru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation type="unfinished">Domů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation type="unfinished">Alt+Home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation type="unfinished">Obnovit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation type="unfinished">F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation type="unfinished">&Obnovit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation type="unfinished">Jdi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation type="unfinished">ukončit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished">&O programu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation type="unfinished">Nové okno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation type="unfinished">Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation type="unfinished">Zobrazit &skryté</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation type="unfinished">Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation type="unfinished">Počítač</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation type="unfinished">&Koš</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation type="unfinished">Síť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation type="unfinished">Plocha</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation type="unfinished">Přidat k záložkám</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation type="unfinished">Programy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation type="unfinished">Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation type="unfinished">Kopírovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation type="unfinished">Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation type="unfinished">Vložit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation type="unfinished">Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation type="unfinished">Vybrat všechno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation type="unfinished">&Nastavení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation type="unfinished">Invertovat výběr</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished">Smazat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation type="unfinished">Přejmenovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation type="unfinished">Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation type="unfinished">Nahoru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation type="unfinished">Nové &okno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation type="unfinished">Pohled s ikonami</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation type="unfinished">Kompaktní pohled</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation type="unfinished">Seznam s podrobnostmi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation type="unfinished">Pohled s náhledy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation type="unfinished">Vyjmout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation type="unfinished">Vzestupně</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation type="unfinished">Sestupně</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation type="unfinished">Podle jména</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation type="unfinished">Podle času</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation type="unfinished">Podle typu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation type="unfinished">Podle vlastníka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation type="unfinished">Složky jako první</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation type="unfinished">Nový &panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation type="unfinished">Nový panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation type="unfinished">Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation type="unfinished">Zpět</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation type="unfinished">Zpět</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation type="unfinished">Alt+Vlevo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation type="unfinished">&Vpřed</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation type="unfinished">Vpřed</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation type="unfinished">Alt+Vpravo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation type="unfinished">F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation type="unfinished">Zavřít panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation type="unfinished">Vlastnosti souboru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation type="unfinished">Vlastnosti složky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation type="unfinished">Řadit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation type="unfinished">Hlavní panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation type="unfinished">Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation type="unfinished">Alt+Return</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation type="unfinished">Rozlišovat velikost písmen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation type="unfinished">Podle velikosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation type="unfinished">Zavřít okno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation type="unfinished">Upravit záložky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation type="unfinished">Otevřít &terminál</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation type="unfinished">F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation type="unfinished">Otevřít jako &Root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation type="unfinished">Upravit záložky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation type="unfinished">&Soubor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished">&Nápověda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished">&Zobrazení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation type="unfinished">Úpr&avy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation type="unfinished">Zál&ožky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation type="unfinished">&Jdi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation type="unfinished">Nás&troje</translation>
|
||||
</message>
|
||||
@ -704,32 +729,32 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -737,12 +762,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -750,28 +775,28 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation type="unfinished">Smazat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -779,22 +804,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -856,218 +881,218 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation type="unfinished">Uživatelské rozhraní</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation type="unfinished">Chování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation type="unfinished">Náhled</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished">Pokročilé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation type="unfinished">Velikost velkých ikon:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation type="unfinished">Velikost malých ikon:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation type="unfinished">Velikost náhledů:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation type="unfinished">Velikost ikon v postranním panelu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation type="unfinished">Zobrazovat náhledy souborů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation type="unfinished">Zobrazovat náhlet jen u lokálních souborů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation type="unfinished">Negenerovat náhledy obrázků přesahujících tuto velikost:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
4
pcmanfm/translations/pcmanfm-qt_de.desktop
Normal file
4
pcmanfm/translations/pcmanfm-qt_de.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[de]=PCManFM-Qt
|
||||
GenericName[de]=Dateimanager
|
||||
Comment[de]=Dateimanager der Desktop-Umgebung LXQt
|
@ -104,7 +104,7 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="276"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Arbeitsplatzeinstellungen</translation>
|
||||
<translation>Schreibtischeinstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="277"/>
|
||||
@ -176,7 +176,7 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="299"/>
|
||||
<source>Show menus provided by window managers when desktop is clicked</source>
|
||||
<translation>Beim Klicken auf den Arbeitsplatz die Menüs des Fenstermanagers anzeigen</translation>
|
||||
<translation>Beim Klicken auf den Schreibtisch die Menüs des Fenstermanagers anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="300"/>
|
||||
@ -202,397 +202,422 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>Dateimanager</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>Go Up</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Up</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>Home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>Ordner neu laden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>Ordner neu &laden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>Gehe zu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>Fenster schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>&Über</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>Neues Fenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>&Versteckte anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>&Geräte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>&Papierkorb</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>&Netzwerk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>Arbeits&fläche</translation>
|
||||
<translation>Schreib&tisch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>Zu Favoriten &hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>&Anwendungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>E&infügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>&Alles markieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>&Einstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>Auswahl &umkehren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>Um&benennen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>&Übergeordneter Ordner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>Neues &Fenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>&Symbolansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>&Listenansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>&Detailansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>&Miniaturansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>&Ausschneiden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>Aufsteigend</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>Absteigend</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>Nach Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>Nach Änderungsdatum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>Nach Dateityp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>Nach Besitzer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>Ordner zuerst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>Neuer &Reiter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>Neuer Reiter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>&Zurück</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>Zurück</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Left</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>&Vorwärts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>Vorwärts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Right</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Del</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>Reiter &schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>&Dateieigenschaften</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>&Eigenschaften des aktuellen Ordners</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>S&ortierung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>Hauptwerkzeugleiste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Return</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>Groß-/Kleinschreibung beachten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>Nach Dateigröße</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>Fenster schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>Favoriten bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>&Terminal öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>Als &Root öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>&Favoriten bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>&Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>&Hilfe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>&Ansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>&Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>&Favoriten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>&Gehe zu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>&Werkzeuge</translation>
|
||||
</message>
|
||||
@ -713,32 +738,32 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>Nur mit Hintergrundfarbe füllen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>Gefüllt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>Gestreckt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>Zentriert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>Nebeneinander</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>Bilddateien</translation>
|
||||
</message>
|
||||
@ -746,41 +771,41 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>Symbole &fixieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Arbeitsplatzeinstellungen</translation>
|
||||
<translation>Schreibtischeinstellungen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Version: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>In den &Papierkorb verschieben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>Befehl, um den Benutzer zu wechseln, ist nicht eingestellt.</translation>
|
||||
</message>
|
||||
@ -788,22 +813,22 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>Symbolansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>Kleine Symbolansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>Miniaturansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>Detaillierte Listenansicht</translation>
|
||||
</message>
|
||||
@ -863,219 +888,235 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Prog
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Einstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>Benutzeroberfläche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>Verhalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>Vorschaubild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>Datenträger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Erweitert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>Symbole</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>Größe für große Symbole:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>Größe für kleine Symbole:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>Größe von Vorschaubildern:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>Größe der Symbole in der Seitenleiste:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Symbolthema:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>Fenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>Breite für neue Fenster:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>Höhe für neue Fenster:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>Reiterleiste immer anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>'Schließen'-Knopf an Reitern zeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation>Größe des zuletzt geschlossenen Fensters merken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>Durchstöbern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>Einfacher Klick zum Öffnen von Dateien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation>Wartezeit für die automatische Auswahl im Einzelklickmodus (0 zum Abschalten)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>Standardansicht:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation> sec</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>Dateioperationen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>Löschen von Dateien bestätigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>Gelöschte Dateien in den "Papierkorb" verschieben anstatt sie von der Festplatte zu löschen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>Vorschaubilder von Dateien anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>Vorschaubilder nur für lokale Dateien anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>Keine Vorschaubilder erzeugen für Dateien größer als:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation>KB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>Automatisches Einbinden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>Datenträger bei Programmstart automatisch einhängen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>Wechseldatenträger automatisch beim Einlegen einbinden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>Verfügbare Optionen für Wechseldatenträger beim Einlegen anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation>Wenn Wechseldatenträger ausgeworfen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<translation>Schließe Tab mit Wechseldatenträger</translation>
|
||||
<translation type="vanished">Schließe Tab mit Wechseldatenträger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<translation>Ändere Ordner im Tab zum Persönlichen Ordner</translation>
|
||||
<translation type="vanished">Ändere Ordner im Tab zum Persönlichen Ordner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>Programme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>Terminalemulator:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>Befehl für Benutzerwechsel:</translation>
|
||||
<translation type="vanished">Befehl für Benutzerwechsel:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>Archivmanagerintegration:</translation>
|
||||
<translation type="vanished">Archivmanagerintegration:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>SI-Dezimalpräfixe anstatt IEC-Binärpräfixe verwenden</translation>
|
||||
</message>
|
||||
|
@ -322,397 +322,422 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>Administrador de archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>&Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>Ay&uda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>&Ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>&Ordenar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>&Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>&Marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>&Ir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>&Herramientas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>Barra de Herramientas Principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>S&ubir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>Subir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Arriba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>Carpeta personal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Inicio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>&Recargar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>Ir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>Salir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>&Acerca de</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>&Nueva ventana</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>Nueva ventana</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>Mo&strar ocultos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>&Sistema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>&Papelera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>&Red</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>&Escritorio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>&Agregar a marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>&Aplicaciones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>Recargar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>V&ista de Íconos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>Vista &Compacta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>Lista &Detallada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>Vista de &Miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>Cor&tar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Copiar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>&Pegar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Seleccion&ar Todo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>Pr&eferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>Ascendente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>Descendente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>Por Nombre de Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>Por Fecha de Modificación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>Por Tipo de Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>Por Dueño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>Carpetas Primero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>Nueva &Pestaña</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>Nueva Pestaña</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>Re&troceder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>Retroceder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Izquierda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>A&vanzar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>Avanzar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Derecha</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>&Invertir Selección</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Supr</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>Cambia&r Nombre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>&Cerrar Pestaña</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>Propiedades de &Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Enter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>&Propiedades de &Carpeta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>Coincidir Mayúsculas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>Por Tamaño de Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>Cerrar Ventana</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>Editar Marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>Abrir &terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>Abrir como &root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>&Editar Marcadores</translation>
|
||||
</message>
|
||||
@ -833,32 +858,32 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>Llenar solamente con el color de fondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>Estirar para llenar la pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>Estirar para ajustar a la pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>Centrar en la pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>Repetir la imagen hasta llenar la pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>Archivos de Imagen</translation>
|
||||
</message>
|
||||
@ -866,12 +891,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>&Pegar en la posición actual</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Preferencias de Escritorio</translation>
|
||||
</message>
|
||||
@ -879,28 +904,28 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versión: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>&Mover a la Papelera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>El comando para cambiar de usuario no está definido.</translation>
|
||||
</message>
|
||||
@ -908,22 +933,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>Vista de Íconos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>Vista Compacta de Íconos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>Vista de Miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>Lista Detallada</translation>
|
||||
</message>
|
||||
@ -983,219 +1008,235 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>Interfaz de Usuario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>Comportamiento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>Miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>Volumen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Avanzado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>Íconos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>Tamaño de íconos grandes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>Tamaño de íconos pequeños:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>Tamaño de miniaturas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>Tamaño de íconos del panel lateral:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Tema de íconos:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>Ventana</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>Mostrar siempre la barra de pestañas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>Mostrar botones de cerrar en las pestañas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation>Recordar el tamaño de la última ventana cerrada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>Ancho para nuevas ventanas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>Altura para nuevas ventanas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>Navegación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>Abrir archivos con un solo click</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation>Demora de selección automática en modo de un click (0 para deshabilitar)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>Modo de visualización por defecto:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation>seg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>Operaciones de Archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>Confirmar antes de borrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>Mover archivos a la papelera en lugar de eliminarlos del disco.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>Mostrar miniaturas de archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>Solo mostrar miniaturas para archivos locales</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>No generar miniaturas para archivos de imágenes mayores a:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation>KB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>Montar Automáticamente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>Montar discos removibles automáticamente al inicio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>Montar discos removibles automáticamente cuando se insertan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>Mostrar opciones disponibles para los discos removibles al insertarlos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation>Cuando se desconecta un disco removible:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<translation>Cerrar la pestaña que contiene al disco removible</translation>
|
||||
<translation type="vanished">Cerrar la pestaña que contiene al disco removible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<translation>Cambiar el directorio en la pestaña a la carpeta personal</translation>
|
||||
<translation type="vanished">Cambiar el directorio en la pestaña a la carpeta personal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>Programas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>Emulador de terminal:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>Comando para cambiar de usuario:</translation>
|
||||
<translation type="vanished">Comando para cambiar de usuario:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>Integración con programas de archivo:</translation>
|
||||
<translation type="vanished">Integración con programas de archivo:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>Usar prefijos decimales SI en lugar de prefijos binarios IEC</translation>
|
||||
</message>
|
||||
|
@ -260,397 +260,422 @@ Fifth Floor, Boston, MA 02110-1301, USA.</translation>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>Gestionnaire de fichiers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>Monter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Haut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>Page d'accueil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Début / Origine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>Recharger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>&Recharger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>Aller à…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>Quitter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>&À propos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>Nouvelle fenêtre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>Afficher les éléments cac&hés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>&Ordinateur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>&Corbeille</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>&Réseau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>&Bureau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>&Ajouter aux signets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>&Applications</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Copier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>&Coller</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Tout sélect&ionner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>Préfér&ences</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>&Inverser la sélection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>&Renommer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>Mon&ter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>&Nouvelle fenêtre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>Vue en &icônes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>Vue &compacte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>Liste &détaillée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>Vue en vigne&ttes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>Cou&per</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>Ascendant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>Descendant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>Par nom de fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>Par date de modification</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>Par type de fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>Par propriétaire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>Dossier en premier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>Nouvel ongle&t</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>Nouvel onglet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>Re&culer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>Reculer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Gauche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>Ava&ncer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>Avancer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Droite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Suppr</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>Fermer &l'onglet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>&Propriétés du fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>Propriétés du &dossier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>Tri en cour&s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>Barre d'outils principale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Entrée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>Sensible à la casse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>Par taille de fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>Fermer la fenêtre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>Modifier les signets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>Ouvrir le &terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>Ouvrir en tant que &root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>Modifi&er les signets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>&Fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>&Aide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>&Édition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>&Signets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>A&ller à…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>Ou&tils</translation>
|
||||
</message>
|
||||
@ -771,32 +796,32 @@ Fifth Floor, Boston, MA 02110-1301, USA.</translation>
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>Remplir seulement avec la couleur d'arrière-plan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>Étirer pour remplir l'écran entier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>Étirer pour remplir l'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>Centrer sur l’écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>Faire une mosaïque avec l'image pour remplir l'écran entier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>Fichiers image</translation>
|
||||
</message>
|
||||
@ -804,12 +829,12 @@ Fifth Floor, Boston, MA 02110-1301, USA.</translation>
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>Res&ter à la position actuelle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Préférences du bureau</translation>
|
||||
</message>
|
||||
@ -817,28 +842,28 @@ Fifth Floor, Boston, MA 02110-1301, USA.</translation>
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>&Mettre à la corbeille</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>Erreur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>La commande de changement d’utilisateur n'est pas configurée.</translation>
|
||||
</message>
|
||||
@ -846,22 +871,22 @@ Fifth Floor, Boston, MA 02110-1301, USA.</translation>
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>Vue en icônes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>Vue en icônes compacte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>Vue en vignettes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>Vue en liste détaillée</translation>
|
||||
</message>
|
||||
@ -921,219 +946,227 @@ Fifth Floor, Boston, MA 02110-1301, USA.</translation>
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Préférences</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>Interface utilisateur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>Comportement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>Vignette</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Avancé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>Icônes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>Taille des grandes icônes :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>Taille des petites icônes :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>Taille des vignettes :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>Taille des icônes de panneau latéral :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Thème d'icônes : </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>Fenêtre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>Largeur par défaut des nouvelles fenêtres :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>Hauteur par défaut des nouvelles fenêtres :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>Toujours afficher la barre des onglets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>Afficher le bouton « Fermer » sur les onglets </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>Navigation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>Ouvrir les fichiers avec un simple clic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>Mode de vue par défaut :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>Opérations sur les fichiers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>Confirmer avant de supprimer les fichiers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>Mettre les fichiers supprimés à la corbeille eu lieu de les effacer du disque.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>Montrer les vignettes des fichiers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>Montrer les vignettes seulement pour les fichiers locaux</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>Ne pas générer de vignettes pour les fichiers image excédant cette taille :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation> Ko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>Monter automatiquement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>Monter automatiquement les volumes au démarrage du programme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>Monter automatiquement les médias amovibles lorsqu'ils sont insérés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>Montrer les options disponibles pour les médias amovibles lorsqu'ils sont insérés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>Programmes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>Émulateur de terminal :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>Commande de changement d'utilisateur :</translation>
|
||||
<translation type="vanished">Commande de changement d'utilisateur :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>Intégration du logiciel de compression de données :</translation>
|
||||
<translation type="vanished">Intégration du logiciel de compression de données :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>Utiliser les préfixes de décimales du système international d'unités au lieu des préfixes binaires de l'IEC</translation>
|
||||
</message>
|
||||
|
@ -252,397 +252,422 @@ con este programa; se non é así, escriba á Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>Xestor de ficheiros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>Subir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Frecha arriba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>Inicio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Inicio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>Cargar de novo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>&Cargar de novo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>Ir para</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>Saír</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>&Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>Nova xanela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>Amosar a&gochados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>&Computador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>&Lixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>&Rede</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>&Escritorio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>En&gadir aos marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>&Aplicacións</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl-X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Copiar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>&Pegar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Seleccionar &todo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>Pre&ferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>&Inverter a selección</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>&Renomear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>S&ubir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>&Nova xanela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>Vista de &iconas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>Vista &compacta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>Vista &detallada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>Vista de &miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>Cor&tar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>Ascendente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>Descendente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>Polo nome do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>Pola data de modificación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>Polo tipo do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>Polo propietario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>Primeiro os cartafoles</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>Nova &lapela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>Nova lapela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>A&trás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>Ir cara atrás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Frecha esquerda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>Adian&te</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>Adiante</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Frecha dereita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Supr</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>&Pechar a lapela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>&Propiedades do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>Propiedades do &cartafol</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>&Ordenación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>Barra de ferramentas principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Intro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>Distinguindo maiúsculas de minúsculas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>Polo tamaño do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>Pechar a xanela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>Editar os marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>Abrir un &terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>Abrir como &root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>&Editar marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>&Ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>&Axuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>&Ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>&Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>&Marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>&Ir para</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>&Ferramenta</translation>
|
||||
</message>
|
||||
@ -763,32 +788,32 @@ con este programa; se non é así, escriba á Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>Encher só coa cor de fondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>Estirar para encher a pantalla completa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>Estirar para adaptar á pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>Centrar na pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>Facer mosaico coa imaxe para encher a pantalla completa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>Ficheiros de imaxe</translation>
|
||||
</message>
|
||||
@ -796,12 +821,12 @@ con este programa; se non é así, escriba á Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>&Permanente na posición actual</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Preferencias do escritorio</translation>
|
||||
</message>
|
||||
@ -809,28 +834,28 @@ con este programa; se non é así, escriba á Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>&Mover ao lixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>Erro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>A orde para cambiar de usuario non está configurada.</translation>
|
||||
</message>
|
||||
@ -838,22 +863,22 @@ con este programa; se non é así, escriba á Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>Vista en Iconas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>Vista compacta en iconas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>Vista de miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>Ver como lista detallada</translation>
|
||||
</message>
|
||||
@ -913,219 +938,227 @@ con este programa; se non é así, escriba á Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>Interface de usuario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>Comportamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>Miniatura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Avanzado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>Iconas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>Tamaño das iconas grandes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>Tamaño das iconas pequenas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>Tamaño das miniaturas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>Tamaño das iconas do panel lateral:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Tema de iconas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>Xanela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>Largo predeterminado para as novas xanelas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>Alto predeterminado para as novas xanelas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>Amosar sempre a barra de lapelas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>Amosar os botóns de «Pechar» nas lapelas </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>Navegando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>Abrir os ficheiros cun só clic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>Modo de vista predeterminado:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>Operacións de ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>Confirmar antes de eliminar os ficheiros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>Mover os ficheiros eliminados ao «cesto do lixo» no canto de borralos do disco.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>Amosar miniaturas dos ficheiros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>Amosar só as miniaturas dos ficheiros locais</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>Non xerar miniaturas dos ficheiros de imaxe se o tamaño excede de:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation> KB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>Montaxe automático</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>Montar os volumes montábeis automaticamente no arrinque do programa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>Montar os dispositivos removíbeis automaticamente ao seren inseridos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>Amosar as opción para os dispositivos removíbeis ao seren inseridos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>Programas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>Emulador de terminal:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>Orde de cambio de usuario:</translation>
|
||||
<translation type="vanished">Orde de cambio de usuario:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>Integración do «Archiver»:</translation>
|
||||
<translation type="vanished">Integración do «Archiver»:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>Utilizar prefixos decimais SI no canto de prefixos binarios IEC </translation>
|
||||
</message>
|
||||
|
4
pcmanfm/translations/pcmanfm-qt_hu.desktop
Normal file
4
pcmanfm/translations/pcmanfm-qt_hu.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[hu]=PCManFM-Qt fájlkezelő
|
||||
GenericName[hu]=Fájlkezelő
|
||||
Comment[hu]=Fájlok böngészése és karbantartása
|
1114
pcmanfm/translations/pcmanfm-qt_hu.ts
Normal file
1114
pcmanfm/translations/pcmanfm-qt_hu.ts
Normal file
File diff suppressed because it is too large
Load Diff
@ -168,27 +168,27 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="298"/>
|
||||
<source>Window Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Gestore finestre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="299"/>
|
||||
<source>Show menus provided by window managers when desktop is clicked</source>
|
||||
<translation>Mostra menu forniti dai gestori finestre quando si fa clic sulla Scrivania</translation>
|
||||
<translation>Mostra il menu forniti dal gestore finestre quando si fa clic sulla scrivania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="300"/>
|
||||
<source>Desktop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Scrivania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="301"/>
|
||||
<source>Desktop folder:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cartella scrivania:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="308"/>
|
||||
<source>Folder path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Percorso</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_desktop-preferences.h" line="310"/>
|
||||
@ -199,397 +199,422 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>Gestore file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>Vai su</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Su</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>Cartella home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Inizio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>Ricarica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>&Ricarica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>Vai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>Esci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>&Informazioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>Nuova finestra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>Mostra &nascosti</translation>
|
||||
<translation>Mostra file &nascosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>&Computer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>Ces&tino</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>&Rete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>&Scrivania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>&Aggiungi ai segnalibri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>&Applicazioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Copia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>&Incolla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>Seleziona t&utto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>Pr&eferenze</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>&Inverti selezione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>&Rinomina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>Vai &su</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>&Nuova finestra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>Vista &icone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>Vista &compatta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>Elenco &dettagliato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>Vista minia&ture</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>&Taglia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>Crescente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>Decrescente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>Per nome file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>Per data modifica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>Per tipo file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>Per proprietario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>Prima le cartelle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>Nuova sc&heda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>Nuova scheda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>Vai in&dietro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>Va indietro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Sinistra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>Vai &avanti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>Va avanti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Destra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Canc</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>C&hiudi scheda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>&Proprietà file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>Proprietà &cartella</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>&Ordinamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>Barra strumenti principale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Invio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>Distingui MAIUSCOLE/minuscole</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>Per dimensione file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>Chiudi finestra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>Modifica segnalibri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>Apri &terminale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>Apri come &root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>&Modifica segnalibri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>&File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>A&iuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>&Visualizza</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>&Modifica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>&Segnalibri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>&Vai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>S&trumenti</translation>
|
||||
</message>
|
||||
@ -680,7 +705,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<message>
|
||||
<location filename="../application.cpp" line="156"/>
|
||||
<source>Files or directories to open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cartelle o file da aprire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../application.cpp" line="402"/>
|
||||
@ -710,32 +735,32 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>Riempi solo con il colore di sfondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>Allarga per riempire tutto lo schermo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>Restringe per adattare allo schermo</translation>
|
||||
<translation>Restringi per adattare allo schermo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>Centra nello schermo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>Ripete l'immagine per riempire tutto lo schermo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>File immagine</translation>
|
||||
</message>
|
||||
@ -743,12 +768,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>Blo&cca alla posizione attuale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Preferenze scrivania</translation>
|
||||
</message>
|
||||
@ -756,28 +781,28 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Versione:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>Cestin&a</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>Errore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>Il comando per cambiare utente non è impostato.</translation>
|
||||
</message>
|
||||
@ -785,22 +810,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>Vista icone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>Vista icone compatta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>Vista miniature</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>Vista elenco dettagliato</translation>
|
||||
</message>
|
||||
@ -821,7 +846,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<location filename="../tabpage.cpp" line="238"/>
|
||||
<source>%n item(s)</source>
|
||||
<translation>
|
||||
<numerusform>%n oggetto</numerusform>
|
||||
<numerusform>%n oggetto/i</numerusform>
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
@ -836,7 +861,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<message>
|
||||
<location filename="../tabpage.cpp" line="388"/>
|
||||
<source>%1 item(s) selected</source>
|
||||
<translation>%1 elemento selezionato</translation>
|
||||
<translation>%1 elementi selezionati</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -860,219 +885,227 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferenze</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>Interfaccia utente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>Comportamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>Miniatura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Avanzate</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>Icone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>Dimensione delle icone grandi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>Dimensione delle icone piccole:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>Dimensione delle miniature:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>Dimensione delle icone del riquadro laterale:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Tema delle icone:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>Finestra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>Larghezza predefinita delle nuove finestre:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>Altezza predefinita delle nuove finestre:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>Mostra sempre la barra delle schede</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>Mostra pulsanti di chiusura sulle schede </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ricorda dimensione della ultima finestra chiusa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>Navigazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>Apri file con un clic singolo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ritardo per l'auto-selezione in modalità click singolo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>Modalità vista predefinita:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>secondi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>Operazioni sui file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>Conferma prima di rimuovere i file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>Sposta nel «Cestino» i file rimossi invece di eliminarli dal disco.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>Mostra miniature dei file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>Mostra miniature solo per i file locali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>Non generare miniature per file immagine più grandi di:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation> KB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>Montaggio automatico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>Monta automaticamente i volumi montabili all'avvio del programma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>Monta automaticamente i volumi rimovibli quando vengono inseriti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>Mostra opzioni disponibili per i volumi rimovibli quando vengono inseriti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Quando viene smontato un volume rimovibile:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation>Chiudi &scheda con il contenuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation>Cambia in cartella &home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation>Comando per cambiare utente:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation>Gestore archivi da usare:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>Programmi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>Emulatore di terminale:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>Comando per cambiare utente:</translation>
|
||||
<translation type="vanished">Comando per cambiare utente:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>Integrazione con gli archivi:</translation>
|
||||
<translation type="vanished">Integrazione con gli archivi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>Usa i prefissi decimali del SI invece di quelli binari dello IEC</translation>
|
||||
</message>
|
||||
|
@ -261,397 +261,422 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>ファイルマネージャー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>上へ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Up</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>ホーム</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>再読込み</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>再読込み(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>終了</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>情報(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>新しいウインドウ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>隠しファイルを表示(&H)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>コンピューター(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>ゴミ箱(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>ネットワーク(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>デスクトップ(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>ブックマークに追加(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>アプリケーション(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>コピー(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>貼り付け(&P)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>すべてを選択(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>設定(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>選択を反転(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>削除(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>名前を変更(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>上へ(&U)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>新しいウインドウ(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>アイコン表示(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>コンパクト表示(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>詳細リスト(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>サムネイル表示(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>切り取り(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>昇順</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>降順</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>名前</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>更新日時</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>種類</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>所有者</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>フォルダを先に</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>新しいタブ(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>新しいタブ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>戻る(&B)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>戻る</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Left</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>進む(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>進む</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Right</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Del</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>タブを閉じる(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>ファイルのプロパティー(&P)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>フォルダーのプロパティー(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>ソート(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>メインツールバー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Return</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>大文字小文字を区別</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>サイズ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>ウインドウを閉じる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>ブックマークを編集</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>端末で開く(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>rootで開く(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>ブックマークを編集</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>ファイル(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>ヘルプ(&H)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>表示(&V)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>編集(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>ブックマーク(&B)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>開く(&G)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>ツール(&T)</translation>
|
||||
</message>
|
||||
@ -772,32 +797,32 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>背景色のみで埋める</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>画面全部に引き伸ばす</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>画面に合わせて調節</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>画面の中央に表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>画面全体に並べる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>画像ファイル</translation>
|
||||
</message>
|
||||
@ -805,12 +830,12 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>現在の場所に固定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>デスクトップ設定</translation>
|
||||
</message>
|
||||
@ -818,28 +843,28 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>バージョン: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>ゴミ箱へ移動(&M)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>削除(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>ユーザー切替コマンドを未設定です</translation>
|
||||
</message>
|
||||
@ -851,22 +876,22 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>アイコン表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>小さなアイコン表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>サムネイル表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>詳細なリスト表示</translation>
|
||||
</message>
|
||||
@ -924,172 +949,180 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>ユーザーインターフェース</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>挙動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>サムネイル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>ボリューム</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>高度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>アイコン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>大きいアイコンの大きさ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>小さいアイコンの大きさ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>サムネイルの大きさ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>サイドペインのアイコンの大きさ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>アイコンテーマ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>ウインドウ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>新しいウインドウのデフォルト幅</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>新しいウインドウのデフォルトの高さ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>タブバーを常に表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>閉じるボタンをタブに表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation>直前に閉じたウインドウのサイズを記憶</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>ブラウジング</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>シングルクリックでファイルを開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation>シングルクリックモードでの自動選択の遅延時間(0で無効)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>デフォルトの表示モード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation> 秒</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>ファイル操作</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>ファイルを削除する前に確認</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>ディスクから削除せずに"ゴミ箱"へ入れる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>ファイルのサムネイルを表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>ローカルファイルのみサムネイル表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>次のサイズを超える画像ファイルのサムネイルを生成しない:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation> KB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation>リムーバブルメディアもアンマウントする際に:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<translation>リムーバブルメディアを表示しているタブを閉じる</translation>
|
||||
<translation type="vanished">リムーバブルメディアを表示しているタブを閉じる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<translation>そのタブのフォルダーをホームフォルダーに移動</translation>
|
||||
<translation type="vanished">そのタブのフォルダーをホームフォルダーに移動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>端末エミュレーター:</translation>
|
||||
</message>
|
||||
@ -1098,27 +1131,37 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<translation type="vanished">次のサイズ(KB)を超えるファイルのサムネイルを生成しない:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>自動マウント</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>プログラム開始時にマウント可能なボリュームをマウントする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>リムーバブルメディアが接続された際に自動的にマウントする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>リムーバブルメディアが接続された際に、可能な処理を表示する</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>プログラム</translation>
|
||||
</message>
|
||||
@ -1127,28 +1170,26 @@ GNU 一般公衆利用許諾契約書の複製物を1部
|
||||
<translation type="vanished">ディレクトリーで実行する端末エミュレーターのコマンド</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>ユーザーを切り替えるためのコマンド</translation>
|
||||
<translation type="vanished">ユーザーを切り替えるためのコマンド</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>例: 端末に "xterm -e %s" 、ユーザー切替に "gksu %s"
|
||||
%s には、端末やsuで実行するコマンドが代入されます</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>アーカイバー連係:</translation>
|
||||
<translation type="vanished">アーカイバー連係:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Terminal emulator command for programs:</source>
|
||||
<translation type="vanished">プログラムを実行する端末エミュレーターのコマンド:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>IEC二進接頭辞の代わりに、SI十進接頭辞を用いる</translation>
|
||||
</message>
|
||||
|
File diff suppressed because it is too large
Load Diff
4
pcmanfm/translations/pcmanfm-qt_pl.desktop
Normal file
4
pcmanfm/translations/pcmanfm-qt_pl.desktop
Normal file
@ -0,0 +1,4 @@
|
||||
#Translations
|
||||
Name[pl]=Menedżer plików PCManFM
|
||||
GenericName[pl]=Menedżer plików
|
||||
Comment[pl]=Przegląd systemu plików i zarządzanie plikami
|
1119
pcmanfm/translations/pcmanfm-qt_pl.ts
Normal file
1119
pcmanfm/translations/pcmanfm-qt_pl.ts
Normal file
File diff suppressed because it is too large
Load Diff
@ -251,398 +251,423 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>Gestor de ficheiros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>Subir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation>Alt+Up</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>Pasta pessoal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation>Alt+Home</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>Recarregar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>&Recarregar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>Ir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>Sair</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>&Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>Nova janela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation>Ctrl+N</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>Mostrar &ocultos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation>Ctrl+H</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>&Computador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>&Lixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>&Rede</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>Área &de trabalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>&Adicionar aos marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>&Aplicações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation>Ctrl+X</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Copiar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation>Ctrl+C</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>Co&lar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation>Ctrl+V</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translatorcomment>Selecion&ar tudo</translatorcomment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>Pr&eferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>&Inverter seleção</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>E&liminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>Muda&r nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation>Ctrl+A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>S&ubir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>&Nova janela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>V&ista de ícones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation>Vista &compacta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>Lista &detalhada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>Vista de minia&turas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>Cor&tar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>Ascendente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>Descendente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>Por nome de ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>Por data de modificação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>Por tipo de ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>Por dono</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>Pastas no início</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>Novo &separador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>Novo separador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>&Recuar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>Recuar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation>Alt+Left</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>&Avançar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>Avançar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation>Alt+Right</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation>Del</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>&Fechar separador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>&Propriedades do ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>Propried&ades da pasta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>&Ordenação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation>Barra principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation>Ctrl+W</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation>Alt+Return</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>Diferenciar maiúsculas/minúsculas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>Por tamanho de ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>Fechar janela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>Editar marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>Abrir &terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>Abrir como &root</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>&Editar marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>&Ficheiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>Aj&uda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>&Ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>&Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>&Marcadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>&Ir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>Ferramen&tas</translation>
|
||||
</message>
|
||||
@ -763,32 +788,32 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>Preencher apenas com a cor de fundo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>Esticar para preencher o ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>Esticar para ajustar ao ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>Centrar no ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>Imagens em mosaico para preencher o ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>Ficheiros de imagem</translation>
|
||||
</message>
|
||||
@ -796,12 +821,12 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation>Fi&xar na posiçao atual</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>Preferências da área de trabalho</translation>
|
||||
</message>
|
||||
@ -809,28 +834,28 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versão: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>&Mover para o lixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>&Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>Erro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>O comando para trocar de utilizador não está definido.</translation>
|
||||
</message>
|
||||
@ -842,22 +867,22 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>Vista de ícones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>Vista compacta de ícones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>Vista de miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>Lista detalhada</translation>
|
||||
</message>
|
||||
@ -917,172 +942,180 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>Preferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>Interface</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>Comportamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>Miniaturas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Avançado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>Ícones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>Tamanho dos ícones grandes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>Tamanho dos ícones pequenos:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>Tamanho das miniaturas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>Tamanho dos ícones no painel lateral:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>Tema de ícones:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>Janela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>Largura para as novas janelas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>Altura para as novas janeas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>Mostrar sempre barra de separadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>Mostrar botão "Fechar" nos separadores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation>Memorizar tamanho da última janela fechada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>Navegação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>Abrir ficheiros com um clique</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation>Atraso para seleçao automática no modo de um clique (0 para desativar)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>Modo de visualização:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation> seg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>Operações de ficheiros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>Confirmar antes de eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>Mover ficheiros para o lixo em vez de os eliminar do disco.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>Mostrar miniaturas dos ficheiros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>Mostrar apenas para ficheiros locais</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation>Não gerar miniaturas para as imagens que excedam este tamanho:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation> KB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation>Ao desmontar um disco amovível:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<translation>Fechar o separador que contém o disco</translation>
|
||||
<translation type="vanished">Fechar o separador que contém o disco</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<translation>Mudar o separador para a pasta pessoal</translation>
|
||||
<translation type="vanished">Mudar o separador para a pasta pessoal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation>Emulador de terminal:</translation>
|
||||
</message>
|
||||
@ -1091,27 +1124,37 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<translation type="obsolete">Não gerar miniaturas para os ficheiros que excedam (KB):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>Montar automaticamente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>Montar discos amovíveis ao iniciar a aplicação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>Montar discos amovíveis ao inserir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>Mostrar opções possíveis para os discos assim que forem inseridos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>Programas</translation>
|
||||
</message>
|
||||
@ -1120,28 +1163,26 @@ Se tal facto não ocorreu, escreva para a Free Software Foundation, Inc.,
|
||||
<translation type="obsolete">Comando do terminal para os diretórios:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>Comando para trocar de utilizador:</translation>
|
||||
<translation type="vanished">Comando para trocar de utilizador:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>Integração de arquivadores:</translation>
|
||||
<translation type="vanished">Integração de arquivadores:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Terminal emulator command for programs:</source>
|
||||
<translation type="obsolete">Comando do terminal para os programas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation>Utilizar prefixos decimais SI em vez dos prefixos binários IEC</translation>
|
||||
</message>
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -193,167 +193,192 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="499"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<source>File Manager</source>
|
||||
<translation>檔案管理程式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="502"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<source>Go Up</source>
|
||||
<translation>往上一層</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="504"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<source>Alt+Up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="505"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<source>Home</source>
|
||||
<translation>家目錄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="506"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<source>Alt+Home</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<source>Reload</source>
|
||||
<translation>重新讀取</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="508"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<source>F5</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="500"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="515"/>
|
||||
<source>Go &Up</source>
|
||||
<translation>上一層(&U)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="507"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<source>&Reload</source>
|
||||
<translation>重新讀取(&)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="509"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<source>Go</source>
|
||||
<translation>到</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="510"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="525"/>
|
||||
<source>Quit</source>
|
||||
<translation>離開</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="511"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<source>&About</source>
|
||||
<translation>關於(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="512"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<source>&New Window</source>
|
||||
<translation>新視窗(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="514"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<source>New Window</source>
|
||||
<translation>新視窗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="516"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<source>Ctrl+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="517"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<source>Show &Hidden</source>
|
||||
<translation>顯示隱藏檔(&H)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="518"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<source>Ctrl+H</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="519"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<source>&Computer</source>
|
||||
<translation>電腦(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="520"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<source>&Trash</source>
|
||||
<translation>垃圾桶(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="521"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<source>&Network</source>
|
||||
<translation>網路(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="522"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<source>&Desktop</source>
|
||||
<translation>桌面(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="523"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<source>&Add to Bookmarks</source>
|
||||
<translation>加入到書籤(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<source>&Applications</source>
|
||||
<translation>應用程式(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="526"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<source>&Icon View</source>
|
||||
<translation>圖示檢視(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="527"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<source>&Compact View</source>
|
||||
<translation type="unfinished">簡易檢視(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="528"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<source>&Detailed List</source>
|
||||
<translation>詳細清單(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<source>&Thumbnail View</source>
|
||||
<translation>縮圖檢視(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="530"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>剪下(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<source>C&lose Tab</source>
|
||||
<translation>關閉(&L)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<source>File &Properties</source>
|
||||
<translation>檔案屬性(&P)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<source>&Folder Properties</source>
|
||||
<translation>資料夾屬性(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="594"/>
|
||||
<source>Folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="595"/>
|
||||
<source>Ctrl+Shift+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="596"/>
|
||||
<source>Blank File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="597"/>
|
||||
<source>Ctrl+Alt+N</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="599"/>
|
||||
<source>C&reate New</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="602"/>
|
||||
<source>&Sorting</source>
|
||||
<translation>排序(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="607"/>
|
||||
<source>Main Toolbar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -378,52 +403,52 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">剪下(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<source>Ctrl+X</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="532"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="547"/>
|
||||
<source>&Copy</source>
|
||||
<translation>複製(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<source>Ctrl+C</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="534"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="549"/>
|
||||
<source>&Paste</source>
|
||||
<translation>貼上(&P)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<source>Ctrl+V</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="536"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<source>Select &All</source>
|
||||
<translation>全選(&A)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="538"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<source>Pr&eferences</source>
|
||||
<translation>偏好設定(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<source>&Invert Selection</source>
|
||||
<translation>反向選取(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<source>&Delete</source>
|
||||
<translation>刪除(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<source>&Rename</source>
|
||||
<translation>重新命名(&R)</translation>
|
||||
</message>
|
||||
@ -432,7 +457,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">全選</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="552"/>
|
||||
<source>Ctrl+A</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@ -441,82 +466,82 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">偏好設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="539"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="554"/>
|
||||
<source>Ascending</source>
|
||||
<translation>升冪排列</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<source>Descending</source>
|
||||
<translation>降冪排列</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<source>By File Name</source>
|
||||
<translation>依照檔名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="557"/>
|
||||
<source>By Modification Time</source>
|
||||
<translation>依照修改時間</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<source>By File Type</source>
|
||||
<translation>依照檔案類型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="559"/>
|
||||
<source>By Owner</source>
|
||||
<translation>依照檔案擁有者</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<source>Folder First</source>
|
||||
<translation>資料夾優先</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="561"/>
|
||||
<source>New &Tab</source>
|
||||
<translation>新分頁(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<source>New Tab</source>
|
||||
<translation>新分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="566"/>
|
||||
<source>Go &Back</source>
|
||||
<translation>後退(&B)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="568"/>
|
||||
<source>Go Back</source>
|
||||
<translation>後退</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="570"/>
|
||||
<source>Alt+Left</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<source>Go &Forward</source>
|
||||
<translation>前進(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<source>Go Forward</source>
|
||||
<translation>前進</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<source>Alt+Right</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -529,7 +554,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">刪除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<source>Del</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -538,7 +563,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">重新命名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<source>F2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -547,7 +572,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">關閉分頁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="582"/>
|
||||
<source>Ctrl+W</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -556,7 +581,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">檔案屬性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="569"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<source>Alt+Return</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -565,57 +590,57 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">資料夾屬性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<source>Case Sensitive</source>
|
||||
<translation>區分大小寫</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="587"/>
|
||||
<source>By File Size</source>
|
||||
<translation>依照檔案大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="573"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="588"/>
|
||||
<source>Close Window</source>
|
||||
<translation>關閉視窗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="589"/>
|
||||
<source>Edit Bookmarks</source>
|
||||
<translation>編輯書籤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="575"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="590"/>
|
||||
<source>Open &Terminal</source>
|
||||
<translation>開啟終端機(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="576"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="591"/>
|
||||
<source>F4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="592"/>
|
||||
<source>Open as &Root</source>
|
||||
<translation>以系統管理員權限開啟(&R)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="578"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="593"/>
|
||||
<source>&Edit Bookmarks</source>
|
||||
<translation>編輯書籤(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="579"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="598"/>
|
||||
<source>&File</source>
|
||||
<translation>檔案(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="580"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="600"/>
|
||||
<source>&Help</source>
|
||||
<translation>說明(&H)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="581"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="601"/>
|
||||
<source>&View</source>
|
||||
<translation>檢視(&V)</translation>
|
||||
</message>
|
||||
@ -624,22 +649,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">排序</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="583"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="603"/>
|
||||
<source>&Edit</source>
|
||||
<translation>編輯(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="584"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="604"/>
|
||||
<source>&Bookmarks</source>
|
||||
<translation>書籤(&B)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="585"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="605"/>
|
||||
<source>&Go</source>
|
||||
<translation>前往(&G)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="586"/>
|
||||
<location filename="../../build/pcmanfm/ui_main-win.h" line="606"/>
|
||||
<source>&Tool</source>
|
||||
<translation>工具(&T)</translation>
|
||||
</message>
|
||||
@ -760,32 +785,32 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopPreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="93"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="46"/>
|
||||
<source>Fill with background color only</source>
|
||||
<translation>只以背景色填滿</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="94"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="47"/>
|
||||
<source>Stretch to fill the entire screen</source>
|
||||
<translation>延展以填滿整個螢幕</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="95"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="48"/>
|
||||
<source>Stretch to fit the screen</source>
|
||||
<translation>延展到最適合螢幕大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="96"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="49"/>
|
||||
<source>Center on the screen</source>
|
||||
<translation>置於螢幕中央</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="97"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="50"/>
|
||||
<source>Tile the image to fill the entire screen</source>
|
||||
<translation>連續拼貼鋪滿整個螢幕</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="176"/>
|
||||
<location filename="../desktoppreferencesdialog.cpp" line="128"/>
|
||||
<source>Image Files</source>
|
||||
<translation>影像檔案</translation>
|
||||
</message>
|
||||
@ -793,12 +818,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::DesktopWindow</name>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="364"/>
|
||||
<location filename="../desktopwindow.cpp" line="366"/>
|
||||
<source>Stic&k to Current Position</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../desktopwindow.cpp" line="386"/>
|
||||
<location filename="../desktopwindow.cpp" line="388"/>
|
||||
<source>Desktop Preferences</source>
|
||||
<translation>桌面偏好設定</translation>
|
||||
</message>
|
||||
@ -806,28 +831,28 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="404"/>
|
||||
<location filename="../mainwindow.cpp" line="426"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Move to Trash</source>
|
||||
<translation>移動到垃圾桶(&M)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="810"/>
|
||||
<location filename="../mainwindow.cpp" line="831"/>
|
||||
<source>&Delete</source>
|
||||
<translation>刪除(&D)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="871"/>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="893"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Error</source>
|
||||
<translation>錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mainwindow.cpp" line="882"/>
|
||||
<location filename="../mainwindow.cpp" line="904"/>
|
||||
<source>Switch user command is not set.</source>
|
||||
<translation>切換使用者指令尚未設定</translation>
|
||||
</message>
|
||||
@ -839,22 +864,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PCManFM::PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<location filename="../preferencesdialog.cpp" line="173"/>
|
||||
<source>Icon View</source>
|
||||
<translation>圖示檢視</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<location filename="../preferencesdialog.cpp" line="174"/>
|
||||
<source>Compact Icon View</source>
|
||||
<translation>簡易檢視</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="177"/>
|
||||
<location filename="../preferencesdialog.cpp" line="175"/>
|
||||
<source>Thumbnail View</source>
|
||||
<translation>縮圖檢視</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../preferencesdialog.cpp" line="178"/>
|
||||
<location filename="../preferencesdialog.cpp" line="176"/>
|
||||
<source>Detailed List View</source>
|
||||
<translation>詳細清單檢視</translation>
|
||||
</message>
|
||||
@ -912,172 +937,172 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<context>
|
||||
<name>PreferencesDialog</name>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="524"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="530"/>
|
||||
<source>Preferences</source>
|
||||
<translation>偏好設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="529"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<source>User Interface</source>
|
||||
<translation>使用者界面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="531"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<source>Behavior</source>
|
||||
<translation>行為</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="533"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="539"/>
|
||||
<source>Thumbnail</source>
|
||||
<translation>縮圖</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="535"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<source>Volume</source>
|
||||
<translation>磁碟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="537"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<source>Advanced</source>
|
||||
<translation>進階</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="540"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<source>Icons</source>
|
||||
<translation>圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="541"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<source>Size of big icons:</source>
|
||||
<translation>大圖示尺寸:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="542"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<source>Size of small icons:</source>
|
||||
<translation>小圖示尺寸:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="543"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<source>Size of thumbnails:</source>
|
||||
<translation>縮圖尺寸:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="544"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<source>Size of side pane icons:</source>
|
||||
<translation>側邊欄圖示尺寸:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="545"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<source>Icon theme:</source>
|
||||
<translation>圖示佈景主題:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="546"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<source>Window</source>
|
||||
<translation>視窗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="550"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<source>Default width of new windows:</source>
|
||||
<translation>新視窗的預設寬度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="551"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<source>Default height of new windows:</source>
|
||||
<translation>新視窗的預設高度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="547"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<source>Always show the tab bar</source>
|
||||
<translation>總是顯示標籤列</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="548"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<source>Show 'Close' buttons on tabs </source>
|
||||
<translation>在分頁標籤上顯示「關閉」按鈕</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="549"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<source>Remember the size of the last closed window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="552"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<source>Browsing</source>
|
||||
<translation>瀏覽</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="553"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<source>Open files with single click</source>
|
||||
<translation>單擊開啟檔案</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="554"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<source>Delay of auto-selection in single click mode (0 to disable)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="555"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<source>Default view mode:</source>
|
||||
<translation>預設檢視模式:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="556"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<source> sec</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="557"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<source>File Operations</source>
|
||||
<translation>檔案操作</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="558"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<source>Confirm before deleting files</source>
|
||||
<translation>刪除檔案前確認</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="559"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<source>Move deleted files to "trash bin" instead of erasing from disk.</source>
|
||||
<translation>將檔案移動到垃圾桶,而不直接刪除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="560"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<source>Show thumbnails of files</source>
|
||||
<translation>顯示檔案縮圖</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="561"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<source>Only show thumbnails for local files</source>
|
||||
<translation>只顯示本地檔案的縮圖</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="562"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<source>Do not generate thumbnails for image files exceeding this size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="563"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source> KB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="568"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<source>When removable medium unmounted:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="569"/>
|
||||
<source>Close tab containing removable medium</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="579"/>
|
||||
<source>Switch &user command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Change folder in the tab to home folder</source>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="582"/>
|
||||
<source>Archiver in&tegration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="578"/>
|
||||
<source>Terminal emulator:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1086,27 +1111,37 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">不為超過指定大小的檔案產生縮圖 (KB)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="564"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="570"/>
|
||||
<source>Auto Mount</source>
|
||||
<translation>自動掛載</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="565"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<source>Mount mountable volumes automatically on program startup</source>
|
||||
<translation>掛載可掛載的磁碟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="566"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="572"/>
|
||||
<source>Mount removable media automatically when they are inserted</source>
|
||||
<translation>可移除式媒體插入時自動掛載</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="567"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Show available options for removable media when they are inserted</source>
|
||||
<translation>可移除式媒體插入時顯示可用的選項</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="571"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="575"/>
|
||||
<source>Close &tab containing removable medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Chan&ge folder in the tab to home folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<source>Programs</source>
|
||||
<translation>程式</translation>
|
||||
</message>
|
||||
@ -1115,28 +1150,26 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
|
||||
<translation type="obsolete">用來開啟目錄的終端機模擬器指令:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="573"/>
|
||||
<source>Switch user command:</source>
|
||||
<translation>切換使用者的指令:</translation>
|
||||
<translation type="vanished">切換使用者的指令:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="574"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="580"/>
|
||||
<source>Examples: "xterm -e %s" for terminal or "gksu %s" for switching user.
|
||||
%s = the command line you want to execute with terminal or su.</source>
|
||||
<translation>範例: 終端機指令可用 "xterm -e %s"而切換使用者指令可用 "gksu %s"。
|
||||
%s = 想要用終端機或是切換使用者執行的指令。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="576"/>
|
||||
<source>Archiver integration:</source>
|
||||
<translation>壓縮程式整合:</translation>
|
||||
<translation type="vanished">壓縮程式整合:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Terminal emulator command for programs:</source>
|
||||
<translation type="obsolete">用來執行程式的終端機模擬器指令:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="577"/>
|
||||
<location filename="../../build/pcmanfm/ui_preferences.h" line="583"/>
|
||||
<source>Use SI decimal prefixes instead of IEC binary prefixes</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -83,6 +83,7 @@ void View::onSearch() {
|
||||
void View::prepareFileMenu(Fm::FileMenu* menu) {
|
||||
Application* app = static_cast<Application*>(qApp);
|
||||
menu->setConfirmDelete(app->settings().confirmDelete());
|
||||
menu->setConfirmTrash(app->settings().confirmTrash());
|
||||
menu->setUseTrash(app->settings().useTrash());
|
||||
|
||||
// add some more menu items for dirs
|
||||
|
@ -36,12 +36,6 @@ class View : public Fm::FolderView {
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
enum OpenDirTargetType {
|
||||
OpenInCurrentView,
|
||||
OpenInNewWindow,
|
||||
OpenInNewTab
|
||||
};
|
||||
|
||||
explicit View(Fm::FolderView::ViewMode _mode = IconMode, QWidget* parent = 0);
|
||||
virtual ~View();
|
||||
|
||||
|
72
pcmanfm/xdgdir.cpp
Normal file
72
pcmanfm/xdgdir.cpp
Normal file
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "xdgdir.h"
|
||||
#include <QStandardPaths>
|
||||
#include <QFile>
|
||||
#include <QDir>
|
||||
#include <QSaveFile>
|
||||
|
||||
QString XdgDir::readUserDirsFile() {
|
||||
QFile file(QStandardPaths::writableLocation(QStandardPaths::ConfigLocation) + QStringLiteral("/user-dirs.dirs"));
|
||||
if(file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||
QByteArray data = file.readAll();
|
||||
file.close();
|
||||
return QString::fromLocal8Bit(data);
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
QString XdgDir::readDesktopDir() {
|
||||
QString str = readUserDirsFile();
|
||||
if(str.isEmpty())
|
||||
return QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + QStringLiteral("/Desktop");
|
||||
QRegExp reg(QStringLiteral("XDG_DESKTOP_DIR=\"([^\n]*)\""));
|
||||
if(reg.lastIndexIn(str) != -1) {
|
||||
str = reg.cap(1);
|
||||
if(str.startsWith(QStringLiteral("$HOME")))
|
||||
str = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + str.mid(5);
|
||||
return str;
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
void XdgDir::setDesktopDir(QString path) {
|
||||
QString home = QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
|
||||
if(path.startsWith(home))
|
||||
path = QStringLiteral("$HOME") + path.mid(home.length());
|
||||
QString str = readUserDirsFile();
|
||||
QRegExp reg(QStringLiteral("XDG_DESKTOP_DIR=\"([^\n]*)\""));
|
||||
QString line = QStringLiteral("XDG_DESKTOP_DIR=\"") + path + '\"';
|
||||
if(reg.indexIn(str) != -1)
|
||||
str.replace(reg, line);
|
||||
else {
|
||||
if(!str.endsWith('\n'))
|
||||
str += '\n';
|
||||
str += line + '\n';
|
||||
}
|
||||
QString dir = QStandardPaths::writableLocation(QStandardPaths::ConfigLocation);
|
||||
if(QDir().mkpath(dir)) { // write the file
|
||||
QSaveFile file(dir + QStringLiteral("/user-dirs.dirs"));
|
||||
if(file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
||||
file.write(str.toLocal8Bit());
|
||||
file.commit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
33
pcmanfm/xdgdir.h
Normal file
33
pcmanfm/xdgdir.h
Normal file
@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
|
||||
class XdgDir : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
static QString readDesktopDir();
|
||||
|
||||
static void setDesktopDir(QString path);
|
||||
|
||||
private:
|
||||
static QString readUserDirsFile();
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user