Compare commits
2 Commits
ubuntu/res
...
upstream/0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fbf63af56e | ||
|
|
d20435ed18 |
22
.gitignore
vendored
22
.gitignore
vendored
@ -1,22 +0,0 @@
|
||||
moc_*.cxx
|
||||
qrc_*.cxx
|
||||
cmake_install.cmake
|
||||
cmake_uninstall.cmake
|
||||
Makefile
|
||||
CMakeFiles
|
||||
CMakeCache.txt
|
||||
CPackConfig.cmake
|
||||
CPackSourceConfig.cmake
|
||||
lib*.so
|
||||
lib*.so.*
|
||||
ui_*.h
|
||||
*.qm
|
||||
lxqt-appswitcher/lxqt-appswitcher
|
||||
lxqt-desktop/lxqt-desktop
|
||||
lxqt-panel/panel/lxqt-panel
|
||||
*~
|
||||
*.autosave
|
||||
*-swp
|
||||
CMakeLists.txt.user*
|
||||
/build
|
||||
nbproject/
|
||||
15
.tx/config
15
.tx/config
@ -1,15 +0,0 @@
|
||||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
[lxde-qt.liblxqt]
|
||||
file_filter = translations/liblxqt_<lang>.ts
|
||||
source_file = translations/source.ts
|
||||
source_lang = en
|
||||
type = QT
|
||||
|
||||
#[flacon.About_Translators]
|
||||
#source_file = translations/src.translators.info
|
||||
#source_lang = en
|
||||
#file_filter = translations/translators_<lang>.info
|
||||
#type = MOZILLAPROPERTIES
|
||||
|
||||
@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
tx pull --all --force
|
||||
@ -1,17 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
LUPDATE_OPTIONS="-noobsolete"
|
||||
LUPDATE_OPTIONS="${LUPDATE_OPTIONS} -locations none "
|
||||
TS_FILE="../translations/source.ts"
|
||||
|
||||
LUPDATE=$(which lupdate-qt4 2>/dev/null)
|
||||
|
||||
[ -z "${LUPDATE}" ] && LUPDATE=$(which lupdate 2>/dev/null)
|
||||
|
||||
if [ -z "${LUPDATE}" ]; then
|
||||
echo "The lupdate program not found."
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
${LUPDATE} ${LUPDATE_OPTIONS} .. -ts ${TS_FILE}
|
||||
|
||||
@ -1,4 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
./updateSrc.sh && tx push --source
|
||||
|
||||
223
CMakeLists.txt
223
CMakeLists.txt
@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 2.8.11)
|
||||
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||||
|
||||
project(liblxqt)
|
||||
|
||||
@ -6,13 +6,30 @@ set(LXQT_MAJOR_VERSION 0)
|
||||
set(LXQT_MINOR_VERSION 9)
|
||||
set(LXQT_PATCH_VERSION 0)
|
||||
|
||||
# Set default installation paths
|
||||
set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}" CACHE PATH "Installation path for libraries")
|
||||
include(CMakePackageConfigHelpers)
|
||||
include(GNUInstallDirs) # Standard directories for installation
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# LXQT_DATA_DIR defaults to CMAKE_INSTALL_FULL_DATADIR. It's added to
|
||||
# XDG_DATA_DIRS by the startlxqt script
|
||||
# Warning: Setting LXQT_DATA_DIR must be done after including GNUInstallDirs
|
||||
#-----------------------------------------------------------------------------
|
||||
if (NOT DEFINED LXQT_DATA_DIR)
|
||||
set(LXQT_DATA_DIR "${CMAKE_INSTALL_FULL_DATADIR}" CACHE PATH
|
||||
"LXQt base directory relative to which data files should be searched"
|
||||
)
|
||||
endif()
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Release is the default build type
|
||||
#-----------------------------------------------------------------------------
|
||||
if (NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Release)
|
||||
endif()
|
||||
|
||||
set(LXQT_PKG_CONFIG_DESCRIPTION "Shared library for LXQt applications")
|
||||
|
||||
set(PUB_HDRS
|
||||
aboutdialog/lxqtaboutdialog.h
|
||||
addplugindialog/lxqtaddplugindialog.h
|
||||
lxqthtmldelegate.h
|
||||
lxqtsettings.h
|
||||
lxqtplugininfo.h
|
||||
@ -35,12 +52,10 @@ set(PUB_HDRS
|
||||
)
|
||||
|
||||
set(PUBLIC_CLASSES
|
||||
AboutDialog
|
||||
HtmlDelegate
|
||||
Settings
|
||||
PluginInfo
|
||||
PowerManager
|
||||
AddPluginDialog
|
||||
ScreenSaver
|
||||
Application
|
||||
SingleApplication
|
||||
@ -57,19 +72,10 @@ set(PUBLIC_CLASSES
|
||||
RotatedWidget
|
||||
)
|
||||
|
||||
set(PRIV_HDRS
|
||||
aboutdialog/lxqtaboutdialog_p.h
|
||||
aboutdialog/technicalinfo.h
|
||||
translatorsinfo/translatorsinfo.h
|
||||
)
|
||||
|
||||
set(SRCS
|
||||
aboutdialog/lxqtaboutdialog.cpp
|
||||
aboutdialog/technicalinfo.cpp
|
||||
lxqthtmldelegate.cpp
|
||||
lxqtplugininfo.cpp
|
||||
lxqtpowermanager.cpp
|
||||
addplugindialog/lxqtaddplugindialog.cpp
|
||||
lxqtsettings.cpp
|
||||
lxqtscreensaver.cpp
|
||||
lxqtapplication.cpp
|
||||
@ -86,13 +92,9 @@ set(SRCS
|
||||
lxqtnotification.cpp
|
||||
lxqtgridlayout.cpp
|
||||
lxqtrotatedwidget.cpp
|
||||
translatorsinfo/translatorsinfo.cpp
|
||||
)
|
||||
|
||||
set(MOCS
|
||||
aboutdialog/lxqtaboutdialog.h
|
||||
aboutdialog/lxqtaboutdialog_p.h
|
||||
addplugindialog/lxqtaddplugindialog.h
|
||||
lxqthtmldelegate.h
|
||||
lxqtpowermanager.h
|
||||
lxqtsettings.h
|
||||
@ -111,15 +113,13 @@ set(MOCS
|
||||
)
|
||||
|
||||
set(FORMS
|
||||
aboutdialog/lxqtaboutdialog.ui
|
||||
configdialog/lxqtconfigdialog.ui
|
||||
addplugindialog/lxqtaddplugindialog.ui
|
||||
)
|
||||
|
||||
# additional cmake files
|
||||
list(APPEND CMAKE_MODULE_PATH
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmake
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
|
||||
)
|
||||
|
||||
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
|
||||
@ -128,6 +128,8 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
|
||||
find_package(Qt5Widgets REQUIRED QUIET)
|
||||
find_package(Qt5DBus REQUIRED QUIET)
|
||||
find_package(Qt5X11Extras REQUIRED QUIET)
|
||||
@ -136,8 +138,6 @@ find_package(Qt5Xdg REQUIRED QUIET)
|
||||
find_package(KF5WindowSystem REQUIRED QUIET)
|
||||
message(STATUS "Building with Qt ${Qt5Core_VERSION_STRING}")
|
||||
|
||||
QT5_WRAP_UI(UIS ${FORMS})
|
||||
|
||||
QT5_ADD_DBUS_INTERFACE(SRCS
|
||||
dbus/org.freedesktop.Notifications.xml
|
||||
notifications_interface
|
||||
@ -145,22 +145,20 @@ QT5_ADD_DBUS_INTERFACE(SRCS
|
||||
|
||||
QT5_ADD_DBUS_ADAPTOR(SRCS
|
||||
dbus/org.lxqt.SingleApplication.xml
|
||||
lxqtsingleapplication.h LxQt::SingleApplication
|
||||
lxqtsingleapplication.h LXQt::SingleApplication
|
||||
)
|
||||
|
||||
set(LXQT_QT_VERSION "5")
|
||||
|
||||
# KF5WindowSystem is missing here. KF5WindowSystem doesn't provide an .pc file.
|
||||
set(LXQT_PKG_CONFIG_REQUIRES "Qt5Widgets Qt5Xml Qt5DBus Qt5X11Extras")
|
||||
set(LXQT_PKG_CONFIG_REQUIRES "Qt5Xdg >= 1.2.0, Qt5Widgets, Qt5Xml, Qt5DBus, Qt5X11Extras")
|
||||
|
||||
include(${QTXDG_USE_FILE})
|
||||
|
||||
include_directories(
|
||||
"${QTXDG_INCLUDE_DIRS}"
|
||||
)
|
||||
|
||||
# Standard directories for installation
|
||||
include(GNUInstallDirs)
|
||||
include(LXQtCompilerSettings NO_POLICY_SCOPE)
|
||||
include(LXQtCreatePkgConfigFile)
|
||||
include(cmake/FindInstallConfigPath.cmake) # sets LXQT_ETC_XDG_DIR, if unset
|
||||
include(create_portable_headers)
|
||||
|
||||
set(LXQT_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_PATCH_VERSION})
|
||||
set(LXQT_LIBRARY_NAME "lxqt" CACHE STRING "lxqt")
|
||||
@ -169,14 +167,12 @@ set(LXQT_SHARE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}/${LXQT_
|
||||
set(LXQT_RELATIVE_TRANSLATIONS_DIR "${LXQT_LIBRARY_NAME}/translations")
|
||||
set(LXQT_TRANSLATIONS_DIR "${LXQT_SHARE_DIR}/translations")
|
||||
|
||||
set(LXQT_INTREE_INCLUDE_DIR "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/include")
|
||||
set(LXQT_INTREE_INCLUDE_DIR "${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/include")
|
||||
set(LXQT_INTREE_TARGETS_FILE "${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}-targets.cmake")
|
||||
|
||||
set(LXQT_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_FULL_INCLUDEDIR}/${LXQT_LIBRARY_NAME}")
|
||||
set(LXQT_INSTALL_CMAKE_DIR "${CMAKE_INSTALL_PREFIX}/share/cmake")
|
||||
|
||||
include(cmake/FindInstallConfigPath.cmake)
|
||||
include(create_portable_headers)
|
||||
|
||||
## Translations
|
||||
include(LXQtTranslateTs)
|
||||
@ -188,7 +184,7 @@ lxqt_translate_ts(QM_FILES
|
||||
${SRCS}
|
||||
${FORMS}
|
||||
INSTALL_DIR
|
||||
${LXQT_TRANSLATIONS_DIR}/${PROJECT_NAME}
|
||||
"${LXQT_TRANSLATIONS_DIR}/${PROJECT_NAME}"
|
||||
)
|
||||
|
||||
message(STATUS "")
|
||||
@ -203,73 +199,49 @@ foreach(h ${PUB_HDRS})
|
||||
endforeach()
|
||||
|
||||
# Create the portable headers
|
||||
create_portable_headers(INTREE_PORTABLE_HEADERS ${LXQT_INTREE_INCLUDE_DIR}/LXQt ${PUBLIC_CLASSES})
|
||||
check_portable_headers(H_FILES ${PUB_HDRS} LINKS ${INTREE_PORTABLE_HEADERS})
|
||||
create_portable_headers(INTREE_PORTABLE_HEADERS "${LXQT_INTREE_INCLUDE_DIR}/LXQt" ${PUBLIC_CLASSES})
|
||||
check_portable_headers(H_FILES ${PUB_HDRS} LINKS "${INTREE_PORTABLE_HEADERS}")
|
||||
|
||||
#************************************************
|
||||
# Create in-tree build infrastructure
|
||||
#************************************************
|
||||
set(CFG_LXQT_INCLUDE_DIR ${LXQT_INTREE_INCLUDE_DIR})
|
||||
set(CFG_LXQT_LIBRARY ${LXQT_LIBRARY_NAME})
|
||||
set(CFG_LXQT_USE_FILE ${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}_use.cmake)
|
||||
set(CFG_LXQT_TARGETS_FILE ${LXQT_INTREE_TARGETS_FILE})
|
||||
set(CFG_LXQT_TARGETS_FILE "${LXQT_INTREE_TARGETS_FILE}")
|
||||
set(CFG_LXQT_CMAKE_MODULES_DIR "${PROJECT_SOURCE_DIR}/cmake/modules")
|
||||
|
||||
configure_file(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmake/lxqtX-config.cmake.in
|
||||
${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}-config.cmake
|
||||
@ONLY
|
||||
configure_package_config_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/lxqt-config.cmake.in"
|
||||
"${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}-config.cmake"
|
||||
INSTALL_DESTINATION "neverland" # required, altough we don't install it
|
||||
)
|
||||
|
||||
configure_file(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmake/lxqt_use.cmake.in
|
||||
${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}_use.cmake
|
||||
@ONLY
|
||||
)
|
||||
|
||||
include(${CFG_LXQT_USE_FILE})
|
||||
|
||||
|
||||
#************************************************
|
||||
# Create installable build infrastructure
|
||||
#************************************************
|
||||
set(CFG_LXQT_INCLUDE_DIR "${LXQT_INSTALL_INCLUDE_DIR}")
|
||||
set(CFG_LXQT_LIBRARY ${LXQT_LIBRARY_NAME})
|
||||
set(CFG_LXQT_USE_FILE "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}/${LXQT_LIBRARY_NAME}_use.cmake")
|
||||
set(CFG_LXQT_TARGETS_FILE "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}/${LXQT_LIBRARY_NAME}-targets.cmake")
|
||||
set(CFG_LXQT_CMAKE_MODULES_DIR "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}/modules")
|
||||
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/lxqtX-config.cmake.in"
|
||||
configure_package_config_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/lxqt-config.cmake.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/install/${LXQT_LIBRARY_NAME}-config.cmake"
|
||||
@ONLY
|
||||
INSTALL_DESTINATION "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}"
|
||||
)
|
||||
|
||||
# use gcc visibility feature to decrease unnecessary exported symbols
|
||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||
# set visibility to hidden to hide symbols, unlesss they're exported
|
||||
# manually in the code
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden -fno-exceptions -Wl,-no-undefined -Wall")
|
||||
endif()
|
||||
add_definitions(-DCOMPILE_LIBLXQT)
|
||||
|
||||
|
||||
configure_file(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmake/lxqt_use.cmake.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/install/${LXQT_LIBRARY_NAME}_use.cmake
|
||||
@ONLY
|
||||
write_basic_package_version_file(
|
||||
"${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}-config-version.cmake"
|
||||
VERSION ${LXQT_VERSION}
|
||||
COMPATIBILITY AnyNewerVersion
|
||||
)
|
||||
|
||||
install(FILES
|
||||
${CMAKE_CURRENT_BINARY_DIR}/install/${LXQT_LIBRARY_NAME}-config.cmake
|
||||
${CMAKE_CURRENT_BINARY_DIR}/install/${LXQT_LIBRARY_NAME}_use.cmake
|
||||
DESTINATION ${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/install/${LXQT_LIBRARY_NAME}-config.cmake"
|
||||
"${CMAKE_BINARY_DIR}/${LXQT_LIBRARY_NAME}-config-version.cmake"
|
||||
DESTINATION "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
install(EXPORT
|
||||
${LXQT_LIBRARY_NAME}-targets
|
||||
DESTINATION ${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}
|
||||
DESTINATION "${CMAKE_INSTALL_DATADIR}/cmake/${LXQT_LIBRARY_NAME}"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
@ -280,18 +252,12 @@ file(GLOB toInstallModules
|
||||
|
||||
install(
|
||||
FILES ${toInstallModules}
|
||||
DESTINATION "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}/modules"
|
||||
DESTINATION "${LXQT_INSTALL_CMAKE_DIR}/${LXQT_LIBRARY_NAME}/modules"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
|
||||
include(translatorsinfo/CMakeLists.txt)
|
||||
get_translatorsinfo_qrc(translatorsinfo_qrc)
|
||||
qt5_add_resources(QRC_CXX_SOURCES ${translatorsinfo_qrc})
|
||||
|
||||
add_library(${LXQT_LIBRARY_NAME}
|
||||
SHARED ${PUB_HDRS}
|
||||
${PRIV_HDRS}
|
||||
${SRCS}
|
||||
${dbus_generated}
|
||||
${UIS} ${MOCS}
|
||||
@ -301,11 +267,12 @@ add_library(${LXQT_LIBRARY_NAME}
|
||||
)
|
||||
|
||||
target_link_libraries(${LXQT_LIBRARY_NAME}
|
||||
KF5::WindowSystem
|
||||
Qt5::Widgets
|
||||
Qt5::DBus
|
||||
Qt5::X11Extras
|
||||
${QTXDG_LIBRARIES}
|
||||
PUBLIC
|
||||
KF5::WindowSystem
|
||||
Qt5::Widgets
|
||||
Qt5::DBus
|
||||
Qt5::X11Extras
|
||||
Qt5Xdg
|
||||
)
|
||||
|
||||
set_target_properties(${LXQT_LIBRARY_NAME} PROPERTIES
|
||||
@ -313,27 +280,69 @@ set_target_properties(${LXQT_LIBRARY_NAME} PROPERTIES
|
||||
SOVERSION ${LXQT_MAJOR_VERSION}
|
||||
)
|
||||
|
||||
install(TARGETS
|
||||
${LXQT_LIBRARY_NAME}
|
||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
EXPORT ${LXQT_LIBRARY_NAME}-targets
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}
|
||||
target_compile_definitions(${LXQT_LIBRARY_NAME}
|
||||
PRIVATE "LXQT_RELATIVE_SHARE_DIR=\"${LXQT_RELATIVE_SHARE_DIR}\""
|
||||
PRIVATE "LXQT_SHARE_DIR=\"${LXQT_SHARE_DIR}\""
|
||||
PRIVATE "LXQT_RELATIVE_SHARE_TRANSLATIONS_DIR=\"${LXQT_RELATIVE_TRANSLATIONS_DIR}\""
|
||||
PRIVATE "LXQT_SHARE_TRANSLATIONS_DIR=\"${LXQT_TRANSLATIONS_DIR}\""
|
||||
PRIVATE "LXQT_ETC_XDG_DIR=\"${LXQT_ETC_XDG_DIR}\""
|
||||
PRIVATE "LXQT_DATA_DIR=\"${LXQT_DATA_DIR}\""
|
||||
PRIVATE "LXQT_VERSION=\"${LXQT_VERSION}\""
|
||||
PRIVATE "COMPILE_LIBLXQT"
|
||||
)
|
||||
|
||||
target_compile_definitions(${LXQT_LIBRARY_NAME}
|
||||
PRIVATE "$<$<CONFIG:Release>:QT_NO_DEBUG_OUTPUT>"
|
||||
PRIVATE "$<$<CONFIG:Release>:QT_NO_WARNING_OUTPUT>"
|
||||
)
|
||||
|
||||
export(TARGETS ${LXQT_LIBRARY_NAME} ${QTXDG_TARGET} FILE ${LXQT_INTREE_TARGETS_FILE})
|
||||
target_include_directories(${LXQT_LIBRARY_NAME}
|
||||
INTERFACE "$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/${LXQT_LIBRARY_NAME}>"
|
||||
INTERFACE "$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/${LXQT_LIBRARY_NAME}/LXQt>"
|
||||
)
|
||||
|
||||
install(FILES ${PUB_HDRS} DESTINATION "${LXQT_INSTALL_INCLUDE_DIR}/LXQt")
|
||||
install(FILES ${INTREE_PORTABLE_HEADERS} DESTINATION "${LXQT_INSTALL_INCLUDE_DIR}/LXQt")
|
||||
target_include_directories(${LXQT_LIBRARY_NAME}
|
||||
INTERFACE "$<BUILD_INTERFACE:${LXQT_INTREE_INCLUDE_DIR}>"
|
||||
INTERFACE "$<BUILD_INTERFACE:${LXQT_INTREE_INCLUDE_DIR}/LXQt>"
|
||||
)
|
||||
|
||||
#************************************************
|
||||
# Create pkgconfig file
|
||||
#************************************************
|
||||
lxqt_create_pkgconfig_file(${LXQT_LIBRARY_NAME}
|
||||
${LXQT_PKG_CONFIG_DESCRIPTION}
|
||||
${LXQT_PKG_CONFIG_REQUIRES}
|
||||
install(TARGETS
|
||||
${LXQT_LIBRARY_NAME}
|
||||
${LXQT_VERSION}
|
||||
DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
||||
EXPORT ${LXQT_LIBRARY_NAME}-targets
|
||||
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
||||
export(TARGETS ${LXQT_LIBRARY_NAME}
|
||||
APPEND FILE "${LXQT_INTREE_TARGETS_FILE}"
|
||||
EXPORT_LINK_INTERFACE_LIBRARIES
|
||||
)
|
||||
|
||||
install(FILES
|
||||
${PUB_HDRS}
|
||||
DESTINATION "${LXQT_INSTALL_INCLUDE_DIR}/LXQt"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
install(FILES
|
||||
${INTREE_PORTABLE_HEADERS}
|
||||
DESTINATION "${LXQT_INSTALL_INCLUDE_DIR}/LXQt"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
#************************************************
|
||||
# Create and install pkgconfig file
|
||||
#************************************************
|
||||
lxqt_create_pkgconfig_file(
|
||||
PACKAGE_NAME ${LXQT_LIBRARY_NAME}
|
||||
DESCRIPTIVE_NAME ${LXQT_LIBRARY_NAME}
|
||||
DESCRIPTION ${LXQT_PKG_CONFIG_DESCRIPTION}
|
||||
INCLUDEDIRS ${LXQT_LIBRARY_NAME}
|
||||
LIBS ${LXQT_LIBRARY_NAME}
|
||||
REQUIRES ${LXQT_PKG_CONFIG_REQUIRES}
|
||||
VERSION ${LXQT_VERSION}
|
||||
INSTALL
|
||||
)
|
||||
#************************************************
|
||||
|
||||
|
||||
@ -1,159 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - The Lightweight Desktop Environment
|
||||
* http://lxqt.org
|
||||
*
|
||||
* Copyright: 2010-2011 Razor team
|
||||
* Authors:
|
||||
* Petr Vanek <petr@scribus.info>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
#include "lxqtaboutdialog.h"
|
||||
#include "ui_lxqtaboutdialog.h"
|
||||
#include "lxqtaboutdialog_p.h"
|
||||
#include "lxqttranslator.h"
|
||||
#include "technicalinfo.h"
|
||||
#include "translatorsinfo/translatorsinfo.h"
|
||||
#include <QDebug>
|
||||
#include <QDate>
|
||||
#include <QClipboard>
|
||||
|
||||
using namespace LxQt;
|
||||
|
||||
AboutDialogPrivate::AboutDialogPrivate()
|
||||
{
|
||||
Translator::translateLibrary("liblxqt");
|
||||
setupUi(this);
|
||||
|
||||
QString css="<style TYPE='text/css'> "
|
||||
"body { font-family: sans-serif;} "
|
||||
".name { font-size: 16pt; } "
|
||||
"a { white-space: nowrap ;} "
|
||||
"h2 { font-size: 10pt;} "
|
||||
"li { line-height: 120%;} "
|
||||
".techInfoKey { white-space: nowrap ; margin: 0 20px 0 16px; } "
|
||||
"</style>"
|
||||
;
|
||||
|
||||
iconLabel->setFixedSize(48, 48);
|
||||
iconLabel->setScaledContents(true);
|
||||
iconLabel->setPixmap(QPixmap(QString(LXQT_SHARE_DIR) + "/graphics/lxqt_logo.png"));
|
||||
|
||||
nameLabel->setText(css + titleText());
|
||||
|
||||
aboutBrowser->setHtml(css + aboutText());
|
||||
aboutBrowser->viewport()->setAutoFillBackground(false);
|
||||
|
||||
autorsBrowser->setHtml(css + authorsText());
|
||||
autorsBrowser->viewport()->setAutoFillBackground(false);
|
||||
|
||||
thanksBrowser->setHtml(css + thanksText());
|
||||
thanksBrowser->viewport()->setAutoFillBackground(false);
|
||||
|
||||
translationsBrowser->setHtml(css + translationsText());
|
||||
translationsBrowser->viewport()->setAutoFillBackground(false);
|
||||
|
||||
TechnicalInfo info;
|
||||
techBrowser->setHtml(info.html());
|
||||
techBrowser->viewport()->setAutoFillBackground(false);
|
||||
|
||||
connect(techCopyToClipboardButton, SIGNAL(clicked()), this, SLOT(copyToCliboardTechInfo()));
|
||||
this->setAttribute(Qt::WA_DeleteOnClose);
|
||||
show();
|
||||
|
||||
}
|
||||
|
||||
QString AboutDialogPrivate::titleText() const
|
||||
{
|
||||
return QString("<div class=name>%1</div><div class=ver>%2</div>").arg("LXQt",
|
||||
tr("Version: %1").arg(LXQT_VERSION));
|
||||
|
||||
}
|
||||
|
||||
QString AboutDialogPrivate::aboutText() const
|
||||
{
|
||||
return QString(
|
||||
"<p>%1</p>"
|
||||
"<p>%2</p>"
|
||||
"<p>%3</p>"
|
||||
"<p>%4</p>"
|
||||
"<p>%5</p>")
|
||||
.arg(
|
||||
tr("Advanced, easy-to-use, and fast desktop environment based on Qt technologies.",
|
||||
"About dialog, 'About' tab text"),
|
||||
tr("LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.",
|
||||
"About dialog, 'About' tab text").arg("href=\"http://razor-qt.org\""),
|
||||
tr("Copyright: %1-%2 %3", "About dialog, 'About' tab text")
|
||||
.arg("2010", QDate::currentDate().toString("yyyy"), "LXQt team"),
|
||||
tr("Homepage: %1", "About dialog, 'About' tab text")
|
||||
.arg("<a href=\"http://lxqt.org\">http://lxqt.org</a>"),
|
||||
tr("License: %1", "About dialog, 'About' tab text")
|
||||
.arg("<a href=\"http://www.gnu.org/licenses/lgpl-2.1.html\">GNU Lesser General Public License version 2.1 or later</a>"
|
||||
" and partly under the "
|
||||
"<a href=\"http://www.gnu.org/licenses/gpl-2.0.html\">GNU General Public License version 2</a>")
|
||||
);
|
||||
}
|
||||
|
||||
QString AboutDialogPrivate::authorsText() const
|
||||
{
|
||||
return QString("<p>%1</p><p>%2</p>").arg(
|
||||
tr("LXQt is developed by the <a %1>LXQt Team and contributors</a>.", "About dialog, 'Authors' tab text")
|
||||
.arg(" href=\"https://github.com/lxde/lxde-qt\""),
|
||||
tr("If you are interested in working with our development team, <a %1>join us</a>.", "About dialog, 'Authors' tab text")
|
||||
.arg("href=\"http://lxqt.org\"")
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
QString AboutDialogPrivate::thanksText() const
|
||||
{
|
||||
return QString(
|
||||
"%1"
|
||||
"<ul>"
|
||||
"<li>Alexey Nosov (for the A-MeGo theme)</li>"
|
||||
"<li>Alexander Zakher (the Razor-qt name)</li>"
|
||||
"<li>Andy Fitzsimon (logo/icon)</li>"
|
||||
"<li>Eugene Pivnev (QtDesktop)</li>"
|
||||
"<li>Paul Gnther (desktop backgrounds)</li>"
|
||||
"<li>Manuel Meier (for ideas)</li>"
|
||||
"<li>KDE <<a href=\"http://kde.org/\">http://kde.org/</a>></li>"
|
||||
).arg(tr("Special thanks to:", "About dialog, 'Thanks' tab text"));
|
||||
}
|
||||
|
||||
QString AboutDialogPrivate::translationsText() const
|
||||
{
|
||||
TranslatorsInfo translatorsInfo;
|
||||
return QString("%1<p><ul>%2</ul>").arg(
|
||||
tr("LXQt is translated into many languages thanks to the work of the translation teams all over the world.", "About dialog, 'Translations' tab text"),
|
||||
translatorsInfo.asHtml()
|
||||
);
|
||||
}
|
||||
|
||||
AboutDialog::AboutDialog()
|
||||
{
|
||||
d_ptr = new AboutDialogPrivate();
|
||||
}
|
||||
|
||||
void AboutDialogPrivate::copyToCliboardTechInfo()
|
||||
{
|
||||
TechnicalInfo info;
|
||||
QClipboard *clipboard = QApplication::clipboard();
|
||||
clipboard->setText(info.text());
|
||||
}
|
||||
@ -1,53 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org
|
||||
*
|
||||
* Copyright: 2010-2011 Razor team
|
||||
* Authors:
|
||||
* Petr Vanek <petr@scribus.info>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
#ifndef LXQTRABOUTDIALOG_H
|
||||
#define LXQTRABOUTDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
{
|
||||
|
||||
class AboutDialogPrivate;
|
||||
|
||||
/**
|
||||
* @brief displays a simple about dialog
|
||||
*/
|
||||
class LXQT_API AboutDialog: public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
AboutDialog();
|
||||
private:
|
||||
AboutDialogPrivate * d_ptr;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
|
||||
#endif // LXQTRABOUTDIALOG_H
|
||||
@ -1,203 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>about</class>
|
||||
<widget class="QDialog" name="about">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>633</width>
|
||||
<height>416</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string> About LXQt</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<property name="spacing">
|
||||
<number>21</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>16</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="iconLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="sizeIncrement">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="nameLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"><h1>LXQt</h1><p>Version: %1</p></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="tab">
|
||||
<attribute name="title">
|
||||
<string comment="About dialog, Tab title ">About</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="aboutBrowser">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tab_3">
|
||||
<attribute name="title">
|
||||
<string comment="About dialog, Tab title">Authors</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="autorsBrowser">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tab_4">
|
||||
<attribute name="title">
|
||||
<string comment="About dialog, Tab title">Thanks</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="thanksBrowser">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="translationsTab">
|
||||
<attribute name="title">
|
||||
<string comment="About dialog, Tab title">Translations</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="translationsBrowser">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tab_2">
|
||||
<attribute name="title">
|
||||
<string comment="About dialog, Tab title">Technical Info</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_6">
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="techBrowser">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="techCopyToClipboardButton">
|
||||
<property name="text">
|
||||
<string>Copy to clipboard</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDialogButtonBox" name="buttonBox">
|
||||
<property name="standardButtons">
|
||||
<set>QDialogButtonBox::Close</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<signal>rejected()</signal>
|
||||
<receiver>about</receiver>
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>303</x>
|
||||
<y>273</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>437</x>
|
||||
<y>290</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
||||
@ -1,57 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org
|
||||
*
|
||||
* Copyright: 2010-2011 Razor team
|
||||
* Authors:
|
||||
* Petr Vanek <petr@scribus.info>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
#ifndef LXQT_ABOUTDIALOG_P_H
|
||||
#define LXQT_ABOUTDIALOG_P_H
|
||||
|
||||
#include "ui_lxqtaboutdialog.h"
|
||||
#include <QDialog>
|
||||
|
||||
namespace LxQt
|
||||
{
|
||||
|
||||
/**
|
||||
* @brief prepares the data to show and fills the form, then shows.
|
||||
*/
|
||||
class AboutDialogPrivate: public QDialog, public Ui_about
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
AboutDialogPrivate();
|
||||
QString titleText() const;
|
||||
QString aboutText() const;
|
||||
QString authorsText() const;
|
||||
QString thanksText() const;
|
||||
QString translationsText() const;
|
||||
|
||||
public slots:
|
||||
void copyToCliboardTechInfo();
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
#endif // LXQT_ABOUTDIALOG_P_H
|
||||
@ -1,187 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org
|
||||
*
|
||||
* Copyright: 2012 Razor team
|
||||
* Authors:
|
||||
* Alexander Sokoloff <sokoloff.a@gmail.com>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
|
||||
#include "technicalinfo.h"
|
||||
#include "lxqttranslator.h"
|
||||
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
|
||||
class LxQt::TechInfoTable
|
||||
{
|
||||
public:
|
||||
TechInfoTable(const QString &title);
|
||||
void add(const QString &name, const QVariant &value);
|
||||
QString html() const;
|
||||
QString text(int nameFieldWidth) const;
|
||||
int maxNameLength() const;
|
||||
private:
|
||||
QString mTitle;
|
||||
QList<QPair<QString,QString> > mRows;
|
||||
};
|
||||
|
||||
|
||||
|
||||
TechInfoTable::TechInfoTable(const QString &title)
|
||||
{
|
||||
mTitle = title;
|
||||
}
|
||||
|
||||
void TechInfoTable::add(const QString &name, const QVariant &value)
|
||||
{
|
||||
QPair<QString,QString> row;
|
||||
row.first = name;
|
||||
row.second = value.toString();
|
||||
mRows.append(row);
|
||||
}
|
||||
|
||||
QString TechInfoTable::html() const
|
||||
{
|
||||
QString res;
|
||||
|
||||
res = "<style TYPE='text/css'> "
|
||||
".techInfoKey { white-space: nowrap ; margin: 0 20px 0 16px; } "
|
||||
"</style>";
|
||||
|
||||
res += QString("<b>%1</b>").arg(mTitle);
|
||||
res += "<table width='100%'>";
|
||||
QPair<QString,QString> row;
|
||||
foreach(row, mRows)
|
||||
{
|
||||
res += QString("<tr>"
|
||||
"<td class=techInfoTd width='1%'>"
|
||||
"<div class=techInfoKey>%1</div>"
|
||||
"</td>"
|
||||
"<td>%2</td>"
|
||||
"</tr>").arg(row.first, row.second);
|
||||
}
|
||||
|
||||
res += "</table>";
|
||||
return res;
|
||||
}
|
||||
|
||||
QString TechInfoTable::text(int nameFieldWidth) const
|
||||
{
|
||||
QString res;
|
||||
res += QString("%1\n").arg(mTitle);
|
||||
|
||||
QPair<QString,QString> row;
|
||||
foreach(row, mRows)
|
||||
{
|
||||
res += QString(" %1 %2\n")
|
||||
.arg(row.first + ":", -nameFieldWidth)
|
||||
.arg(row.second);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
int TechInfoTable::maxNameLength() const
|
||||
{
|
||||
int res = 0;
|
||||
QPair<QString,QString> row;
|
||||
foreach (row, mRows)
|
||||
res = qMax(res, row.first.length());
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
|
||||
QString TechnicalInfo::html() const
|
||||
{
|
||||
QString res;
|
||||
foreach (TechInfoTable* item, mItems)
|
||||
{
|
||||
res += item->html();
|
||||
res += "<br><br>";
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
QString TechnicalInfo::text() const
|
||||
{
|
||||
int nameWidth = 0;
|
||||
foreach (TechInfoTable* item, mItems)
|
||||
nameWidth = qMax(nameWidth, item->maxNameLength());
|
||||
|
||||
QString res;
|
||||
foreach (TechInfoTable* item, mItems)
|
||||
{
|
||||
res += item->text(nameWidth + 2);
|
||||
res += "\n\n";
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
TechInfoTable *TechnicalInfo::newTable(const QString &title)
|
||||
{
|
||||
TechInfoTable *table = new TechInfoTable(title);
|
||||
mItems.append(table);
|
||||
return table;
|
||||
}
|
||||
|
||||
TechnicalInfo::~TechnicalInfo()
|
||||
{
|
||||
qDeleteAll(mItems);
|
||||
}
|
||||
|
||||
|
||||
TechnicalInfo::TechnicalInfo()
|
||||
{
|
||||
TechInfoTable *table;
|
||||
|
||||
// ******************************************
|
||||
table = newTable("LXQt Desktop Toolbox - Technical Info<p>");
|
||||
#ifdef DEBUG
|
||||
QString buildType("Debug");
|
||||
#else
|
||||
QString buildType("Release");
|
||||
#endif
|
||||
|
||||
table->add("Version", LXQT_VERSION);
|
||||
table->add("Qt", qVersion());
|
||||
table->add("Build type", buildType);
|
||||
table->add("System Configuration", LXQT_ETC_XDG_DIR);
|
||||
table->add("Share Directory", LXQT_SHARE_DIR);
|
||||
table->add("Translations", Translator::translationSearchPaths().join("<br>\n"));
|
||||
|
||||
|
||||
// ******************************************
|
||||
table = newTable("User Directories");
|
||||
XdgDirs xdgDirs;
|
||||
|
||||
table->add("Xdg Data Home", xdgDirs.dataHome(false));
|
||||
table->add("Xdg Config Home", xdgDirs.configHome(false));
|
||||
table->add("Xdg Data Dirs", xdgDirs.dataDirs().join(":"));
|
||||
table->add("Xdg Cache Home", xdgDirs.cacheHome(false));
|
||||
table->add("Xdg Runtime Home", xdgDirs.runtimeDir());
|
||||
table->add("Xdg Autostart Dirs", xdgDirs.autostartDirs().join("<br>\n"));
|
||||
table->add("Xdg Autostart Home", xdgDirs.autostartHome(false));
|
||||
|
||||
}
|
||||
|
||||
@ -1,61 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org
|
||||
*
|
||||
* Copyright: 2012 Razor team
|
||||
* Authors:
|
||||
* Alexander Sokoloff <sokoloff.a@gmail.com>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
|
||||
#ifndef TECHNICALINFO_H
|
||||
#define TECHNICALINFO_H
|
||||
|
||||
#include <QList>
|
||||
#include <QPair>
|
||||
#include <QDateTime>
|
||||
#include <QVariant>
|
||||
|
||||
namespace LxQt
|
||||
{
|
||||
|
||||
class TechInfoTable;
|
||||
|
||||
class TechnicalInfo
|
||||
{
|
||||
public:
|
||||
TechnicalInfo();
|
||||
~TechnicalInfo();
|
||||
|
||||
QString html() const;
|
||||
QString text() const;
|
||||
|
||||
TechInfoTable *newTable(const QString &title);
|
||||
void add(const TechInfoTable &table);
|
||||
|
||||
private:
|
||||
QList<TechInfoTable*> mItems;
|
||||
};
|
||||
|
||||
|
||||
} // namespace LxQt
|
||||
|
||||
#endif // TECHNICALINFO_H
|
||||
@ -1,212 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org
|
||||
*
|
||||
* Copyright: 2010-2011 Razor team
|
||||
* Authors:
|
||||
* Alexander Sokoloff <sokoloff.a@gmail.com>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
#include "lxqtaddplugindialog.h"
|
||||
#include "ui_lxqtaddplugindialog.h"
|
||||
#include "lxqthtmldelegate.h"
|
||||
#include <QDebug>
|
||||
#include <QLineEdit>
|
||||
#include <XdgIcon>
|
||||
#include <QListWidgetItem>
|
||||
#include <QIcon>
|
||||
|
||||
#include "lxqttranslator.h"
|
||||
|
||||
using namespace LxQt;
|
||||
|
||||
#define SEARCH_ROLE Qt::UserRole
|
||||
#define INDEX_ROLE SEARCH_ROLE+1
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
bool pluginDescriptionLessThan(const PluginInfo &p1, const PluginInfo &p2)
|
||||
{
|
||||
int cmp = QString::compare(p1.name(), p2.name());
|
||||
if (cmp != 0)
|
||||
return cmp < 0;
|
||||
|
||||
return p1.comment() < p2.comment();
|
||||
}
|
||||
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
AddPluginDialog::AddPluginDialog(const QStringList& desktopFilesDirs,
|
||||
const QString &serviceType,
|
||||
const QString &nameFilter,
|
||||
QWidget *parent):
|
||||
QDialog(parent),
|
||||
ui(new Ui::AddPluginDialog),
|
||||
mTimerId(0)
|
||||
{
|
||||
Translator::translateLibrary("liblxqt");
|
||||
ui->setupUi(this);
|
||||
|
||||
mPlugins = PluginInfo::search(desktopFilesDirs, serviceType, nameFilter);
|
||||
qSort(mPlugins.begin(), mPlugins.end(), pluginDescriptionLessThan);
|
||||
|
||||
ui->pluginList->setItemDelegate(new HtmlDelegate(QSize(32, 32), ui->pluginList));
|
||||
|
||||
init();
|
||||
|
||||
connect(ui->pluginList, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(emitPluginSelected()));
|
||||
connect(ui->pluginList, SIGNAL(itemSelectionChanged()), this, SLOT(toggleAddButtonState()));
|
||||
connect(ui->searchEdit, SIGNAL(textEdited(QString)), this, SLOT(searchEditTexChanged(QString)));
|
||||
connect(ui->addButton, SIGNAL(clicked(bool)), this, SLOT(emitPluginSelected()));
|
||||
}
|
||||
|
||||
void AddPluginDialog::setPluginsInUse(const QStringList pluginsInUseIDs)
|
||||
{
|
||||
Q_FOREACH (QString id, pluginsInUseIDs)
|
||||
{
|
||||
if (!mPluginsInUseAmount.contains(id))
|
||||
mPluginsInUseAmount[id] = 0;
|
||||
mPluginsInUseAmount[id]++;
|
||||
}
|
||||
|
||||
init();
|
||||
}
|
||||
|
||||
void AddPluginDialog::init()
|
||||
{
|
||||
QListWidget* pluginList = ui->pluginList;
|
||||
|
||||
pluginList->clear();
|
||||
|
||||
QIcon fallIco = XdgIcon::fromTheme("preferences-plugin");
|
||||
|
||||
int pluginCount = mPlugins.length();
|
||||
for (int i = 0; i < pluginCount; ++i)
|
||||
{
|
||||
const PluginInfo &plugin = mPlugins.at(i);
|
||||
|
||||
QString countStr;
|
||||
int amount = mPluginsInUseAmount[plugin.id()];
|
||||
if (amount)
|
||||
countStr = tr("(%1 active)").arg(amount);
|
||||
|
||||
QListWidgetItem* item = new QListWidgetItem(ui->pluginList);
|
||||
item->setText(QString("<b>%1 %2</b><br>\n%3\n").arg(plugin.name(), countStr, plugin.comment()));
|
||||
item->setIcon(plugin.icon(fallIco));
|
||||
item->setData(INDEX_ROLE, i);
|
||||
item->setData(SEARCH_ROLE, QString("%1 %2 %3 %4").arg(
|
||||
plugin.name(),
|
||||
plugin.comment(),
|
||||
plugin.value("Name").toString(),
|
||||
plugin.value("Comment").toString()
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if (pluginCount > 0)
|
||||
ui->pluginList->setCurrentRow(0);
|
||||
}
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
void AddPluginDialog::pluginAdded(const QString &id)
|
||||
{
|
||||
if (!mPluginsInUseAmount.contains(id))
|
||||
mPluginsInUseAmount[id] = 0;
|
||||
mPluginsInUseAmount[id]++;
|
||||
init();
|
||||
}
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
void AddPluginDialog::pluginRemoved(const QString &id)
|
||||
{
|
||||
mPluginsInUseAmount[id]--;
|
||||
init();
|
||||
}
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
AddPluginDialog::~AddPluginDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
void AddPluginDialog::searchEditTexChanged(const QString& text)
|
||||
{
|
||||
if (mTimerId)
|
||||
killTimer(mTimerId);
|
||||
|
||||
mTimerId = startTimer(SEARCH_DELAY);
|
||||
}
|
||||
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
void AddPluginDialog::timerEvent(QTimerEvent* event)
|
||||
{
|
||||
if (event->timerId() == mTimerId)
|
||||
{
|
||||
killTimer(mTimerId);
|
||||
QListWidget* pluginList = ui->pluginList;
|
||||
QString s = ui->searchEdit->text();
|
||||
|
||||
for (int i=0; i < pluginList->count(); ++i)
|
||||
{
|
||||
QListWidgetItem* item = pluginList->item(i);
|
||||
item->setHidden(! item->data(SEARCH_ROLE).toString().contains(s, Qt::CaseInsensitive));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
void AddPluginDialog::emitPluginSelected()
|
||||
{
|
||||
QListWidget* pluginList = ui->pluginList;
|
||||
if (pluginList->currentItem() && pluginList->currentItem()->isSelected())
|
||||
{
|
||||
PluginInfo plugin = mPlugins.at(pluginList->currentItem()->data(INDEX_ROLE).toInt());
|
||||
emit pluginSelected(plugin);
|
||||
}
|
||||
}
|
||||
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
void AddPluginDialog::toggleAddButtonState()
|
||||
{
|
||||
ui->addButton->setEnabled(ui->pluginList->currentItem() && ui->pluginList->currentItem()->isSelected());
|
||||
}
|
||||
@ -1,94 +0,0 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org
|
||||
*
|
||||
* Copyright: 2010-2011 Razor team
|
||||
* Authors:
|
||||
* Alexander Sokoloff <sokoloff.a@gmail.com>
|
||||
*
|
||||
* This program or 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
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
|
||||
#ifndef LXQTADDPLUGINDIALOG_H
|
||||
#define LXQTADDPLUGINDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <lxqtplugininfo.h>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
#define SEARCH_DELAY 125
|
||||
|
||||
namespace Ui {
|
||||
class AddPluginDialog;
|
||||
}
|
||||
|
||||
|
||||
namespace LxQt
|
||||
{
|
||||
|
||||
/*! The AddPluginDialog class provides a dialog that allow users to add plugins.
|
||||
*/
|
||||
class LXQT_API AddPluginDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
/*! Constructs a dialog with the given parent that initially displays
|
||||
PluginInfo objects for the matched files in the directories
|
||||
@param desktopFilesDirs - list of the scanned directories names.
|
||||
@param serviceType - type of the plugin, for example "LxQtPanel/Plugin".
|
||||
@param nameFilter - wildcard filter that understands * and ? wildcards. */
|
||||
AddPluginDialog(const QStringList& desktopFilesDirs,
|
||||
const QString& serviceType,
|
||||
const QString& nameFilter="*",
|
||||
QWidget *parent = 0);
|
||||
|
||||
~AddPluginDialog();
|
||||
|
||||
void setPluginsInUse(const QStringList pluginsInUseIDs);
|
||||
|
||||
signals:
|
||||
void pluginSelected(const LxQt::PluginInfo &plugin);
|
||||
|
||||
protected:
|
||||
void timerEvent(QTimerEvent* event);
|
||||
|
||||
private:
|
||||
void init();
|
||||
Ui::AddPluginDialog *ui;
|
||||
PluginInfoList mPlugins;
|
||||
int mTimerId;
|
||||
|
||||
// store the amount of instances of the plugins using their ids
|
||||
QHash<QString, int> mPluginsInUseAmount;
|
||||
|
||||
public slots:
|
||||
void pluginAdded(const QString &id);
|
||||
void pluginRemoved(const QString &id);
|
||||
|
||||
private slots:
|
||||
void emitPluginSelected();
|
||||
void searchEditTexChanged(const QString& text);
|
||||
void toggleAddButtonState();
|
||||
};
|
||||
|
||||
} // namecpase LxQt
|
||||
|
||||
#endif // LXQTADDPLUGINDIALOG_H
|
||||
@ -1,141 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>AddPluginDialog</class>
|
||||
<widget class="QDialog" name="AddPluginDialog">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>359</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="searchLabel">
|
||||
<property name="text">
|
||||
<string>Search:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="searchEdit"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QListWidget" name="pluginList">
|
||||
<property name="sizeAdjustPolicy">
|
||||
<enum>QAbstractScrollArea::AdjustToContentsOnFirstShow</enum>
|
||||
</property>
|
||||
<property name="showDropIndicator" stdset="0">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="alternatingRowColors">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="selectionMode">
|
||||
<enum>QAbstractItemView::SingleSelection</enum>
|
||||
</property>
|
||||
<property name="selectionBehavior">
|
||||
<enum>QAbstractItemView::SelectRows</enum>
|
||||
</property>
|
||||
<property name="movement">
|
||||
<enum>QListView::Static</enum>
|
||||
</property>
|
||||
<property name="flow">
|
||||
<enum>QListView::TopToBottom</enum>
|
||||
</property>
|
||||
<property name="resizeMode">
|
||||
<enum>QListView::Adjust</enum>
|
||||
</property>
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="modelColumn">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="uniformItemSizes">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="selectionRectVisible">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="currentRow">
|
||||
<number>-1</number>
|
||||
</property>
|
||||
<property name="sortingEnabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="addButton">
|
||||
<property name="text">
|
||||
<string>Add Widget</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="closeButton">
|
||||
<property name="text">
|
||||
<string>Close</string>
|
||||
</property>
|
||||
<property name="autoDefault">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="default">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>pluginList</tabstop>
|
||||
<tabstop>addButton</tabstop>
|
||||
<tabstop>closeButton</tabstop>
|
||||
<tabstop>searchEdit</tabstop>
|
||||
</tabstops>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>closeButton</sender>
|
||||
<signal>clicked()</signal>
|
||||
<receiver>AddPluginDialog</receiver>
|
||||
<slot>close()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>380</x>
|
||||
<y>279</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>118</x>
|
||||
<y>270</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
||||
@ -1,33 +0,0 @@
|
||||
#
|
||||
# Write a pkg-config pc file for given "name" with "decription"
|
||||
# Arguments:
|
||||
# name: a library name (withoud "lib" prefix and "so" suffixes
|
||||
# desc: a desription string
|
||||
#
|
||||
macro (create_pkgconfig_file name desc)
|
||||
set(_pkgfname "${CMAKE_CURRENT_BINARY_DIR}/${name}.pc")
|
||||
#message(STATUS "${name}: writing pkgconfig file ${_pkgfname}")
|
||||
|
||||
file(WRITE "${_pkgfname}"
|
||||
"# file generated by lxde-qt cmake build\n"
|
||||
"prefix=${CMAKE_INSTALL_PREFIX}\n"
|
||||
"libdir=\${prefix}/lib${LIB_SUFFIX}\n"
|
||||
"includedir=\${prefix}/include\n"
|
||||
"\n"
|
||||
"Name: ${name}\n"
|
||||
"Description: ${desc}\n"
|
||||
"Version: ${LXQT_VERSION}\n"
|
||||
"Libs: -L\${libdir} -l${name}\n"
|
||||
"Cflags: -I\${includedir}\n"
|
||||
"\n"
|
||||
)
|
||||
|
||||
# FreeBSD loves to install files to different locations
|
||||
# http://www.freebsd.org/doc/handbook/dirstructure.html
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
install(FILES ${_pkgfname} DESTINATION libdata/pkgconfig)
|
||||
else()
|
||||
install(FILES ${_pkgfname} DESTINATION lib${LIB_SUFFIX}/pkgconfig)
|
||||
endif()
|
||||
|
||||
endmacro()
|
||||
@ -19,13 +19,13 @@ function(create_portable_headers outfiles outDir)
|
||||
foreach(f ${class_list})
|
||||
string(TOLOWER "${f}.h" _filename)
|
||||
|
||||
file(WRITE ${outDir}/${f}
|
||||
file(WRITE "${outDir}/${f}"
|
||||
"#include \"lxqt${_filename}\"\n")
|
||||
|
||||
list(APPEND ${outfiles} ${outDir}/${f})
|
||||
list(APPEND ${outfiles} "${outDir}/${f}")
|
||||
endforeach()
|
||||
|
||||
set(${outfiles} ${${outfiles}} PARENT_SCOPE)
|
||||
set(${outfiles} "${${outfiles}}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
|
||||
|
||||
@ -1,17 +1,9 @@
|
||||
# - Find the lxqt include and library dirs and define a some macros
|
||||
# - Finds the lxqt package
|
||||
#
|
||||
# The module defines the following variables
|
||||
#
|
||||
# LXQT_FOUND - Set to TRUE if all of the above has been found
|
||||
#
|
||||
# LXQT_INCLUDE_DIR - The lxqt include directory
|
||||
#
|
||||
# LXQT_INCLUDE_DIRS - The lxqt and the Qt include directory, for use with INCLUDE_DIRECTORIES()
|
||||
#
|
||||
# LXQT_LIBRARY_DIRS - The lxqt and the Qt library directories
|
||||
#
|
||||
# LXQT_LIBRARIES - The libraries needed to use lxqt
|
||||
#
|
||||
# LXQT_SHARE_DIR - This allows to install and read the configs from non-standard locations
|
||||
#
|
||||
# LXQT_TRANSLATIONS_DIR - The default translations directory
|
||||
@ -20,52 +12,56 @@
|
||||
# /etc/xdg/lxqt location. Unfortunately QSettings we are using internally
|
||||
# can be overriden in the Qt compilation time to use different path for
|
||||
# system-wide configs. (for example configure ... -sysconfdir /etc/settings ...)
|
||||
# This path can be found calling Qt4's qmake:
|
||||
# This path can be found calling Qt's qmake:
|
||||
# qmake -query QT_INSTALL_CONFIGURATION
|
||||
#
|
||||
# LXQT_USE_FILE - The variable LXQT_USE_FILE is set which is the path to a CMake file that
|
||||
# can be included to compile lxqt applications and libraries. It sets up
|
||||
# the compilation environment for include directories and populates a
|
||||
# LXQT_LIBRARIES variable.
|
||||
# LXQT_DATA_DIR - LXQt base directory relative to which data files should
|
||||
# be searched.Defaults to CMAKE_INSTALL_FULL_DATADIR. It's
|
||||
# added to XDG_DATA_DIRS by the startlxqt script.
|
||||
#
|
||||
# When using the components argument, LXQT_USE_* variables are automatically set
|
||||
# for the LXQT_USE_FILE to pick up. If one wishes to manually set them, the
|
||||
# available ones to set include:
|
||||
# LXQT_USE_MOUNT
|
||||
# LXQT_USE_GLOBAL_KEY_CLIENT
|
||||
#
|
||||
# Typical usage could be something like:
|
||||
# set(LXQT_USE_MOUNT 1)
|
||||
# find_package(LXQT REQUIRED)
|
||||
# include(${LXQT_USE_FILE})
|
||||
#
|
||||
# lxqt_translate_ts(QM_FILES
|
||||
# SOURCES
|
||||
# ${H_FILES}
|
||||
# ${CPP_FILES}
|
||||
# ${UI_FILES}
|
||||
# )
|
||||
# lxqt_translate_desktop(DESKTOP_FILES
|
||||
# SOURCES
|
||||
# ${DESKTOP_FILES_IN}
|
||||
# )
|
||||
#
|
||||
# add_executable(myexe main.cpp)
|
||||
# target_link_libraries(myexe $LXQT_LIBRARIES})
|
||||
|
||||
if(LXQT_FIND_REQUIRED)
|
||||
set(REQUIRED_OPT "REQUIRED")
|
||||
@PACKAGE_INIT@
|
||||
|
||||
set(LXQT_USEQT@LXQT_QT_VERSION@ ON)
|
||||
set(LXQT_QT_VERSION @LXQT_QT_VERSION@)
|
||||
set(LXQT_MAJOR_VERSION @LXQT_MAJOR_VERSION@)
|
||||
set(LXQT_MINOR_VERSION @LXQT_MINOR_VERSION@)
|
||||
set(LXQT_PATCH_VERSION @LXQT_PATCH_VERSION@)
|
||||
set(LXQT_VERSION @LXQT_VERSION@)
|
||||
|
||||
set(LXQT_RELATIVE_SHARE_DIR @LXQT_RELATIVE_SHARE_DIR@)
|
||||
set(LXQT_SHARE_DIR @LXQT_SHARE_DIR@)
|
||||
set(LXQT_RELATIVE_TRANSLATIONS_DIR @LXQT_RELATIVE_TRANSLATIONS_DIR@)
|
||||
set(LXQT_TRANSLATIONS_DIR @LXQT_TRANSLATIONS_DIR@)
|
||||
set(LXQT_ETC_XDG_DIR @LXQT_ETC_XDG_DIR@)
|
||||
set(LXQT_DATA_DIR @LXQT_DATA_DIR@)
|
||||
set(LXQT_CMAKE_MODULES_DIR @CFG_LXQT_CMAKE_MODULES_DIR@)
|
||||
|
||||
|
||||
set(LXQT@LXQT_QT_VERSION@_FOUND 1)
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
|
||||
add_definitions(-DLXQT_RELATIVE_SHARE_DIR=\"${LXQT_RELATIVE_SHARE_DIR}\")
|
||||
add_definitions(-DLXQT_SHARE_DIR=\"${LXQT_SHARE_DIR}\")
|
||||
add_definitions(-DLXQT_RELATIVE_SHARE_TRANSLATIONS_DIR=\"${LXQT_RELATIVE_TRANSLATIONS_DIR}\")
|
||||
add_definitions(-DLXQT_SHARE_TRANSLATIONS_DIR=\"${LXQT_TRANSLATIONS_DIR}\")
|
||||
add_definitions(-DLXQT_ETC_XDG_DIR=\"${LXQT_ETC_XDG_DIR}\")
|
||||
add_definitions(-DLXQT_DATA_DIR=\"${LXQT_DATA_DIR}\")
|
||||
add_definitions(-DLXQT_VERSION=\"${LXQT_VERSION}\")
|
||||
|
||||
SET_SOURCE_FILES_PROPERTIES(LXQT_LIBRARIES PROPERTIES OBJECT_DEPENDS lxqt${LXQT_QT_VERSION})
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH "${LXQT_CMAKE_MODULES_DIR}")
|
||||
|
||||
find_dependency(Qt5Widgets)
|
||||
find_dependency(Qt5DBus)
|
||||
find_dependency(Qt5X11Extras)
|
||||
find_dependency(Qt5LinguistTools)
|
||||
find_dependency(Qt5Xdg)
|
||||
find_dependency(KF5WindowSystem)
|
||||
|
||||
if (CMAKE_VERSION VERSION_GREATER 2.8.12)
|
||||
cmake_policy(SET CMP0024 OLD)
|
||||
endif()
|
||||
|
||||
set(LXQT_LIBRARY_DIRS @CMAKE_INSTALL_PREFIX@/@LIB_INSTALL_DIR@)
|
||||
set(LXQT_LIBRARIES ${LXQT_LIBRARY} )
|
||||
set(LXQT_INCLUDE_DIRS ${LXQT_INCLUDE_DIR} @CMAKE_INSTALL_PREFIX@/include)
|
||||
set(LXQT_USE_FILE ${CMAKE_CURRENT_LIST_DIR}/lxqt_use.cmake)
|
||||
set(LXQT_CMAKE_MODULES_DIR @CFG_LXQT_CMAKE_MODULES_DIR@)
|
||||
set(LXQT_FOUND 1)
|
||||
|
||||
if(LXQT_FIND_QUIETLY)
|
||||
set(QUIET_OPT "QUIET")
|
||||
endif()
|
||||
|
||||
find_package(LxQt5 ${REQUIRED_OPT} ${QUIET_OPT})
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/lxqt-targets.cmake")
|
||||
|
||||
@ -1,82 +0,0 @@
|
||||
# - Find the lxqt include and library dirs and define a some macros
|
||||
#
|
||||
# The module defines the following variables
|
||||
#
|
||||
# LXQT_FOUND - Set to TRUE if all of the above has been found
|
||||
#
|
||||
# LXQT_INCLUDE_DIR - The lxqt include directory
|
||||
#
|
||||
# LXQT_INCLUDE_DIRS - The lxqt and the Qt include directory, for use with INCLUDE_DIRECTORIES()
|
||||
#
|
||||
# LXQT_LIBRARIES - The libraries needed to use lxqt
|
||||
#
|
||||
# LXQT_SHARE_DIR - This allows to install and read the configs from non-standard locations
|
||||
#
|
||||
# LXQT_TRANSLATIONS_DIR - The default translations directory
|
||||
#
|
||||
# LXQT_ETC_XDG_DIR - XDG standards expects system-wide configuration files in the
|
||||
# /etc/xdg/razor location. Unfortunately QSettings we are using internally
|
||||
# can be overriden in the Qt compilation time to use different path for
|
||||
# system-wide configs. (for example configure ... -sysconfdir /etc/settings ...)
|
||||
# This path can be found calling Qt4's qmake:
|
||||
# qmake -query QT_INSTALL_CONFIGURATION
|
||||
#
|
||||
# LXQT_USE_FILE - The variable LXQT_USE_FILE is set which is the path to a CMake file that
|
||||
# can be included to compile lxqt applications and libraries. It sets up
|
||||
# the compilation environment for include directories and populates a
|
||||
# LXQT_LIBRARIES variable.
|
||||
#
|
||||
# When using the components argument, LXQT_USE_* variables are automatically set
|
||||
# for the LXQT_USE_FILE to pick up. If one wishes to manually set them, the
|
||||
# available ones to set include:
|
||||
# LXQT_USE_MOUNT
|
||||
# LXQT_USE_GLOBAL_KEY_CLIENT
|
||||
#
|
||||
# Typical usage could be something like:
|
||||
# set(LXQT_USE_MOUNT 1)
|
||||
# find_package(LXQT REQUIRED)
|
||||
# include(${LXQT_USE_FILE})
|
||||
#
|
||||
# razor_translate_ts(QM_FILES
|
||||
# SOURCES
|
||||
# ${H_FILES}
|
||||
# ${CPP_FILES}
|
||||
# ${UI_FILES}
|
||||
# )
|
||||
# razor_translate_desktop(DESKTOP_FILES
|
||||
# SOURCES
|
||||
# ${DESKTOP_FILES_IN}
|
||||
# )
|
||||
#
|
||||
# add_executable(myexe main.cpp)
|
||||
# target_link_libraries(myexe $LXQT_LIBRARIES})
|
||||
|
||||
set(LXQT_USEQT@LXQT_QT_VERSION@ ON)
|
||||
set(LXQT_QT_VERSION @LXQT_QT_VERSION@)
|
||||
set(LXQT_MAJOR_VERSION @LXQT_MAJOR_VERSION@)
|
||||
set(LXQT_MINOR_VERSION @LXQT_MINOR_VERSION@)
|
||||
set(LXQT_PATCH_VERSION @LXQT_PATCH_VERSION@)
|
||||
set(LXQT_VERSION @LXQT_VERSION@)
|
||||
|
||||
set(LXQT_RELATIVE_SHARE_DIR @LXQT_RELATIVE_SHARE_DIR@)
|
||||
set(LXQT_SHARE_DIR @LXQT_SHARE_DIR@)
|
||||
set(LXQT_RELATIVE_TRANSLATIONS_DIR @LXQT_RELATIVE_TRANSLATIONS_DIR@)
|
||||
set(LXQT_TRANSLATIONS_DIR @LXQT_TRANSLATIONS_DIR@)
|
||||
set(LXQT_ETC_XDG_DIR @LXQT_ETC_XDG_DIR@)
|
||||
set(LXQT_CMAKE_MODULES_DIR @CFG_LXQT_CMAKE_MODULES_DIR@)
|
||||
|
||||
set(LXQT_INCLUDE_DIR @CFG_LXQT_INCLUDE_DIR@)
|
||||
set(LXQT_INCLUDE_DIRS @CFG_LXQT_INCLUDE_DIR@)
|
||||
|
||||
set(LXQT_LIBRARY @CFG_LXQT_LIBRARY@)
|
||||
set(LXQT_LIBRARIES @CFG_LXQT_LIBRARY@)
|
||||
|
||||
set(LXQT_USE_FILE @CFG_LXQT_USE_FILE@)
|
||||
set(LXQT_FOUND 1)
|
||||
set(LXQT@LXQT_QT_VERSION@_FOUND 1)
|
||||
|
||||
|
||||
include(@CFG_LXQT_TARGETS_FILE@)
|
||||
|
||||
mark_as_advanced(LXQT_LIBRARY LXQT_INCLUDE_DIR)
|
||||
|
||||
@ -1,106 +0,0 @@
|
||||
# - Find the LXQt include and library dirs and define a some macros
|
||||
#
|
||||
# The module defines the following functions
|
||||
#
|
||||
# lxqt_set_default_value(VAR_NAME VAR_VALUE)
|
||||
#
|
||||
#
|
||||
# lxqt_create_pkgconfig_file(name
|
||||
# desc
|
||||
# requires
|
||||
# include_rel_dir
|
||||
# version)
|
||||
# Write a pkg-config pc file for given "name" with "decription"
|
||||
# Arguments:
|
||||
# name: a library name (withoud "lib" prefix and "so" suffixes
|
||||
# desc: a desription string
|
||||
# requires: required libraries
|
||||
# include_rel_dir: include directory, relative to includedir
|
||||
# version: package version
|
||||
#
|
||||
#
|
||||
#
|
||||
# The module defines the following definitions
|
||||
#
|
||||
# -DLXQT_SHARE_DIR - This allows to install and read the configs from non-standard locations
|
||||
#
|
||||
# -DLXQT_ETC_XDG_DIR - XDG standards expects system-wide configuration files in the
|
||||
# /etc/xdg/lxqt location. Unfortunately QSettings we are using internally
|
||||
# can be overriden in the Qt compilation time to use different path for
|
||||
# system-wide configs. (for example configure ... -sysconfdir /etc/settings ...)
|
||||
# This path can be found calling Qt4's qmake:
|
||||
# qmake -query QT_INSTALL_CONFIGURATION
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
include_directories(${LXQT_INCLUDE_DIRS})
|
||||
|
||||
link_directories(${LXQT_LIBRARY_DIRS})
|
||||
|
||||
add_definitions(-DLXQT_RELATIVE_SHARE_DIR=\"${LXQT_RELATIVE_SHARE_DIR}\")
|
||||
add_definitions(-DLXQT_SHARE_DIR=\"${LXQT_SHARE_DIR}\")
|
||||
add_definitions(-DLXQT_RELATIVE_SHARE_TRANSLATIONS_DIR=\"${LXQT_RELATIVE_TRANSLATIONS_DIR}\")
|
||||
add_definitions(-DLXQT_SHARE_TRANSLATIONS_DIR=\"${LXQT_TRANSLATIONS_DIR}\")
|
||||
add_definitions(-DLXQT_ETC_XDG_DIR=\"${LXQT_ETC_XDG_DIR}\")
|
||||
add_definitions(-DLXQT_VERSION=\"${LXQT_VERSION}\")
|
||||
|
||||
SET_SOURCE_FILES_PROPERTIES(LXQT_LIBRARIES PROPERTIES OBJECT_DEPENDS lxqt${LXQT_QT_VERSION})
|
||||
|
||||
|
||||
if (LXQT_QT_VERSION EQUAL "4")
|
||||
find_package(Qt4 REQUIRED QUIET)
|
||||
include(${QT_USE_FILE})
|
||||
|
||||
find_package(QTXDG REQUIRED)
|
||||
elseif(LXQT_QT_VERSION EQUAL "5")
|
||||
find_package(Qt5Widgets REQUIRED QUIET)
|
||||
find_package(Qt5DBus REQUIRED QUIET)
|
||||
find_package(Qt5X11Extras REQUIRED QUIET)
|
||||
find_package(Qt5LinguistTools REQUIRED QUIET)
|
||||
find_package(Qt5Xdg REQUIRED)
|
||||
find_package(KF5WindowSystem REQUIRED QUIET)
|
||||
else()
|
||||
message(FATAL "Qt${LXQT_QT_VERSION} is not supported.")
|
||||
endif()
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH ${LXQT_CMAKE_MODULES_DIR})
|
||||
|
||||
# Works for Qt4 and Qt5
|
||||
include(${QTXDG_USE_FILE})
|
||||
|
||||
|
||||
macro(lxqt_set_default_value VAR_NAME VAR_VALUE)
|
||||
if (NOT DEFINED ${VAR_NAME})
|
||||
set (${VAR_NAME} ${VAR_VALUE})
|
||||
endif ()
|
||||
endmacro()
|
||||
|
||||
|
||||
#
|
||||
# Write a pkg-config pc file for given "name" with "decription"
|
||||
# Arguments:
|
||||
# name: a library name (withoud "lib" prefix and "so" suffixes
|
||||
# desc: a desription string
|
||||
#
|
||||
macro(lxqt_create_pkgconfig_file name desc requires include_rel_dir version)
|
||||
set(_pkgfname "${CMAKE_CURRENT_BINARY_DIR}/${name}.pc")
|
||||
message(STATUS "${name}: writing pkgconfig file ${_pkgfname}")
|
||||
|
||||
file(WRITE "${_pkgfname}"
|
||||
"# file generated by razor-qt cmake build\n"
|
||||
"prefix=${CMAKE_INSTALL_PREFIX}\n"
|
||||
"libdir=\${prefix}/${CMAKE_INSTALL_LIBDIR}\n"
|
||||
"includedir=\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}\n"
|
||||
"\n"
|
||||
"Name: ${name}\n"
|
||||
"Description: ${desc}\n"
|
||||
"Version: ${version}\n"
|
||||
"Requires: ${requires}\n"
|
||||
"Libs: -L\${libdir} -l${name}\n"
|
||||
"Cflags: -I\${includedir} -I\${includedir}/${include_rel_dir}\n"
|
||||
"\n"
|
||||
)
|
||||
|
||||
install(FILES ${_pkgfname} DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
||||
endmacro()
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
static void loadAppTranslation()
|
||||
{
|
||||
LxQt::Translator::translateApplication(QStringLiteral("@catalog_name@"));
|
||||
LXQt::Translator::translateApplication(QStringLiteral("@catalog_name@"));
|
||||
}
|
||||
|
||||
Q_COREAPP_STARTUP_FUNCTION(loadAppTranslation)
|
||||
|
||||
141
cmake/modules/LXQtCompilerSettings.cmake
Normal file
141
cmake/modules/LXQtCompilerSettings.cmake
Normal file
@ -0,0 +1,141 @@
|
||||
#=============================================================================
|
||||
# Copyright 2015 Luís Pereira <luis.artur.pereira@gmail.com>
|
||||
# Copyright 2015 Palo Kisa <palo.kisa@gmail.com>
|
||||
# Copyright 2013 Hong Jen Yee (PCMan) <pcman.tw@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.
|
||||
#=============================================================================
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Honor visibility properties for all target types.
|
||||
#
|
||||
# The ``<LANG>_VISIBILITY_PRESET`` and
|
||||
# ``VISIBILITY_INLINES_HIDDEN`` target properties affect visibility
|
||||
# of symbols during dynamic linking. When first introduced these properties
|
||||
# affected compilation of sources only in shared libraries, module libraries,
|
||||
# and executables with the ``ENABLE_EXPORTS`` property set. This
|
||||
# was sufficient for the basic use cases of shared libraries and executables
|
||||
# with plugins. However, some sources may be compiled as part of static
|
||||
# libraries or object libraries and then linked into a shared library later.
|
||||
# CMake 3.3 and above prefer to honor these properties for sources compiled
|
||||
# in all target types. This policy preserves compatibility for projects
|
||||
# expecting the properties to work only for some target types.
|
||||
#
|
||||
# The ``OLD`` behavior for this policy is to ignore the visibility properties
|
||||
# for static libraries, object libraries, and executables without exports.
|
||||
# The ``NEW`` behavior for this policy is to honor the visibility properties
|
||||
# for all target types.
|
||||
#
|
||||
# This policy was introduced in CMake version 3.3. CMake version
|
||||
# 3.3.0 warns when the policy is not set and uses ``OLD`` behavior. Use
|
||||
# the ``cmake_policy()`` command to set it to ``OLD`` or ``NEW``
|
||||
# explicitly.
|
||||
#-----------------------------------------------------------------------------
|
||||
if(COMMAND CMAKE_POLICY)
|
||||
if (POLICY CMP0063)
|
||||
cmake_policy(SET CMP0063 NEW)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
include(CheckCXXCompilerFlag)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Detect Clang compiler
|
||||
#-----------------------------------------------------------------------------
|
||||
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
||||
set(LXQT_COMPILER_IS_CLANGCXX 1)
|
||||
endif()
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Set visibility to hidden to hide symbols, unless they're exported manually
|
||||
# in the code
|
||||
#-----------------------------------------------------------------------------
|
||||
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
|
||||
set(CMAKE_VISIBILITY_INLINES_HIDDEN 1)
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Disable exceptions
|
||||
#-----------------------------------------------------------------------------
|
||||
if (CMAKE_COMPILER_IS_GNUCXX OR LXQT_COMPILER_IS_CLANGCXX)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions")
|
||||
endif()
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Common warning flags
|
||||
#-----------------------------------------------------------------------------
|
||||
set(__LXQT_COMMON_WARNING_FLAGS "-Wall")
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Warning flags
|
||||
#-----------------------------------------------------------------------------
|
||||
if (CMAKE_COMPILER_IS_GNUCXX OR LXQT_COMPILER_IS_CLANGCXX)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${__LXQT_COMMON_WARNING_FLAGS}")
|
||||
endif()
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Linker flags
|
||||
# Do not allow undefined symbols
|
||||
#-----------------------------------------------------------------------------
|
||||
if (CMAKE_COMPILER_IS_GNUCXX OR LXQT_COMPILER_IS_CLANGCXX)
|
||||
set(CMAKE_SHARED_LINKER_FLAGS
|
||||
"-Wl,--no-undefined ${CMAKE_SHARED_LINKER_FLAGS}"
|
||||
)
|
||||
set(CMAKE_MODULE_LINKER_FLAGS
|
||||
"-Wl,--no-undefined ${CMAKE_MODULE_LINKER_FLAGS}"
|
||||
)
|
||||
endif()
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# CXX11 and CXX0X requirements
|
||||
#-----------------------------------------------------------------------------
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
|
||||
if(COMPILER_SUPPORTS_CXX11)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
elseif(COMPILER_SUPPORTS_CXX0X)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
||||
else()
|
||||
message(FATAL "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. C++11 support is required")
|
||||
endif()
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Enable exceptions for an target
|
||||
#
|
||||
# lxqt_enable_target_exceptions(<target>
|
||||
# <INTERFACE|PUBLIC|PRIVATE>
|
||||
# )
|
||||
#
|
||||
#-----------------------------------------------------------------------------
|
||||
function(lxqt_enable_target_exceptions target mode)
|
||||
target_compile_options(${target} ${mode}
|
||||
"$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-fexceptions>"
|
||||
)
|
||||
endfunction()
|
||||
252
cmake/modules/LXQtCreatePkgConfigFile.cmake
Normal file
252
cmake/modules/LXQtCreatePkgConfigFile.cmake
Normal file
@ -0,0 +1,252 @@
|
||||
#=============================================================================
|
||||
# Copyright 2015 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.
|
||||
#=============================================================================#
|
||||
|
||||
# lxqt_create_pkgconfig_file(PACKAGE_NAME <package_name>
|
||||
# VERSION <version>
|
||||
# [PREFIX <path>]
|
||||
# [EXEC_PREFIX <path>]
|
||||
# [INCLUDEDIR_PREFIX <path>]
|
||||
# [INCLUDEDIRS <path1> <path2> ... <path3>]
|
||||
# [LIBDIR_PREFIX <path>]
|
||||
# [DESCRIPTIVE_NAME <name>]
|
||||
# [DESCRIPTION <description>]
|
||||
# [URL <url>]
|
||||
# [REQUIRES <dep1> <dep2> ... <dep3>]
|
||||
# [REQUIRES_PRIVATE <dep1> <dep2> ... <dep3>]
|
||||
# [LIB_INSTALLDIR <dir>]
|
||||
# [CFLAGS <cflags>]
|
||||
# [PATH <path>]
|
||||
# [INSTALL]
|
||||
# [COMPONENT] component)
|
||||
#
|
||||
#
|
||||
# PACKAGE_NAME and VERSION are mandatory. Everything else is optional
|
||||
|
||||
include(CMakeParseArguments)
|
||||
include(GNUInstallDirs)
|
||||
|
||||
function(lxqt_create_pkgconfig_file)
|
||||
set(options INSTALL)
|
||||
set(oneValueArgs
|
||||
PACKAGE_NAME
|
||||
PREFIX
|
||||
EXEC_PREFIX
|
||||
INCLUDEDIR_PREFIX
|
||||
LIBDIR_PREFIX
|
||||
DESCRIPTIVE_NAME
|
||||
DESCRIPTION
|
||||
URL
|
||||
VERSION
|
||||
PATH
|
||||
COMPONENT
|
||||
)
|
||||
set(multiValueArgs
|
||||
INCLUDEDIRS
|
||||
REQUIRES
|
||||
REQUIRES_PRIVATE
|
||||
CONFLICTS
|
||||
CFLAGS
|
||||
LIBS
|
||||
LIBS_PRIVATE
|
||||
)
|
||||
|
||||
cmake_parse_arguments(USER "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||
|
||||
if (USER_UNPARSED_ARGUMENTS)
|
||||
message(FATAL_ERROR "Unknown keywords given to create_pkgconfig_file(): \"${USER_UNPARSED_ARGUMENTS}\"")
|
||||
endif()
|
||||
|
||||
# Check for mandatory args. Abort if not set
|
||||
if (NOT DEFINED USER_PACKAGE_NAME)
|
||||
message(FATAL_ERROR "Required argument PACKAGE_NAME missing in generate_pkgconfig_file() call")
|
||||
else()
|
||||
set(_PKGCONFIG_PACKAGE_NAME "${USER_PACKAGE_NAME}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_VERSION)
|
||||
message(FATAL_ERROR "Required argument VERSION missing in generate_pkgconfig_file() call")
|
||||
else()
|
||||
set(_PKGCONFIG_VERSION "${USER_VERSION}")
|
||||
endif()
|
||||
|
||||
|
||||
# Optional args
|
||||
if (NOT DEFINED USER_PREFIX)
|
||||
set(_PKGCONFIG_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_EXEC_PREFIX)
|
||||
set(_PKGCONFIG_EXEC_PREFIX "\${prefix}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_INCLUDEDIR_PREFIX)
|
||||
set(_PKGCONFIG_INCLUDEDIR_PREFIX "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_LIBDIR_PREFIX)
|
||||
set(_PKGCONFIG_LIBDIR_PREFIX "\${prefix}/${CMAKE_INSTALL_LIBDIR}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_DESCRIPTIVE_NAME)
|
||||
set(_PKGCONFIG_DESCRIPTIVE_NAME "")
|
||||
else()
|
||||
set(_PKGCONFIG_DESCRIPTIVE_NAME "${USER_DESCRIPTIVE_NAME}")
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_INCLUDEDIRS)
|
||||
set(tmp "")
|
||||
foreach(dir ${USER_INCLUDEDIRS})
|
||||
if (NOT IS_ABSOLUTE "${dir}")
|
||||
list(APPEND tmp "-I\${includedir}/${dir}")
|
||||
endif()
|
||||
endforeach()
|
||||
string(REPLACE ";" " " _INCLUDEDIRS "${tmp}")
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_REQUIRES)
|
||||
string(REPLACE ";" ", " _PKGCONFIG_REQUIRES "${USER_REQUIRES}")
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_REQUIRES_PRIVATE)
|
||||
string(REPLACE ";" ", " _PKGCONFIG_REQUIRES_PRIVATE "${USER_REQUIRES_PRIVATE}")
|
||||
else()
|
||||
set(_PKGCONFIG_REQUIRES_PRIVATE "")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_CFLAGS)
|
||||
set(_PKGCONFIG_CFLAGS "-I\${includedir} ${_INCLUDEDIRS}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_LIBS)
|
||||
set(_PKGCONFIG_LIBS "-L\${libdir}")
|
||||
else()
|
||||
set(tmp "-L\${libdir}")
|
||||
set(_libs "${USER_LIBS}")
|
||||
foreach(lib ${_libs})
|
||||
list(APPEND tmp "-l${lib}")
|
||||
endforeach()
|
||||
string(REPLACE ";" " " _PKGCONFIG_LIBS "${tmp}")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_LIBS_PRIVATE)
|
||||
set(PKGCONFIG_LIBS "-L\${libdir}")
|
||||
else()
|
||||
set(tmp "")
|
||||
set(_libs "${USER_LIBS_PRIVATE}")
|
||||
foreach(lib ${_libs})
|
||||
list(APPEND tmp "-l${lib}")
|
||||
endforeach()
|
||||
string(REPLACE ";" " " _PKGCONFIG_LIBS_PRIVATE "${tmp}")
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_DESCRIPTION)
|
||||
set(_PKGCONFIG_DESCRIPTION "${USER_DESCRIPTION}")
|
||||
else()
|
||||
set(_PKGCONFIG_DESCRIPTION "")
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_URL)
|
||||
set(_PKFCONFIG_URL "${USER_URL}")
|
||||
else()
|
||||
set(_PKGCONFIG_URL "")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED USER_PATH)
|
||||
set(_PKGCONFIG_FILE "${PROJECT_BINARY_DIR}/${_PKGCONFIG_PACKAGE_NAME}.pc")
|
||||
else()
|
||||
if (IS_ABSOLUTE "${USER_PATH}")
|
||||
set(_PKGCONFIG_FILE "${USER_PATH}/${_PKGCONFIG_PACKAGE_NAME}.pc")
|
||||
else()
|
||||
set(_PKGCONFIG_FILE "${PROJECT_BINARY_DIR}/${USER_PATH}/${_PKGCONFIG_PACKAGE_NAME}.pc")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Write the .pc file
|
||||
FILE(WRITE "${_PKGCONFIG_FILE}"
|
||||
"# file generated by create_pkgconfig_file()\n"
|
||||
"prefix=${_PKGCONFIG_PREFIX}\n"
|
||||
"exec_prefix=${_PKGCONFIG_EXEC_PREFIX}\n"
|
||||
"libdir=${_PKGCONFIG_LIBDIR_PREFIX}\n"
|
||||
"includedir=${_PKGCONFIG_INCLUDEDIR_PREFIX}\n"
|
||||
"\n"
|
||||
"Name: ${_PKGCONFIG_DESCRIPTIVE_NAME}\n"
|
||||
)
|
||||
|
||||
if (NOT "${_PKGCONFIG_DESCRIPTION}" STREQUAL "")
|
||||
FILE(APPEND ${_PKGCONFIG_FILE}
|
||||
"Description: ${_PKGCONFIG_DESCRIPTION}\n"
|
||||
)
|
||||
endif()
|
||||
|
||||
if (NOT "${_PKGCONFIG_URL}" STREQUAL "")
|
||||
FILE(APPEND ${_PKGCONFIG_FILE} "URL: ${_PKGCONFIG_URL}\n")
|
||||
endif()
|
||||
|
||||
FILE(APPEND ${_PKGCONFIG_FILE} "Version: ${_PKGCONFIG_VERSION}\n")
|
||||
|
||||
if (NOT "${_PKGCONFIG_REQUIRES}" STREQUAL "")
|
||||
FILE(APPEND ${_PKGCONFIG_FILE} "Requires: ${_PKGCONFIG_REQUIRES}\n")
|
||||
endif()
|
||||
|
||||
if (NOT "${_PKGCONFIG_REQUIRES_PRIVATE}" STREQUAL "")
|
||||
FILE(APPEND ${_PKGCONFIG_FILE}
|
||||
"Requires.private: ${_PKGCONFIG_REQUIRES_PRIVATE}\n"
|
||||
)
|
||||
endif()
|
||||
|
||||
|
||||
FILE(APPEND ${_PKGCONFIG_FILE}
|
||||
"Cflags: ${_PKGCONFIG_CFLAGS}\n"
|
||||
"Libs: ${_PKGCONFIG_LIBS}\n"
|
||||
)
|
||||
|
||||
if (NOT "${_PKGCONFIG_LIBS_PRIVATE}" STREQUAL "")
|
||||
FILE(APPEND ${_PKGCONFIG_FILE}
|
||||
"Libs.private: ${_PKGCONFIG_REQUIRES_PRIVATE}\n"
|
||||
)
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_INSTALL)
|
||||
# FreeBSD loves to install files to different locations
|
||||
# http://www.freebsd.org/doc/handbook/dirstructure.html
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
set(_PKGCONFIG_INSTALL_DESTINATION "libdata/pkgconfig")
|
||||
else()
|
||||
set(_PKGCONFIG_INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||
endif()
|
||||
|
||||
if (DEFINED USER_COMPONENT)
|
||||
set(_COMPONENT "${USER_COMPONENT}")
|
||||
else()
|
||||
set(_COMPONENT "Devel")
|
||||
endif()
|
||||
|
||||
install(FILES "${_PKGCONFIG_FILE}"
|
||||
DESTINATION "${_PKGCONFIG_INSTALL_DESTINATION}"
|
||||
COMPONENT "${_COMPONENT}")
|
||||
endif()
|
||||
endfunction()
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
static void loadLibTranslation()
|
||||
{
|
||||
LxQt::Translator::translateLibrary(QStringLiteral("@catalog_name@"));
|
||||
LXQt::Translator::translateLibrary(QStringLiteral("@catalog_name@"));
|
||||
}
|
||||
|
||||
Q_COREAPP_STARTUP_FUNCTION(loadLibTranslation)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#=============================================================================
|
||||
# The lxqt_translate_desktop() function was copied from the the
|
||||
# LXQt LxQtTranste.cmake
|
||||
# The lxqt_translate_desktop() function was copied from the
|
||||
# LXQt LXQtTranslate.cmake
|
||||
#
|
||||
# Original Author: Alexander Sokolov <sokoloff.a@gmail.com>
|
||||
#
|
||||
@ -34,7 +34,7 @@ function(lxqt_translate_desktop _RESULT)
|
||||
if (NOT ${_UNPARSED_ARGS} STREQUAL "")
|
||||
MESSAGE(FATAL_ERROR
|
||||
"Unknown arguments '${_UNPARSED_ARGS}'.\n"
|
||||
"See lxqt_translate_desktop() documenation for more information.\n"
|
||||
"See lxqt_translate_desktop() documentation for more information.\n"
|
||||
)
|
||||
endif()
|
||||
|
||||
@ -65,11 +65,11 @@ function(lxqt_translate_desktop _RESULT)
|
||||
|
||||
file(GLOB _translations
|
||||
${_translationDir}/${_fileName}_*${_fileExt}
|
||||
${_translationDir}/local/${_fileName}_*${_fileExt}
|
||||
)
|
||||
|
||||
set(_pattern "'\\[.*]\\s*='")
|
||||
if (_translations)
|
||||
list(SORT _translations)
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
|
||||
|
||||
@ -32,6 +32,7 @@
|
||||
# [TEMPLATE] translation_template
|
||||
# [TRANSLATION_DIR] translation_directory
|
||||
# [INSTALL_DIR] install_directory
|
||||
# [COMPONENT] component
|
||||
# )
|
||||
# Output:
|
||||
# qmFiles The generated compiled translations (.qm) files
|
||||
@ -52,8 +53,9 @@
|
||||
#
|
||||
# INSTALL_DIR Optional destination of the file compiled files (qmFiles).
|
||||
# If not present no installation is performed
|
||||
|
||||
|
||||
#
|
||||
# COMPONENT Optional install component. Only effective if INSTALL_DIR
|
||||
# present. Defaults to "Runtime".
|
||||
|
||||
# CMake v2.8.3 needed to use the CMakeParseArguments module
|
||||
cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR)
|
||||
@ -62,7 +64,7 @@ cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR)
|
||||
include(Qt5PatchedLinguistToolsMacros)
|
||||
|
||||
function(lxqt_translate_ts qmFiles)
|
||||
set(oneValueArgs USE_QT5 UPDATE_TRANSLATIONS TEMPLATE TRANSLATION_DIR INSTALL_DIR)
|
||||
set(oneValueArgs USE_QT5 UPDATE_TRANSLATIONS TEMPLATE TRANSLATION_DIR INSTALL_DIR COMPONENT)
|
||||
set(multiValueArgs SOURCES)
|
||||
cmake_parse_arguments(TR "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||
|
||||
@ -124,7 +126,14 @@ function(lxqt_translate_ts qmFiles)
|
||||
endif()
|
||||
|
||||
if(DEFINED TR_INSTALL_DIR)
|
||||
install(FILES ${QM} DESTINATION ${TR_INSTALL_DIR})
|
||||
if(NOT DEFINED TR_COMPONENT)
|
||||
set(TR_COMPONENT "Runtime")
|
||||
endif()
|
||||
|
||||
install(FILES ${QM}
|
||||
DESTINATION "${TR_INSTALL_DIR}"
|
||||
COMPONENT "${TR_COMPONENT}"
|
||||
)
|
||||
endif()
|
||||
|
||||
set(${qmFiles} ${QM} PARENT_SCOPE)
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
#include <XdgIcon>
|
||||
#include <QPushButton>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
ConfigDialog::ConfigDialog(const QString& title, Settings* settings, QWidget* parent) :
|
||||
QDialog(parent),
|
||||
@ -45,6 +45,13 @@ ConfigDialog::ConfigDialog(const QString& title, Settings* settings, QWidget* pa
|
||||
button->setAutoDefault(false);
|
||||
}
|
||||
|
||||
void ConfigDialog::setButtons(QDialogButtonBox::StandardButtons buttons)
|
||||
{
|
||||
ui->buttons->setStandardButtons(buttons);
|
||||
foreach(QPushButton* button, ui->buttons->findChildren<QPushButton*>())
|
||||
button->setAutoDefault(false);
|
||||
}
|
||||
|
||||
void ConfigDialog::addPage(QWidget* page, const QString& name, const QString& iconName)
|
||||
{
|
||||
addPage(page, name, QStringList() << iconName);
|
||||
@ -52,6 +59,15 @@ void ConfigDialog::addPage(QWidget* page, const QString& name, const QString& ic
|
||||
|
||||
void ConfigDialog::addPage(QWidget* page, const QString& name, const QStringList& iconNames)
|
||||
{
|
||||
/* We set the layout margin to 0. In the default configuration, one page
|
||||
* only, it aligns buttons with the page. In multi-page it saves a little
|
||||
* bit of space, without clutter.
|
||||
*/
|
||||
if (page->layout())
|
||||
{
|
||||
page->layout()->setMargin(0);
|
||||
}
|
||||
|
||||
QStringList icons = QStringList(iconNames) << "application-x-executable";
|
||||
new QListWidgetItem(XdgIcon::fromTheme(icons), name, ui->moduleList);
|
||||
mIcons.append(icons);
|
||||
@ -60,8 +76,10 @@ void ConfigDialog::addPage(QWidget* page, const QString& name, const QStringList
|
||||
{
|
||||
ui->moduleList->setVisible(true);
|
||||
ui->moduleList->setCurrentRow(0);
|
||||
mMaxSize = QSize(qMax(page->geometry().width() + ui->moduleList->geometry().width(), mMaxSize.width()),
|
||||
qMax(page->geometry().height() + ui->buttons->geometry().height(), mMaxSize.height()));
|
||||
mMaxSize = QSize(qMax(page->geometry().width() + ui->moduleList->geometry().width(),
|
||||
mMaxSize.width()),
|
||||
qMax(page->geometry().height() + ui->buttons->geometry().height(),
|
||||
mMaxSize.height()));
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -70,6 +88,16 @@ void ConfigDialog::addPage(QWidget* page, const QString& name, const QStringList
|
||||
resize(mMaxSize);
|
||||
}
|
||||
|
||||
void ConfigDialog::showPage(QWidget* page)
|
||||
{
|
||||
int index = ui->stackedWidget->indexOf(page);
|
||||
if (index < 0)
|
||||
return;
|
||||
|
||||
ui->stackedWidget->setCurrentIndex(index);
|
||||
ui->moduleList->setCurrentRow(index);
|
||||
}
|
||||
|
||||
void ConfigDialog::closeEvent(QCloseEvent* event)
|
||||
{
|
||||
emit save();
|
||||
@ -78,13 +106,14 @@ void ConfigDialog::closeEvent(QCloseEvent* event)
|
||||
|
||||
void ConfigDialog::dialogButtonsAction(QAbstractButton* button)
|
||||
{
|
||||
QDialogButtonBox::ButtonRole role = ui->buttons->buttonRole(button);
|
||||
if (role == QDialogButtonBox::ResetRole)
|
||||
QDialogButtonBox::StandardButton standardButton = ui->buttons->standardButton(button);
|
||||
emit clicked(standardButton);
|
||||
if (standardButton == QDialogButtonBox::Reset)
|
||||
{
|
||||
mCache->loadToSettings();
|
||||
emit reset();
|
||||
}
|
||||
else
|
||||
else if(standardButton == QDialogButtonBox::Close)
|
||||
{
|
||||
close();
|
||||
}
|
||||
|
||||
@ -28,13 +28,14 @@
|
||||
#include "lxqtsettings.h"
|
||||
#include <QDialog>
|
||||
#include <QAbstractButton>
|
||||
#include <QDialogButtonBox>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace Ui {
|
||||
class ConfigDialog;
|
||||
}
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API ConfigDialog : public QDialog
|
||||
@ -43,8 +44,14 @@ class LXQT_API ConfigDialog : public QDialog
|
||||
|
||||
public:
|
||||
explicit ConfigDialog(const QString& title, Settings* settings, QWidget* parent = 0);
|
||||
|
||||
~ConfigDialog();
|
||||
|
||||
/*!
|
||||
* Sets buttons in button bar
|
||||
*/
|
||||
void setButtons(QDialogButtonBox::StandardButtons buttons);
|
||||
|
||||
/*!
|
||||
* Add a page to the configure dialog
|
||||
*/
|
||||
@ -55,6 +62,13 @@ public:
|
||||
*/
|
||||
void addPage(QWidget* page, const QString& name, const QStringList& iconNames);
|
||||
|
||||
/*!
|
||||
* Show page containing the widget in parameter
|
||||
*/
|
||||
void showPage(QWidget *page);
|
||||
|
||||
|
||||
|
||||
signals:
|
||||
/*!
|
||||
* This signal is emitted when the user pressed the "Reset" button.
|
||||
@ -68,6 +82,11 @@ signals:
|
||||
*/
|
||||
void save();
|
||||
|
||||
/*!
|
||||
* This is emitted when some button in the buttonbar is clicked.
|
||||
*/
|
||||
void clicked(QDialogButtonBox::StandardButton);
|
||||
|
||||
protected:
|
||||
Settings* mSettings;
|
||||
virtual void closeEvent(QCloseEvent* event);
|
||||
@ -84,5 +103,5 @@ private slots:
|
||||
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTCONFIGDIALOG_H
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="LxQt::PageSelectWidget" name="moduleList">
|
||||
<widget class="LXQt::PageSelectWidget" name="moduleList">
|
||||
<property name="horizontalScrollBarPolicy">
|
||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
||||
</property>
|
||||
@ -50,7 +50,7 @@
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>LxQt::PageSelectWidget</class>
|
||||
<class>LXQt::PageSelectWidget</class>
|
||||
<extends>QListWidget</extends>
|
||||
<header location="global">configdialog/lxqtpageselectwidget.h</header>
|
||||
</customwidget>
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
#include <QStyledItemDelegate>
|
||||
#include <QScrollBar>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
class PageSelectWidgetItemDelegate: public QStyledItemDelegate
|
||||
{
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#include "lxqtglobals.h"
|
||||
#include <QListWidget>
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API PageSelectWidget : public QListWidget
|
||||
@ -46,5 +46,5 @@ protected:
|
||||
QSize sizeHint() const;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // PAGESELECTWIDGET_H
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
#include <XdgIcon>
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
#define COLOR_DEBUG "\033[32;2m"
|
||||
#define COLOR_WARN "\033[33;2m"
|
||||
@ -44,9 +44,13 @@ using namespace LxQt;
|
||||
#define QAPP_NAME qApp ? qApp->objectName().toUtf8().constData() : ""
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <unistd.h>
|
||||
#include <cstring>
|
||||
#include <csignal>
|
||||
#include <sys/socket.h>
|
||||
#include <QDateTime>
|
||||
#include <QDebug>
|
||||
#include <QSocketNotifier>
|
||||
/*! \brief Log qDebug input to file
|
||||
Used only in pure Debug builds or when is the system environment
|
||||
variable LXQT_DEBUG set
|
||||
@ -108,6 +112,20 @@ Application::Application(int &argc, char** argv)
|
||||
updateTheme();
|
||||
}
|
||||
|
||||
Application::Application(int &argc, char** argv, bool handleQuitSignals)
|
||||
: Application(argc, argv)
|
||||
{
|
||||
if (handleQuitSignals)
|
||||
{
|
||||
QList<int> signo_list = {SIGINT, SIGTERM, SIGHUP};
|
||||
connect(this, &Application::unixSignal, [this, signo_list] (int signo)
|
||||
{
|
||||
if (signo_list.contains(signo))
|
||||
quit();
|
||||
});
|
||||
listenToUnixSignals(signo_list);
|
||||
}
|
||||
}
|
||||
|
||||
void Application::updateTheme()
|
||||
{
|
||||
@ -115,3 +133,46 @@ void Application::updateTheme()
|
||||
setStyleSheet(lxqtTheme.qss(styleSheetKey));
|
||||
emit themeChanged();
|
||||
}
|
||||
|
||||
namespace
|
||||
{
|
||||
int signal_sock[2];
|
||||
|
||||
|
||||
void signalHandler(int signo)
|
||||
{
|
||||
int ret = write(signal_sock[0], &signo, sizeof (int));
|
||||
if (sizeof (int) != ret)
|
||||
qCritical() << QStringLiteral("unable to write into socketpair, %1").arg(strerror(errno));
|
||||
}
|
||||
}
|
||||
|
||||
void Application::listenToUnixSignals(QList<int> const & signoList)
|
||||
{
|
||||
static QSocketNotifier * signal_notifier = nullptr;
|
||||
|
||||
if (nullptr == signal_notifier)
|
||||
{
|
||||
if (0 != socketpair(AF_UNIX, SOCK_STREAM, 0, signal_sock))
|
||||
{
|
||||
qCritical() << QStringLiteral("unable to create socketpair for correct signal handling: %1)").arg(strerror(errno));
|
||||
return;
|
||||
}
|
||||
|
||||
signal_notifier = new QSocketNotifier(signal_sock[1], QSocketNotifier::Read, this);
|
||||
connect(signal_notifier, &QSocketNotifier::activated, [this] {
|
||||
int signo = 0;
|
||||
int ret = read(signal_sock[1], &signo, sizeof (int));
|
||||
if (sizeof (int) != ret)
|
||||
qCritical() << QStringLiteral("unable to read signal from socketpair, %1").arg(strerror(errno));
|
||||
emit unixSignal(signo);
|
||||
});
|
||||
}
|
||||
|
||||
struct sigaction sa;
|
||||
sa.sa_handler = signalHandler;
|
||||
sigemptyset(&sa.sa_mask);
|
||||
sa.sa_flags = 0;
|
||||
for (auto const & signo : signoList)
|
||||
sigaction(signo, &sa, nullptr);
|
||||
}
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#include <QProxyStyle>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
/*! \brief LXQt wrapper around QApplication.
|
||||
@ -53,19 +53,33 @@ public:
|
||||
* \param argv standard argv as in QApplication
|
||||
*/
|
||||
Application(int &argc, char **argv);
|
||||
/*! Construct a LXQt application object.
|
||||
* \param argc standard argc as in QApplication
|
||||
* \param argv standard argv as in QApplication
|
||||
* \param handleQuitSignals flag if signals SIGINT, SIGTERM, SIGHUP should be handled internaly (\sa quit() application)
|
||||
*/
|
||||
Application(int &argc, char **argv, bool handleQuitSignals);
|
||||
virtual ~Application() {}
|
||||
/*! Install UNIX signal handler for signals defined in \param signalList
|
||||
* Upon receiving of any of this signals the \sa unixSignal signal is emitted
|
||||
*/
|
||||
void listenToUnixSignals(QList<int> const & signolList);
|
||||
|
||||
private slots:
|
||||
void updateTheme();
|
||||
|
||||
signals:
|
||||
void themeChanged();
|
||||
/*! Signal is emitted upon receival of registered unix signal
|
||||
* \param signo the received unix signal number
|
||||
*/
|
||||
void unixSignal(int signo);
|
||||
};
|
||||
|
||||
#if defined(lxqtApp)
|
||||
#undef lxqtApp
|
||||
#endif
|
||||
#define lxqtApp (static_cast<LxQt::Application *>(qApp))
|
||||
#define lxqtApp (static_cast<LXQt::Application *>(qApp))
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTAPPLICATION_H
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
#include <XdgAutoStart>
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
AutostartEntry::AutostartEntry() :
|
||||
mLocalState(StateNone), mSystem(false)
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
#include "lxqtglobals.h"
|
||||
#include <XdgDesktopFile>
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
/*! \brief The AutostartEntry class provides an interface for staging configuration of individual
|
||||
@ -110,5 +110,5 @@ protected:
|
||||
bool mSystem; //! true if the "system" file exists
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTAUTOSTARTENTRY_H
|
||||
|
||||
@ -31,9 +31,9 @@
|
||||
#include <math.h>
|
||||
#include <QWidget>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
class LxQt::GridLayoutPrivate
|
||||
class LXQt::GridLayoutPrivate
|
||||
{
|
||||
public:
|
||||
GridLayoutPrivate();
|
||||
@ -522,35 +522,29 @@ void GridLayout::setGeometry(const QRect &geometry)
|
||||
//
|
||||
// http://qt-project.org/doc/qt-4.8/qrect.html
|
||||
|
||||
int maxX = geometry.left() + geometry.width();
|
||||
int maxY = geometry.top() + geometry.height();
|
||||
const int maxX = geometry.left() + geometry.width();
|
||||
const int maxY = geometry.top() + geometry.height();
|
||||
|
||||
int itemWidth;
|
||||
if (d->mStretch.testFlag(StretchHorizontal))
|
||||
{
|
||||
itemWidth = geometry.width() * 1.0 / d->cols();
|
||||
itemWidth = qMin(itemWidth, d->mCellMaxSize.width());
|
||||
}
|
||||
const bool stretch_h = d->mStretch.testFlag(StretchHorizontal);
|
||||
const bool stretch_v = d->mStretch.testFlag(StretchVertical);
|
||||
|
||||
const int cols = d->cols();
|
||||
int itemWidth = 0;
|
||||
if (stretch_h && 0 < cols)
|
||||
itemWidth = qMin(geometry.width() / cols, d->mCellMaxSize.width());
|
||||
else
|
||||
{
|
||||
itemWidth = d->mCellSizeHint.width();
|
||||
}
|
||||
itemWidth = qBound(qMin(d->mPrefCellMinSize.width(), maxX), itemWidth, d->mPrefCellMaxSize.width());
|
||||
const int widthRemain = stretch_h && 0 < itemWidth ? geometry.width() % itemWidth : 0;
|
||||
|
||||
itemWidth = qBound(d->mPrefCellMinSize.width(), itemWidth, d->mPrefCellMaxSize.width());
|
||||
|
||||
int itemHeight;
|
||||
if (d->mStretch.testFlag(StretchVertical))
|
||||
{
|
||||
itemHeight = geometry.height() * 1.0 / d->rows();
|
||||
itemHeight = qMin(itemHeight, d->mCellMaxSize.height());
|
||||
}
|
||||
const int rows = d->rows();
|
||||
int itemHeight = 0;
|
||||
if (stretch_v && 0 < rows)
|
||||
itemHeight = qMin(geometry.height() / rows, d->mCellMaxSize.height());
|
||||
else
|
||||
{
|
||||
itemHeight = d->mCellSizeHint.height();
|
||||
}
|
||||
|
||||
itemHeight = qBound(d->mPrefCellMinSize.height(), itemHeight, d->mPrefCellMaxSize.height());
|
||||
|
||||
itemHeight = qBound(qMin(d->mPrefCellMinSize.height(), maxY), itemHeight, d->mPrefCellMaxSize.height());
|
||||
const int heightRemain = stretch_v && 0 < itemHeight ? geometry.height() % itemHeight : 0;
|
||||
|
||||
#if 0
|
||||
qDebug() << "** GridLayout::setGeometry *******************************";
|
||||
@ -564,45 +558,49 @@ void GridLayout::setGeometry(const QRect &geometry)
|
||||
qDebug() << "Item:" << "h:" << itemHeight << " w:" << itemWidth;
|
||||
#endif
|
||||
|
||||
int remain_height = heightRemain;
|
||||
int remain_width = widthRemain;
|
||||
if (d->mDirection == LeftToRight)
|
||||
{
|
||||
int height = itemHeight + (0 < remain_height-- ? 1 : 0);
|
||||
foreach(QLayoutItem *item, d->mItems)
|
||||
{
|
||||
if (!item->widget() || item->widget()->isHidden())
|
||||
continue;
|
||||
int width = itemWidth + (0 < remain_width-- ? 1 : 0);
|
||||
|
||||
if (x + itemWidth > maxX)
|
||||
if (x + width > maxX)
|
||||
{
|
||||
x = geometry.left();
|
||||
if (d->mStretch.testFlag(StretchVertical))
|
||||
y += geometry.height() / d->rows();
|
||||
else
|
||||
y += itemHeight;
|
||||
y += height;
|
||||
|
||||
height = itemHeight + (0 < remain_height-- ? 1 : 0);
|
||||
remain_width = widthRemain;
|
||||
}
|
||||
|
||||
item->setGeometry(QRect(x, y, itemWidth, itemHeight));
|
||||
x += itemWidth;
|
||||
item->setGeometry(QRect(x, y, width, height));
|
||||
x += width;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
int width = itemWidth + (0 < remain_width-- ? 1 : 0);
|
||||
foreach(QLayoutItem *item, d->mItems)
|
||||
{
|
||||
if (!item->widget() || item->widget()->isHidden())
|
||||
continue;
|
||||
int height = itemHeight + (0 < remain_height-- ? 1 : 0);
|
||||
|
||||
if (y + itemHeight > maxY)
|
||||
if (y + height > maxY)
|
||||
{
|
||||
y = geometry.top();
|
||||
if (d->mStretch.testFlag(StretchHorizontal))
|
||||
x += geometry.width() / d->cols();
|
||||
else
|
||||
x += itemWidth;
|
||||
x += width;
|
||||
|
||||
width = itemWidth + (0 < remain_width-- ? 1 : 0);
|
||||
remain_height = heightRemain;
|
||||
}
|
||||
item->setGeometry(QRect(x, y, itemWidth, itemHeight));
|
||||
y += itemHeight;
|
||||
item->setGeometry(QRect(x, y, width, height));
|
||||
y += height;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@
|
||||
#include <QLayout>
|
||||
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class GridLayoutPrivate;
|
||||
@ -233,5 +233,5 @@ private:
|
||||
|
||||
Q_DECLARE_OPERATORS_FOR_FLAGS(GridLayout::Stretch)
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTGRIDLAYOUT_H
|
||||
|
||||
@ -30,7 +30,7 @@
|
||||
#include <QAbstractTextDocumentLayout>
|
||||
#include <QTextDocument>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
|
||||
HtmlDelegate::HtmlDelegate(const QSize iconSize, QObject* parent) :
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
#include <QPainter>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API HtmlDelegate : public QStyledItemDelegate
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
#include <QMessageBox>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
Notification::Notification(const QString& summary, QObject* parent) :
|
||||
QObject(parent),
|
||||
|
||||
@ -25,10 +25,11 @@
|
||||
#ifndef LXQTNOTIFICATION_H
|
||||
#define LXQTNOTIFICATION_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QStringList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class NotificationPrivate;
|
||||
@ -174,7 +175,7 @@ signals:
|
||||
* \brief Emitted when the notification is closed
|
||||
* \param reason How notification was closed
|
||||
*/
|
||||
void notificationClosed(LxQt::Notification::CloseReason reason);
|
||||
void notificationClosed(LXQt::Notification::CloseReason reason);
|
||||
|
||||
/*!
|
||||
* \brief Emitted when an action button is activated.
|
||||
@ -188,5 +189,5 @@ private:
|
||||
NotificationPrivate* const d_ptr;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTNOTIFICATION_H
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
#include "lxqtnotification.h"
|
||||
#include "notifications_interface.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class NotificationPrivate : public QObject
|
||||
@ -63,5 +63,5 @@ private:
|
||||
Q_DECLARE_PUBLIC(Notification)
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTNOTIFICATION_P_H
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
#include <QLibrary>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
/************************************************
|
||||
|
||||
@ -75,7 +75,7 @@ QLibrary* PluginInfo::loadLibrary(const QString& libDir) const
|
||||
QString baseName, path;
|
||||
QFileInfo fi = QFileInfo(fileName());
|
||||
path = fi.canonicalPath();
|
||||
baseName = value("X-LxQt-Library", fi.completeBaseName()).toString();
|
||||
baseName = value("X-LXQt-Library", fi.completeBaseName()).toString();
|
||||
|
||||
QString soPath = QDir(libDir).filePath(QString("lib%2.so").arg(baseName));
|
||||
QLibrary* library = new QLibrary(soPath);
|
||||
@ -139,7 +139,7 @@ PluginInfoList PluginInfo::search(const QString& desktopFilesDir, const QString&
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo &pluginInfo)
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo &pluginInfo)
|
||||
{
|
||||
dbg.nospace() << QString("%1").arg(pluginInfo.id());
|
||||
return dbg.space();
|
||||
@ -149,7 +149,7 @@ QDebug operator<<(QDebug dbg, const LxQt::PluginInfo &pluginInfo)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo * const pluginInfo)
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo * const pluginInfo)
|
||||
{
|
||||
return operator<<(dbg, *pluginInfo);
|
||||
}
|
||||
|
||||
@ -41,7 +41,7 @@
|
||||
|
||||
class QLibrary;
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
/*!
|
||||
@ -52,7 +52,7 @@ lxqtpanel_clock2.desktop file
|
||||
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=LxQtPanel/Plugin
|
||||
ServiceTypes=LXQtPanel/Plugin
|
||||
Name=Clock
|
||||
Comment=Clock and calendar
|
||||
|
||||
@ -89,7 +89,7 @@ public:
|
||||
|
||||
/*! Returns a list of PluginInfo objects for the matched files in the directories.
|
||||
@param desktopFilesDirs - scanned directories names.
|
||||
@param serviceType - type of the plugin, for example "LxQtPanel/Plugin".
|
||||
@param serviceType - type of the plugin, for example "LXQtPanel/Plugin".
|
||||
@param nameFilter - wildcard filter that understands * and ? wildcards.
|
||||
|
||||
If the same filename is located under multiple directories only the first file should be used.
|
||||
@ -105,12 +105,12 @@ private:
|
||||
|
||||
typedef QList<PluginInfo> PluginInfoList;
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo& pi);
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo* const pi);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo& pi);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo* const pi);
|
||||
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfoList& list);
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfoList* const pluginInfoList);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfoList& list);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfoList* const pluginInfoList);
|
||||
|
||||
#endif // LXQTPLUGININFO_H
|
||||
|
||||
@ -31,17 +31,17 @@
|
||||
#include <QtAlgorithms>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
Power::Power(QObject *parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
mProviders.append(new CustomProvider(this));
|
||||
mProviders.append(new SystemdProvider(this));
|
||||
mProviders.append(new UPowerProvider(this));
|
||||
mProviders.append(new ConsoleKitProvider(this));
|
||||
mProviders.append(new SystemdProvider(this));
|
||||
mProviders.append(new LxSessionProvider(this));
|
||||
mProviders.append(new LxQtProvider(this));
|
||||
mProviders.append(new LXQtProvider(this));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
#include <QList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
|
||||
@ -103,5 +103,5 @@ private:
|
||||
QList<PowerProvider*> mProviders;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTPOWER_H
|
||||
|
||||
@ -47,7 +47,7 @@
|
||||
#define SYSTEMD_INTERFACE "org.freedesktop.login1.Manager"
|
||||
|
||||
#define LXQT_SERVICE "org.lxqt.session"
|
||||
#define LXQT_PATH "/LxQtSession"
|
||||
#define LXQT_PATH "/LXQtSession"
|
||||
#define LXQT_INTERFACE "org.lxqt.session"
|
||||
|
||||
#define LXSESSION_SERVICE "org.lxde.SessionManager"
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
#define PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
/************************************************
|
||||
Helper func
|
||||
@ -183,7 +183,7 @@ bool dbusGetProperty(const QString &service,
|
||||
if (!dbus.isValid())
|
||||
{
|
||||
qWarning() << "dbusGetProperty: QDBusInterface is invalid" << service << path << interface << property;
|
||||
// Notification::notify(QObject::tr("LxQt Power Manager"),
|
||||
// Notification::notify(QObject::tr("LXQt Power Manager"),
|
||||
// "lxqt-logo.png",
|
||||
// QObject::tr("Power Manager Error"),
|
||||
// QObject::tr("QDBusInterface is invalid")+ "\n\n" + service +" " + path +" " + interface +" " + property);
|
||||
@ -196,7 +196,7 @@ bool dbusGetProperty(const QString &service,
|
||||
if (!msg.errorName().isEmpty())
|
||||
{
|
||||
printDBusMsg(msg);
|
||||
// Notification::notify(QObject::tr("LxQt Power Manager"),
|
||||
// Notification::notify(QObject::tr("LXQt Power Manager"),
|
||||
// "lxqt-logo.png",
|
||||
// QObject::tr("Power Manager Error (Get Property)"),
|
||||
// msg.errorName() + "\n\n" + msg.errorMessage());
|
||||
@ -473,20 +473,20 @@ bool SystemdProvider::doAction(Power::Action action)
|
||||
|
||||
|
||||
/************************************************
|
||||
LxQtProvider
|
||||
LXQtProvider
|
||||
************************************************/
|
||||
LxQtProvider::LxQtProvider(QObject *parent):
|
||||
LXQtProvider::LXQtProvider(QObject *parent):
|
||||
PowerProvider(parent)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
LxQtProvider::~LxQtProvider()
|
||||
LXQtProvider::~LXQtProvider()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
bool LxQtProvider::canAction(Power::Action action) const
|
||||
bool LXQtProvider::canAction(Power::Action action) const
|
||||
{
|
||||
switch (action)
|
||||
{
|
||||
@ -501,7 +501,7 @@ bool LxQtProvider::canAction(Power::Action action) const
|
||||
}
|
||||
|
||||
|
||||
bool LxQtProvider::doAction(Power::Action action)
|
||||
bool LXQtProvider::doAction(Power::Action action)
|
||||
{
|
||||
QString command;
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@
|
||||
#include "lxqtpower.h"
|
||||
#include <QProcess> // for PID_T
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
|
||||
@ -101,12 +101,12 @@ public slots:
|
||||
};
|
||||
|
||||
|
||||
class LxQtProvider: public PowerProvider
|
||||
class LXQtProvider: public PowerProvider
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
LxQtProvider(QObject *parent = 0);
|
||||
~LxQtProvider();
|
||||
LXQtProvider(QObject *parent = 0);
|
||||
~LXQtProvider();
|
||||
bool canAction(Power::Action action) const;
|
||||
|
||||
public slots:
|
||||
@ -155,5 +155,5 @@ private:
|
||||
Settings mSettings;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTPOWER_PROVIDERS_H
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
#include "lxqtsettings.h"
|
||||
#include <XdgIcon>
|
||||
|
||||
namespace LxQt {
|
||||
namespace LXQt {
|
||||
|
||||
class LXQT_API MessageBox: public QMessageBox
|
||||
{
|
||||
@ -67,7 +67,7 @@ public:
|
||||
|
||||
static void warning(const QString& title, const QString& text)
|
||||
{
|
||||
QMessageBox::warning(parentWidget(), tr("LxQt Power Manager Error"), tr("Hibernate failed."));
|
||||
QMessageBox::warning(parentWidget(), tr("LXQt Power Manager Error"), tr("Hibernate failed."));
|
||||
}
|
||||
|
||||
|
||||
@ -149,7 +149,7 @@ QList<QAction*> PowerManager::availableActions()
|
||||
void PowerManager::suspend()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Suspend"),
|
||||
MessageBox::question(tr("LXQt Session Suspend"),
|
||||
tr("Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.")))
|
||||
{
|
||||
m_power->suspend();
|
||||
@ -159,7 +159,7 @@ void PowerManager::suspend()
|
||||
void PowerManager::hibernate()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Hibernate"),
|
||||
MessageBox::question(tr("LXQt Session Hibernate"),
|
||||
tr("Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.")))
|
||||
{
|
||||
m_power->hibernate();
|
||||
@ -169,7 +169,7 @@ void PowerManager::hibernate()
|
||||
void PowerManager::reboot()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Reboot"),
|
||||
MessageBox::question(tr("LXQt Session Reboot"),
|
||||
tr("Do you want to really restart your computer? All unsaved work will be lost...")))
|
||||
{
|
||||
m_power->reboot();
|
||||
@ -179,7 +179,7 @@ void PowerManager::reboot()
|
||||
void PowerManager::shutdown()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Shutdown"),
|
||||
MessageBox::question(tr("LXQt Session Shutdown"),
|
||||
tr("Do you want to really switch off your computer? All unsaved work will be lost...")))
|
||||
{
|
||||
m_power->shutdown();
|
||||
@ -189,7 +189,7 @@ void PowerManager::shutdown()
|
||||
void PowerManager::logout()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Logout"),
|
||||
MessageBox::question(tr("LXQt Session Logout"),
|
||||
tr("Do you want to really logout? All unsaved work will be lost...")))
|
||||
{
|
||||
m_power->logout();
|
||||
@ -198,12 +198,12 @@ void PowerManager::logout()
|
||||
|
||||
void PowerManager::hibernateFailed()
|
||||
{
|
||||
MessageBox::warning(tr("LxQt Power Manager Error"), tr("Hibernate failed."));
|
||||
MessageBox::warning(tr("LXQt Power Manager Error"), tr("Hibernate failed."));
|
||||
}
|
||||
|
||||
void PowerManager::suspendFailed()
|
||||
{
|
||||
MessageBox::warning(tr("LxQt Power Manager Error"), tr("Suspend failed."));
|
||||
MessageBox::warning(tr("LXQt Power Manager Error"), tr("Suspend failed."));
|
||||
}
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#include <QAction>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
class Power;
|
||||
|
||||
@ -60,7 +60,7 @@ public:
|
||||
bool skipWarning() const { return m_skipWarning; }
|
||||
|
||||
private:
|
||||
LxQt::Power * m_power;
|
||||
LXQt::Power * m_power;
|
||||
bool m_skipWarning;
|
||||
|
||||
private slots:
|
||||
@ -68,6 +68,6 @@ private slots:
|
||||
void suspendFailed();
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
|
||||
#endif // LXQTPOWERMANAGER_H
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
#include <QDir>
|
||||
#include <QFileInfo>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
LXQT_API bool ProgramFinder::programExists(const QString& command)
|
||||
{
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
#include <QStringList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
namespace ProgramFinder
|
||||
@ -57,5 +57,5 @@ namespace ProgramFinder
|
||||
LXQT_API QString programName(const QString& command);
|
||||
}
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTPROGRAMFINDER_H
|
||||
|
||||
@ -41,7 +41,7 @@
|
||||
|
||||
#include <QResizeEvent>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
RotatedWidget::RotatedWidget(QWidget &content, QWidget *parent, Qt::WindowFlags f)
|
||||
: QWidget(parent, f)
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
#include <QWidget>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API RotatedWidget: public QWidget
|
||||
@ -122,5 +122,5 @@ private:
|
||||
bool mTransferLeaveEvent;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTROTATEDWIDGET_H
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
#include <QMessageBox>
|
||||
#include <QAction>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
ScreenSaver::ScreenSaver(QObject * parent)
|
||||
: QObject(parent)
|
||||
@ -64,38 +64,16 @@ void ScreenSaver::xdgProcess_finished(int err, QProcess::ExitStatus status)
|
||||
{
|
||||
QWidget *p = qobject_cast<QWidget*>(parent());
|
||||
|
||||
if (status == QProcess::CrashExit)
|
||||
{
|
||||
QMessageBox::warning(p,
|
||||
tr("Screen Saver Activation Error"),
|
||||
tr("An error occurred starting screensaver. "
|
||||
"xdg-screensaver cannot be started due its crash.")
|
||||
);
|
||||
}
|
||||
else if (err == -2)
|
||||
{
|
||||
QMessageBox::warning(p,
|
||||
tr("Screen Saver Activation Error"),
|
||||
tr("An error occurred starting screensaver. "
|
||||
"xdg-screensaver is not installed correctly.")
|
||||
);
|
||||
}
|
||||
else if (err == -1)
|
||||
{
|
||||
QMessageBox::warning(p,
|
||||
tr("Screen Saver Activation Error"),
|
||||
tr("An error occurred starting screensaver. "
|
||||
"xdg-screensaver cannot be started.")
|
||||
);
|
||||
}
|
||||
else if (err == 0)
|
||||
// http://portland.freedesktop.org/xdg-utils-1.1.0-rc1/scripts/xdg-screensaver
|
||||
|
||||
if (err == QProcess::NormalExit) // QProcess::NormalExit = 0
|
||||
{
|
||||
emit activated();
|
||||
}
|
||||
else if (err == 1)
|
||||
{
|
||||
QMessageBox::warning(p,
|
||||
tr("Screen Saver Activation Error"),
|
||||
tr("Screen Saver Error"),
|
||||
tr("An error occurred starting screensaver. "
|
||||
"Syntax error in xdg-screensaver arguments.")
|
||||
);
|
||||
@ -122,7 +100,7 @@ void ScreenSaver::xdgProcess_finished(int err, QProcess::ExitStatus status)
|
||||
QMessageBox::warning(p,
|
||||
tr("Screen Saver Activation Error"),
|
||||
tr("An error occurred starting screensaver. "
|
||||
"Unknown error - undocumented return value from xdg-screensaver=%1.").arg(err)
|
||||
"Unknown error - undocumented return value from xdg-screensaver: %1.").arg(err)
|
||||
);
|
||||
}
|
||||
emit done();
|
||||
|
||||
@ -28,14 +28,12 @@
|
||||
#ifndef SCREENSAVER_H
|
||||
#define SCREENSAVER_H
|
||||
|
||||
#include <QProcess>
|
||||
#include <QObject>
|
||||
#include "lxqtglobals.h"
|
||||
#include <QObject>
|
||||
#include <QProcess>
|
||||
#include <QAction>
|
||||
|
||||
class QProcess;
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API ScreenSaver : public QObject
|
||||
@ -61,6 +59,6 @@ private slots:
|
||||
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif
|
||||
|
||||
|
||||
@ -39,9 +39,9 @@
|
||||
#include <XdgIcon>
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
class LxQt::SettingsPrivate
|
||||
class LXQt::SettingsPrivate
|
||||
{
|
||||
public:
|
||||
SettingsPrivate(Settings* parent):
|
||||
@ -60,11 +60,11 @@ private:
|
||||
};
|
||||
|
||||
|
||||
LxQtTheme* LxQtTheme::mInstance = 0;
|
||||
LXQtTheme* LXQtTheme::mInstance = 0;
|
||||
|
||||
class LxQt::LxQtThemeData: public QSharedData {
|
||||
class LXQt::LXQtThemeData: public QSharedData {
|
||||
public:
|
||||
LxQtThemeData(): mValid(false) {}
|
||||
LXQtThemeData(): mValid(false) {}
|
||||
QString loadQss(const QString& qssFile) const;
|
||||
QString findTheme(const QString &themeName);
|
||||
|
||||
@ -76,7 +76,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class LxQt::GlobalSettingsPrivate
|
||||
class LXQt::GlobalSettingsPrivate
|
||||
{
|
||||
public:
|
||||
GlobalSettingsPrivate(GlobalSettings *parent):
|
||||
@ -88,7 +88,7 @@ public:
|
||||
|
||||
GlobalSettings *mParent;
|
||||
QString mIconTheme;
|
||||
QString mLxQtTheme;
|
||||
QString mLXQtTheme;
|
||||
qlonglong mThemeUpdated;
|
||||
|
||||
};
|
||||
@ -337,8 +337,8 @@ void Settings::setLocalizedValue(const QString &key, const QVariant &value)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::LxQtTheme():
|
||||
d(new LxQtThemeData)
|
||||
LXQtTheme::LXQtTheme():
|
||||
d(new LXQtThemeData)
|
||||
{
|
||||
}
|
||||
|
||||
@ -346,8 +346,8 @@ LxQtTheme::LxQtTheme():
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::LxQtTheme(const QString &path):
|
||||
d(new LxQtThemeData)
|
||||
LXQtTheme::LXQtTheme(const QString &path):
|
||||
d(new LXQtThemeData)
|
||||
{
|
||||
if (path.isEmpty())
|
||||
return;
|
||||
@ -374,7 +374,7 @@ LxQtTheme::LxQtTheme(const QString &path):
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtThemeData::findTheme(const QString &themeName)
|
||||
QString LXQtThemeData::findTheme(const QString &themeName)
|
||||
{
|
||||
if (themeName.isEmpty())
|
||||
return "";
|
||||
@ -399,7 +399,7 @@ QString LxQtThemeData::findTheme(const QString &themeName)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::LxQtTheme(const LxQtTheme &other):
|
||||
LXQtTheme::LXQtTheme(const LXQtTheme &other):
|
||||
d(other.d)
|
||||
{
|
||||
}
|
||||
@ -408,7 +408,7 @@ LxQtTheme::LxQtTheme(const LxQtTheme &other):
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::~LxQtTheme()
|
||||
LXQtTheme::~LXQtTheme()
|
||||
{
|
||||
}
|
||||
|
||||
@ -416,7 +416,7 @@ LxQtTheme::~LxQtTheme()
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme& LxQtTheme::operator=(const LxQtTheme &other)
|
||||
LXQtTheme& LXQtTheme::operator=(const LXQtTheme &other)
|
||||
{
|
||||
d = other.d;
|
||||
return *this;
|
||||
@ -426,7 +426,7 @@ LxQtTheme& LxQtTheme::operator=(const LxQtTheme &other)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
bool LxQtTheme::isValid() const
|
||||
bool LXQtTheme::isValid() const
|
||||
{
|
||||
return d->mValid;
|
||||
}
|
||||
@ -435,7 +435,7 @@ bool LxQtTheme::isValid() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::name() const
|
||||
QString LXQtTheme::name() const
|
||||
{
|
||||
return d->mName;
|
||||
}
|
||||
@ -443,7 +443,7 @@ QString LxQtTheme::name() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::path() const
|
||||
QString LXQtTheme::path() const
|
||||
{
|
||||
return d->mPath;
|
||||
}
|
||||
@ -452,7 +452,7 @@ QString LxQtTheme::path() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::previewImage() const
|
||||
QString LXQtTheme::previewImage() const
|
||||
{
|
||||
return d->mPreviewImg;
|
||||
}
|
||||
@ -461,15 +461,9 @@ QString LxQtTheme::previewImage() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::qss(const QString& module) const
|
||||
QString LXQtTheme::qss(const QString& module) const
|
||||
{
|
||||
QString path = QString("%1/%2.qss").arg(d->mPath, module);
|
||||
|
||||
QString styleSheet;
|
||||
if (!path.isEmpty())
|
||||
styleSheet = d->loadQss(path);
|
||||
else
|
||||
qWarning() << QString("QSS file %1 cannot be found").arg(path);
|
||||
QString styleSheet = d->loadQss(QStringLiteral("%1/%2.qss").arg(d->mPath, module));
|
||||
|
||||
// Single/double click ...........................
|
||||
Settings s("desktop");
|
||||
@ -483,12 +477,11 @@ QString LxQtTheme::qss(const QString& module) const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtThemeData::loadQss(const QString& qssFile) const
|
||||
QString LXQtThemeData::loadQss(const QString& qssFile) const
|
||||
{
|
||||
QFile f(qssFile);
|
||||
if (! f.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||
{
|
||||
qWarning() << "Theme: Cannot open file for reading:" << qssFile;
|
||||
return QString();
|
||||
}
|
||||
|
||||
@ -509,7 +502,7 @@ QString LxQtThemeData::loadQss(const QString& qssFile) const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::desktopBackground(int screen) const
|
||||
QString LXQtTheme::desktopBackground(int screen) const
|
||||
{
|
||||
QString wallpaperCfgFileName = QString("%1/wallpaper.cfg").arg(d->mPath);
|
||||
|
||||
@ -537,13 +530,13 @@ QString LxQtTheme::desktopBackground(int screen) const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
const LxQtTheme &LxQtTheme::currentTheme()
|
||||
const LXQtTheme &LXQtTheme::currentTheme()
|
||||
{
|
||||
static LxQtTheme theme;
|
||||
static LXQtTheme theme;
|
||||
QString name = Settings::globalSettings()->value("theme").toString();
|
||||
if (theme.name() != name)
|
||||
{
|
||||
theme = LxQtTheme(name);
|
||||
theme = LXQtTheme(name);
|
||||
}
|
||||
return theme;
|
||||
}
|
||||
@ -552,9 +545,9 @@ const LxQtTheme &LxQtTheme::currentTheme()
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QList<LxQtTheme> LxQtTheme::allThemes()
|
||||
QList<LXQtTheme> LXQtTheme::allThemes()
|
||||
{
|
||||
QList<LxQtTheme> ret;
|
||||
QList<LXQtTheme> ret;
|
||||
QSet<QString> processed;
|
||||
|
||||
QStringList paths;
|
||||
@ -572,7 +565,7 @@ QList<LxQtTheme> LxQtTheme::allThemes()
|
||||
QDir(dir.absoluteFilePath()).exists("lxqt-panel.qss"))
|
||||
{
|
||||
processed << dir.fileName();
|
||||
ret << LxQtTheme(dir.absoluteFilePath());
|
||||
ret << LXQtTheme(dir.absoluteFilePath());
|
||||
}
|
||||
|
||||
}
|
||||
@ -689,9 +682,9 @@ void GlobalSettings::fileChanged()
|
||||
|
||||
QString rt = value("theme").toString();
|
||||
qlonglong themeUpdated = value("__theme_updated__").toLongLong();
|
||||
if ((d->mLxQtTheme != rt) || (d->mThemeUpdated != themeUpdated))
|
||||
if ((d->mLXQtTheme != rt) || (d->mThemeUpdated != themeUpdated))
|
||||
{
|
||||
d->mLxQtTheme = rt;
|
||||
d->mLXQtTheme = rt;
|
||||
emit lxqtThemeChanged();
|
||||
}
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
class QEvent;
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class SettingsPrivate;
|
||||
@ -100,25 +100,25 @@ private:
|
||||
};
|
||||
|
||||
|
||||
class LxQtThemeData;
|
||||
class LXQtThemeData;
|
||||
|
||||
/*! \brief QSS theme handling */
|
||||
class LXQT_API LxQtTheme
|
||||
class LXQT_API LXQtTheme
|
||||
{
|
||||
public:
|
||||
/// Constructs a null theme.
|
||||
LxQtTheme();
|
||||
LXQtTheme();
|
||||
|
||||
/*! Constructs an theme from the dir with the given path. If path not absolute
|
||||
(i.e. the theme name only) the relevant dir must be found relative to the
|
||||
$XDG_DATA_HOME + $XDG_DATA_DIRS directories. */
|
||||
LxQtTheme(const QString &path);
|
||||
LXQtTheme(const QString &path);
|
||||
|
||||
/// Constructs a copy of other. This is very fast.
|
||||
LxQtTheme(const LxQtTheme &other);
|
||||
LXQtTheme(const LXQtTheme &other);
|
||||
|
||||
LxQtTheme& operator=(const LxQtTheme &other);
|
||||
~LxQtTheme();
|
||||
LXQtTheme& operator=(const LXQtTheme &other);
|
||||
~LXQtTheme();
|
||||
|
||||
/// Returns the name of the theme.
|
||||
QString name() const;
|
||||
@ -145,22 +145,22 @@ public:
|
||||
QString desktopBackground(int screen=-1) const;
|
||||
|
||||
/// Returns the current lxqt theme.
|
||||
static const LxQtTheme ¤tTheme();
|
||||
static const LXQtTheme ¤tTheme();
|
||||
|
||||
/// Returns the all themes found in the system.
|
||||
static QList<LxQtTheme> allThemes();
|
||||
static QList<LXQtTheme> allThemes();
|
||||
|
||||
private:
|
||||
static LxQtTheme* mInstance;
|
||||
QSharedDataPointer<LxQtThemeData> d;
|
||||
static LXQtTheme* mInstance;
|
||||
QSharedDataPointer<LXQtThemeData> d;
|
||||
};
|
||||
|
||||
/*!
|
||||
A global pointer referring to the unique LxQtTheme object.
|
||||
It is equivalent to the pointer returned by the LxQtTheme::instance() function.
|
||||
A global pointer referring to the unique LXQtTheme object.
|
||||
It is equivalent to the pointer returned by the LXQtTheme::instance() function.
|
||||
Only one theme object can be created. !*/
|
||||
|
||||
#define lxqtTheme LxQtTheme::currentTheme()
|
||||
#define lxqtTheme LXQtTheme::currentTheme()
|
||||
|
||||
|
||||
class LXQT_API SettingsCache
|
||||
@ -202,5 +202,5 @@ private:
|
||||
Q_DECLARE_PRIVATE(GlobalSettings)
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTSETTINGS_H
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
#include <QWidget>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
SingleApplication::SingleApplication(int &argc, char **argv, StartOptions options)
|
||||
: Application(argc, argv),
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
|
||||
class QWidget;
|
||||
|
||||
namespace LxQt {
|
||||
namespace LXQt {
|
||||
|
||||
/*! \class SingleApplication
|
||||
* \brief The SingleApplication class provides an single instance Application.
|
||||
@ -45,14 +45,14 @@ namespace LxQt {
|
||||
* doesn't the second instance will quietly exit without activating the first
|
||||
* instance window. In any case only one instance is allowed.
|
||||
*
|
||||
* This classes depends uses D-Bus and KF5::WindowSystem
|
||||
* These classes depend on D-Bus and KF5::WindowSystem
|
||||
*
|
||||
* \code
|
||||
*
|
||||
* // Original code
|
||||
* int main(int argc, char **argv)
|
||||
* {
|
||||
* LxQt::Application app(argc, argv);
|
||||
* LXQt::Application app(argc, argv);
|
||||
*
|
||||
* MainWidget w;
|
||||
* w.show();
|
||||
@ -60,10 +60,10 @@ namespace LxQt {
|
||||
* return app.exec();
|
||||
* }
|
||||
*
|
||||
* // SingleApplication code
|
||||
* // Using the library
|
||||
* int main(int argc, char **argv)
|
||||
* {
|
||||
* LxQt::SingleApplication app(argc, argv);
|
||||
* LXQt::SingleApplication app(argc, argv);
|
||||
*
|
||||
* MainWidget w;
|
||||
* app.setActivationWindow(&w);
|
||||
@ -98,12 +98,12 @@ public:
|
||||
* It's the default
|
||||
*/
|
||||
ExitOnDBusFailure,
|
||||
/** Don't exit if the connection to the D-Bus session bud fails.*/
|
||||
/** Don't exit if the connection to the D-Bus session bus fails.*/
|
||||
NoExitOnDBusFailure
|
||||
};
|
||||
|
||||
/*!
|
||||
* \brief Construct a LxQt SingleApplication object.
|
||||
* \brief Construct a LXQt SingleApplication object.
|
||||
* \param argc standard argc as in QApplication
|
||||
* \param argv standard argv as in QApplication
|
||||
* \param options Control the on D-Bus failure application behaviour
|
||||
@ -151,8 +151,8 @@ private:
|
||||
#if defined(lxqtSingleApp)
|
||||
#undef lxqtSingleApp
|
||||
#endif
|
||||
#define lxqtSingleApp (static_cast<LxQt::SingleApplication *>(qApp))
|
||||
#define lxqtSingleApp (static_cast<LXQt::SingleApplication *>(qApp))
|
||||
|
||||
}; // namespace LxQt
|
||||
}; // namespace LXQt
|
||||
|
||||
#endif // LXQTSINGLEAPPLICATION_H
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
bool translate(const QString &name, const QString &owner = QString());
|
||||
/************************************************
|
||||
@ -24,7 +24,7 @@ QStringList *getSearchPaths()
|
||||
{
|
||||
searchPath = new QStringList();
|
||||
*searchPath << QString(LXQT_SHARE_TRANSLATIONS_DIR);
|
||||
*searchPath << XdgDirs::dataDirs(LXQT_RELATIVE_SHARE_TRANSLATIONS_DIR);
|
||||
*searchPath << XdgDirs::dataDirs(QLatin1Char('/') % LXQT_RELATIVE_SHARE_TRANSLATIONS_DIR);
|
||||
searchPath->removeDuplicates();
|
||||
}
|
||||
|
||||
@ -35,7 +35,7 @@ QStringList *getSearchPaths()
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QStringList LxQt::Translator::translationSearchPaths()
|
||||
QStringList LXQt::Translator::translationSearchPaths()
|
||||
{
|
||||
return *(getSearchPaths());
|
||||
}
|
||||
@ -114,7 +114,6 @@ bool Translator::translateApplication(const QString &applicationName)
|
||||
else
|
||||
{
|
||||
delete qtTranslator;
|
||||
qWarning("LxQt::Translator: Qt translations not found");
|
||||
}
|
||||
|
||||
if (!applicationName.isEmpty())
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#include <QStringList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
/**
|
||||
The Translator class provides internationalization support for application and librarioes.
|
||||
@ -68,5 +68,5 @@ public:
|
||||
static bool translatePlugin(const QString &pluginName, const QString& type);
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTTRANSLATOR_H
|
||||
|
||||
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -28,80 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -111,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,150 +31,136 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<location filename="../lxqtscreensaver.cpp" line="76"/>
|
||||
<source>Screen Saver Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="77"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="84"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="92"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="101"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="85"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="93"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<location filename="../lxqtscreensaver.cpp" line="102"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver: %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -287,47 +185,4 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ar">
|
||||
<TS version="2.1" language="ar">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">ضمُّ إضافاتٍ برمجيَّة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>ابحث:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">ابحث:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">ضمُّ إضافةٍ برمجيَّة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>إغلاق</translation>
|
||||
<translation type="vanished">إغلاق</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">نعم</translation>
|
||||
@ -106,18 +40,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">خطأٌ في إدارة الطَّاقة لنظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>سبات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>تعليق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>إعادة إقلاع</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>إطفاء</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>خروج</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>وضع جلسة نظام ريزر في حالة تعليق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>هل ترغب حقَّاً بتعليق الحاسب؟<p>تعليق الحاسب في وضعيَّة طاقةٍ أخفّ ولا يتم حفظ حالة النِّظام في حال انقطاع التَّيَّار.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>وضع جلسة نظام ريزر في حالة سبات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>هل ترغب حقَّاً بوضع الحاسب في حالة سبات؟<p>يتم وضع الحاسب في حالة سباتٍ مع وضعيَّة طاقةٍ أخفّ ويتم حفظ حالة النِّظام في حال انقطاع التَّيَّار.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>إعادة إقلاع جلسة نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>هل ترغب حقَّاً بإعادة تشغيل الحاسب؟ سيتم إضاعة كافَّة اﻷعمال التي لم يتمَُ حفظها..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>إطفاء نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>هل ترغب حقَّاً بإطفاء الحاسب؟ سيتم إضاعة كافَّة اﻷعمال التي لم يتمَُ حفظها..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>الخروج من جلسة نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>هل ترغب بالخروج حقَّاً؟ سيتم إضاعة كافَّة اﻷعمال التي لم يتمَُ حفظها..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>خطأٌ في إدارة الطَّاقة لنظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>فشل الانتقال إلى حالة السُّبات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>فشل الانتقال إلى حالة تعليق الحاسب</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>إقفال الشَّاشة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>خطأٌ في تشغيل حافظ الشَّاشة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>حدث خطأٌ في تشغيل حافظ الشَّاشة! ﻻ يمكن تشغيل حافظ شاشة سطح المكتب الرُّسوميِّ نظراً لانهياره..!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>حدث خطأٌ في تشغيل حافظ الشَّاشة! لم يتمُّ تثبيت حافظ شاشة سطح المكتب الرُّسوميِّ بالشَّكل الصَّحيح..!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>حدث خطأٌ في تشغيل حافظ الشَّاشة! ﻻ يمكن تشغيل حافظ شاشة سطح المكتب الرُّسوميِّ..!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>حدث خطأٌ في تشغيل حافظ الشَّاشة! هناك خطأٌ في رموز ضبط تعريف حافظ شاشة سطح المكتب الرُّسوميِّ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>حدث خطأٌ في تشغيل حافظ الشَّاشة! يرجى التَّأكد من أن حافظ شاشة سطح المكتب الرُّسوميِّ مثبَّتٌ ويعمل..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>حدث خطأٌ في تشغيل حافظ الشَّاشة! فشلٌ في أمر التَّفعيل! يرجى التَّأكد من أن حافظ شاشة سطح المكتب الرُّسوميِّ مثبَّتٌ ويعمل..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>حصل خطأٌ عند تشغيل حافظ الضَّاضة. خطأٌ غير معروفٍ - قيمةٌ جوابيَّةٌ غير موثَّقةٍ من حافظ شاشة إكس دي جي=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">مسح</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>نبذةٌ عن نظام ريزر</translation>
|
||||
<translation type="vanished">نبذةٌ عن نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>تبذةٌ عن</translation>
|
||||
<translation type="vanished">تبذةٌ عن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>معلوماتٌ تقنيَّةٌ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">معلوماتٌ تقنيَّةٌ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="cs">
|
||||
<TS version="2.1" language="cs">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Přidat přídavné moduly</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Hledat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Hledat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Přidat přídavný modul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Zavřít</translation>
|
||||
<translation type="vanished">Zavřít</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Verze: %1</translation>
|
||||
<translation type="vanished">Verze: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Pokročilé, snadno se používající a rychlé pracovní prostředí založené na technologiích Qt.</translation>
|
||||
<translation type="vanished">Pokročilé, snadno se používající a rychlé pracovní prostředí založené na technologiích Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Autorské právo: %1-%2 %3</translation>
|
||||
<translation type="vanished">Autorské právo: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Domovská stránka: %1</translation>
|
||||
<translation type="vanished">Domovská stránka: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licence: %1</translation>
|
||||
<translation type="vanished">Licence: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt je přeložen do mnoha jazyků díky práci překladatelských týmů z celého světa.</translation>
|
||||
<translation type="vanished">LXQt je přeložen do mnoha jazyků díky práci překladatelských týmů z celého světa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LxQt Desktop - Technické informace</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LXQt Desktop - Technické informace</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,18 +130,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Uspat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Restartovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Vypnout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Odhlásit se</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Opravdu chcete uspat svůj počítač?<p>Uvede počítač do stavu s nízkým odběrem elektrické energie. Stav systému není při ztrátě energie zachován.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Opravdu chcete zazimovat svůj počítač?<p>Uvede počítač do stavu s nízkým odběrem elektrické energie. Stav systému je při ztrátě energie zachován.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LxQtu znovu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LXQtu znovu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Opravdu chcete spustit svůj počítač znovu?<p>Všechna neuložená práce bude ztracena...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Opravdu chcete vypnout svůj počítač?<p>Všechna neuložená práce bude ztracena...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Opravdu se chcete odhlásit?<p>Všechna neuložená práce bude ztracena...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernace se nezdařila.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Uspání se nezdařilo.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Zamknout obrazovku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Chyba při zapínání šetřiče obrazovky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. xdg-screensavernelze spustit kvůli jeho pádu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. xdg-screensaver není nainstalován správně.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. xdg-screensaver nelze spustit.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. Chybná skladba v argumentech xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. Ujistěte se, že máte xdg-screensaver nainstalován a že běží.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. Krok "zapnutí" se nezdařil. Ujistěte se, že máte xdg-screensaver nainstalován a že běží.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Během spouštění spořiče obrazovky se vyskytla chyba. Neznámá chyba - nezdokumentovaná vrácená hodnota od xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Smazat</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>O prostředí LxQt</translation>
|
||||
<translation type="vanished">O prostředí LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>O</translation>
|
||||
<translation type="vanished">O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autoři</translation>
|
||||
<translation type="vanished">Autoři</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Poděkování</translation>
|
||||
<translation type="vanished">Poděkování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Překlady</translation>
|
||||
<translation type="vanished">Překlady</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Technické informace</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Technické informace</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="cs_CZ">
|
||||
<TS version="2.1" language="cs_CZ">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Přidat přídavné moduly</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Hledat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Hledat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Přidat přídavný modul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Zavřít</translation>
|
||||
<translation type="vanished">Zavřít</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Verze: %1</translation>
|
||||
<translation type="vanished">Verze: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Pokročilé, snadno se používající a rychlé pracovní prostředí založené na technologiích Qt.</translation>
|
||||
<translation type="vanished">Pokročilé, snadno se používající a rychlé pracovní prostředí založené na technologiích Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Autorské právo: %1-%2 %3</translation>
|
||||
<translation type="vanished">Autorské právo: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Domovská stránka: %1</translation>
|
||||
<translation type="vanished">Domovská stránka: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licence: %1</translation>
|
||||
<translation type="vanished">Licence: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt je přeložen do mnoha jazyků díky práci překladatelských týmů z celého světa.</translation>
|
||||
<translation type="vanished">LXQt je přeložen do mnoha jazyků díky práci překladatelských týmů z celého světa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LxQt Desktop - Technické informace</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LXQt Desktop - Technické informace</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,18 +130,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Uspat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Restartovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Vypnout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Odhlásit se</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Opravdu chcete uspat svůj počítač?<p>Uvede počítač do stavu s nízkým odběrem elektrické energie. Stav systému není při ztrátě energie zachován.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Opravdu chcete zazimovat svůj počítač?<p>Uvede počítač do stavu s nízkým odběrem elektrické energie. Stav systému je při ztrátě energie zachován.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LxQtu znovu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LXQtu znovu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Opravdu chcete spustit svůj počítač znovu?<p>Všechna neuložená práce bude ztracena...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Opravdu chcete vypnout svůj počítač?<p>Všechna neuložená práce bude ztracena...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LxQtu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Opravdu se chcete odhlásit?<p>Všechna neuložená práce bude ztracena...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernace se nezdařila.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Uspání se nezdařilo.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Zamknout obrazovku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Chyba při zapínání šetřiče obrazovky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. xdg-screensavernelze spustit kvůli jeho pádu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. xdg-screensaver není nainstalován správně.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. xdg-screensaver nelze spustit.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. Chybná skladba v argumentech xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. Ujistěte se, že máte xdg-screensaver nainstalován a že běží.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Při spouštění šetřiče obrazovky se vyskytla chyba. Krok "zapnutí" se nezdařil. Ujistěte se, že máte xdg-screensaver nainstalován a že běží.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Během spouštění spořiče obrazovky se vyskytla chyba. Neznámá chyba - nezdokumentovaná vrácená hodnota od xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Smazat</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>O prostředí LxQt</translation>
|
||||
<translation type="vanished">O prostředí LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>O</translation>
|
||||
<translation type="vanished">O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autoři</translation>
|
||||
<translation type="vanished">Autoři</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Poděkování</translation>
|
||||
<translation type="vanished">Poděkování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Překlady</translation>
|
||||
<translation type="vanished">Překlady</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Technické informace</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Technické informace</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="da">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1" language="da">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -28,80 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -111,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +31,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -287,47 +199,4 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="da_DK">
|
||||
<TS version="2.1" language="da_DK">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Tilføj plugins</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Søg:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Søg:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Tilføj plugin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Afslut</translation>
|
||||
<translation type="vanished">Afslut</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Version: %1</translation>
|
||||
<translation type="vanished">Version: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Avanceret, nem at bruge, hurtigt skrivebordsmiljø baseret på Qt teknologier.</translation>
|
||||
<translation type="vanished">Avanceret, nem at bruge, hurtigt skrivebordsmiljø baseret på Qt teknologier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Hjemmeside: %1</translation>
|
||||
<translation type="vanished">Hjemmeside: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licens: %1</translation>
|
||||
<translation type="vanished">Licens: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt er oversat til mange sprog takket være oversættere fra hele verden.</translation>
|
||||
<translation type="vanished">LXQt er oversat til mange sprog takket være oversættere fra hele verden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">Nej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt Desktop Værktøjskasse - Teknisk Information</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt Desktop Værktøjskasse - Teknisk Information</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Strømstyringsfejl</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Strømstyringsfejl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Dvale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Slumre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Genstart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Luk ned</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Log ud</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Session Slumre</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Session Slumre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Vil du virkelig sætte din computer i slumretilstand?<p>Slumretilstand sætter computeren i energispare tilstand. Systemtilstanden mistes hvis strømmen forsvinder.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Session Dvale</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Session Dvale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Vil du virkelig sætte din computer i dvaletilstand?<p>Dvaletilstand sætter computeren i energispare tilstand. Systemtilstanden bibeholdes hvis strømmen forsvinder.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Session Genstart</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Session Genstart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Vil du virkelig genstarte din computer? Alt arbejde der ikke er blevet gemt, vil gå tabt...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Session Luk Ned</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Session Luk Ned</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Vil du virkelig slukke din computer? Alt arbejde der ikke er blevet gemt, vil gå tabt...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Session Log Ud</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Session Log Ud</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Vil du virkelig logge ud? Alt arbejde der ikke er blevet gemt, vil gå tabt...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Strømstyringsfejl</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Strømstyringsfejl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Dvaletilstand mislykkedes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Slumretilstand mislykkedes.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Lås Skærm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Fejl ved aktivering af pauseskærm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Fejl ved start af screensaver. xdg-pauseskærm kan ikke starte på grund af nedbrud.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Fejl ved start af screensaver. xdg-pauseskærm er ikke korrekt installeret.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Fejl ved start af screensaver. xdg-pauseskærm kan ikke starte.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Fejl ved start af screensaver. Syntaksfejl i argumenter til xdg-pauseskærm.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Fejl ved start af screensaver. Sørg for at du har xscreensaver installeret og kørende.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Fejl ved start af screensaver. Handling 'aktivere' mislykkedes. Sørg for at du har xscreensaver installeret og kørende.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>En fejl opstod ved start af pauseskærm. Ukendt fejl - udokumenteret returværdi sendt fra xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Rens</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> Om LXQt</translation>
|
||||
<translation type="vanished"> Om LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Omkring</translation>
|
||||
<translation type="vanished">Omkring</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Forfattere</translation>
|
||||
<translation type="vanished">Forfattere</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Tak</translation>
|
||||
<translation type="vanished">Tak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Oversættelser</translation>
|
||||
<translation type="vanished">Oversættelser</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Teknisk Information</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Teknisk Information</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,32 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<source>Add plugins</source>
|
||||
<translation type="obsolete">Plugins hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Suchen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation>Element hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Plugin hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Schließen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -36,88 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Version: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Fortgeschrittene, leicht zu bedienende und schnelle Desktopumgebung, basierend auf Qt-Technologien.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>LXQt wäre nicht ohne das <a %1>Razor-qt</a>-Projekt und seine vielen Mitwirkenden möglich gewesen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Urheberrecht: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Internetseite: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Lizenz: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>LXQt wird vom <a %1>LXQt Team und Mitwirkenden</a> entwickelt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>Wenn Sie an der Mitarbeit in unserem Entwicklungsteam interessiert sind, <a %1>treten Sie uns bei</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation>Besonderen Dank an:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt wird dank der Arbeit unseres über die ganze Welt verteilten Übersetzungsteams in viele Sprachen übersetzt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="obsolete">Nein</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation>(%1 aktiv)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Fehler der LXQt-Energieverwaltung</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -127,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,151 +31,137 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Tiefschlaf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Bereitschaft</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Neustart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Herunterfahren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Abmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Bereitschaft</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Möchten Sie ihren Computer in Bereitschaft versetzen?<p>Dies versetzt ihren Computer in einen Energiesparmodus. Der Systemzustand geht verloren, wenn die Energiezufuhr abbricht.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LXQT Tiefschlaf</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Tiefschlaf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Möchten Sie ihren Computer in Tiefschlaf versetzen?<p>Dies versetzt ihren Computer in einen Energiesparmodus. Der Systemzustand bleibt erhalten, wenn die Energiezufuhr abbricht.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Neustart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Möchten Sie ihren Computer wirklich neustarten? Alle ungespeicherten Arbeiten gehen verloren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Herunterfahren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Möchten Sie ihren Computer wirklich herunterfahren? Alle ungespeicherten Arbeiten gehen verloren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Abmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Möchten Sie sich wirklich abmelden? Alle ungespeicherten Arbeiten gehen verloren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Fehler der LXQt-Energieverwaltung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Tiefschlaf fehlgeschlagen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Bereitschaft fehlgeschlagen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Bildschirm sperren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Fehler beim Aktivieren des Bildschirmschoners</translation>
|
||||
<location filename="../lxqtscreensaver.cpp" line="76"/>
|
||||
<source>Screen Saver Error</source>
|
||||
<translation>Bildschirmschoner-Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. xdg-screensaver kann wegen seines Absturzes nicht gestartet werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. xdg-screensaver ist nicht korrekt installiert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. xdg-screensaver kann nicht gestartet werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="77"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. Syntaxfehler in den Parametern für xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="84"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="92"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="101"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Fehler beim Aktivieren des Bildschirmschoners</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="85"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. Bitte stellen Sie sicher, dass xscreensaver installiert ist und funktioniert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="93"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. Aktion 'aktivieren' fehlgeschlagen. Bitte stellen Sie sicher, dass xscreensaver installiert ist und funktioniert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. Unbekannter Fehler - ein undokumentierter Rückgabewert wurde von xdg-screensaver ausgegeben=%1.</translation>
|
||||
<location filename="../lxqtscreensaver.cpp" line="102"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver: %1.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. Unbekannter Fehler - ein undokumentierter Rückgabewert wurde von xdg-screensaver ausgegeben: %1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -303,47 +185,4 @@
|
||||
<translation>Fehler der Energieverwaltung (D-BUS-Aufruf)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Über LxQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Über</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Programmierer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Danksagungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Übersetzungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Technische Hinweise</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>In Zwischenablage kopieren</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,421 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de_DE">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<source>Add plugins</source>
|
||||
<translation type="obsolete">Plugins hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Suchen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Plugin hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Schließen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
<location filename="../configdialog/lxqtconfigdialog.ui" line="14"/>
|
||||
<source>Dialog</source>
|
||||
<translation>Dialog</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Version: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Moderne, benutzerfreundliche und schnelle Arbeitsumgebung aufbauend auf Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Homepage: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Lizenz: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt ist in vielen Sprachen verfügbar dank der Arbeit von Übersetzung-Teams aus der ganzen Welt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="obsolete">Nein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt Desktop Toolbox - Technische Info</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
<translation type="obsolete">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qt</source>
|
||||
<translation type="obsolete">Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Debug Build</source>
|
||||
<translation type="obsolete">Debug Build</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>System Configuration</source>
|
||||
<translation type="obsolete">System Konfiguration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Share Directory</source>
|
||||
<translation type="obsolete">Freigegebenes Verzeichnis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="obsolete">Übersetzung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>User Directories</b></source>
|
||||
<translation type="obsolete"><b>Benutzer Verzeichnisse</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Data Home</source>
|
||||
<translation type="obsolete">Xdg Daten Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Config Home</source>
|
||||
<translation type="obsolete">Xdg Konfigurations Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Data Dirs</source>
|
||||
<translation type="obsolete">Xdg Daten Verzeichnisse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Cache Home</source>
|
||||
<translation type="obsolete">Xdg Cache Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Runtime Home</source>
|
||||
<translation type="obsolete">Xdg Laufzeit Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Autostart Dirs</source>
|
||||
<translation type="obsolete">Xdg Autostart Verzeichnisse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Xdg Autostart Home</source>
|
||||
<translation type="obsolete">Xdg Autostart Pfad</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Energieverwalter Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished">Ruhestand fehlgeschlagen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
<translation>Benachrichtigungs Rückgriff</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Ruhezustand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Energie sparen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Neustart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Herunterfahren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<source>Logout</source>
|
||||
<translation>Abmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Sitzung Energie sparen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Wollen sie wirklich Ihren Computer in den Energiesparmodus schicken?<p>Schickt den Computer in einen Energiesparmodus. Der Zustand des Systems geht verloren, wenn die Energieversorgung ausfällt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Sitzung Ruhestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Wollen Sie Ihren Computer wirklich in den Ruhestand setzten?<p>Schickt den Computer in einen Ernergiesparmodus. Der Stand des Systems ist gesichert, falls die Energieversorgung ausfällt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Sitzung Neustart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Wollten Sie Ihren Computer wirklich neustarten? Alle ungespeicherten Arbeiten gehen verloren ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Sitzung Herunterfahren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Wollten Sie Ihren Computer wirklich herunterfahren? Alle ungespeicherten Arbeiten gehen verloren ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Sitzung Abmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Wollten Sie sich wirklich abmelden? Alle ungespeicherten Arbeiten gehen verloren ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Energieverwalter Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Ruhestand fehlgeschlagen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Energiesparmodus fehlgeschlagen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Bildschirm sperren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Bildschirmschoner Aktivierungs Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Es ist ein Fehler beim Starten des Bildschirmschoners aufgetreten. xdg-screensaver kann wegen einem Crash nicht gestartet werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Es ist ein Fehler beim Starten des Bildschirmschoners aufgetreten. xgd-screensaver ist nicht korrekt installiert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Es ist ein Fehler beim Starten des Bildschirmschoners aufgetreten. xdg-screensaver kann nicht gestartet werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Es ist ein Fehler beim Startem des Bildschirmschoners aufgetreten. Syntaxfehler in Argumenten von xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Es ist ein Fehler beim Starten des Bildschirmschoners aufgetreten. Stelle sicher, dass xscreensaver installiert ist und ausgeführt wird.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Es ist ein Fehler beim Starten des Bildschirmschoners aufgetreten. Die Aktion 'aktivieren' schlug fehl. Stelle sicher, dass xscreensaver installiert ist und ausgeführt wird.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Beim Starten des Bildschirmschoners ist ein Fehler aufgetreten. Unbekannter Fehler - undokumentierter Rückgabewert von xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Säubern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation type="obsolete">Kein</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="91"/>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="141"/>
|
||||
<source>Power Manager Error</source>
|
||||
<translation>Energie Manager Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="92"/>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="142"/>
|
||||
<source>QDBusInterface is invalid</source>
|
||||
<translation>QDBusInterface ist ungültig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="106"/>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="156"/>
|
||||
<source>Power Manager Error (D-BUS call)</source>
|
||||
<translation>Power Manager-Fehler (D-BUS call)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Über LxQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Über</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Authoren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Danke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Übersetzung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Technische Informationen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
@ -1,28 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="el_GR">
|
||||
<TS version="2.1" language="el">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<source>Add plugins</source>
|
||||
<translation type="obsolete">Προσθήκη επεκτάσεων</translation>
|
||||
<translation type="obsolete">Προσθήκη πρόσθετων</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Αναζήτηση:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Προσθήκη επέκτασης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Κλείσιμο</translation>
|
||||
</message>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Έκδοση: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Προηγμένη, εύκολη στη χρήση και γρήγορη επιφάνεια εργασίας με βάση τις τεχνολογίες Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Πνευματικά δικαιώματα: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Αρχική σελίδα: %1</translation>
|
||||
<translation>Ιστοσελίδα: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Άδεια χρήσης: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt έχει μεταφραστεί σε πολλές γλώσσες χάρη στο έργο των μεταφραστικών ομάδων σε όλο τον κόσμο.</translation>
|
||||
<translation>Το LXQt έχει μεταφραστεί σε πολλές γλώσσες χάρη στο έργο των μεταφραστικών ομάδων ανά την υφήλιο.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">Όχι</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Επιφάνεια εργασίας LXQt - Τεχνικές πληροφορίες</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,187 +130,179 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Σφάλμα διαχείρισης ενέργειας LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Σφάλμα διαχείρισης ενέργειας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished">Αποτυχία αδρανοποίησης.</translation>
|
||||
<translation>Αποτυχία νάρκωσης.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
<translation>Εφεδρικές ειδοποιήσεις</translation>
|
||||
<translation>Ανακατεύθυνση ειδοποιήσεων</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Αδρανοποίηση</translation>
|
||||
<translation>Νάρκη</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Αναστολή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Επανεκκίνηση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Τερματισμός</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Αποσύνδεση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Αναστολή συνεδρίας LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Αναστολή της συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Θέλετε πραγματικά να γίνει αναστολή του υπολογιστή;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος δε διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
<translation>Θέλετε πραγματικά να γίνει αναστολή του υπολογιστή;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος δεν διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Νάρκωση της συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Κατάσταση αδρανοποίησης LxQt</translation>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Θέλετε πραγματικά να τεθεί σε νάρκη ο υπολογιστής;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Θέλετε πραγματικά να γίνει αδρανοποίηση του υπολογιστή;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Επανεκκίνηση συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Επανεκκίνηση συνεδρίας LxQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Θέλετε πραγματικά να επανεκκινήσετε τον υπολογιστή; Όλες οι μη αποθηκευμένες εργασίες σας θα χαθούν...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Τερματισμός συνεδρίας LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Τερματισμός συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Θέλετε πραγματικά να τερματίσετε τον υπολογιστή; Όλες οι μη αποθηκευμένες εργασίες σας θα χαθούν...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Αποσύνδεση συνεδρίας LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Αποσύνδεση της συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Θέλετε πραγματικά να αποσυνδεθείτε; Όλες οι μη αποθηκευμένες εργασίες σας θα χαθούν...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Σφάλμα διαχείρισης ενέργειας LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Σφάλμα διαχείρισης της ενέργειας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Αποτυχία αδρανοποίησης.</translation>
|
||||
<translation>Αποτυχία νάρκωσης.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Αποτυχία αναστολής.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Κλείδωμα οθόνης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Σφάλμα ενεργοποίησης προστασίας οθόνης</translation>
|
||||
<translation>Σφάλμα ενεργοποίησης της προστασίας οθόνης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία εκκίνησης προστασίας οθόνης xdg λόγω κατάρευσης.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία εκκίνησης της προστασίας οθόνης xdg λόγω κατάρρευσης.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Η προστασία οθόνης xdg δεν είναι εγκατεστημένη σωστά.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία έναρξης προστασίας οθόνης xdg.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία έναρξης της προστασίας οθόνης xdg.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Σφάλμα σύνταξης παραμέτρων προστασίας οθόνης xdg.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Σφάλμα σύνταξης των παραμέτρων της προστασίας οθόνης xdg.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Διασφαλίστε ότι η προστασία οθόνης είναι εγκατεστημένη και ότι εκτελείται.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασία οθόνης. Αποτυχία ενέργειας "ενεργοποίηση". Διασφαλίστε ότι η προστασία οθόνης είναι εγκατεστημένη και ότι εκτελείται.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασία οθόνης. Αποτυχία ενέργειας «ενεργοποίηση». Διασφαλίστε ότι η προστασία οθόνης είναι εγκατεστημένη και ότι εκτελείται.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Άγνωστο σφάλμα - μη τεκμηριωμένη τιμή επιστροφής από την προστασία οθόνης=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Εκκαθάριση</translation>
|
||||
<translation type="obsolete">Καθαρισμός</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>None</source>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Σχετικά με το LxQt</translation>
|
||||
<translation> Σχετικά με το LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Σχετικά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Δημιουργοί</translation>
|
||||
<translation>Συγγραφείς</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Ευχαριστίες</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Μεταφράσεις</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Τεχνικές πληροφορίες</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="eo">
|
||||
<TS version="2.1" language="eo">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Aldoni kromprogramojn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Serĉi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Serĉi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Aldoni kromprogramon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Fermi</translation>
|
||||
<translation type="vanished">Fermi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Jes</translation>
|
||||
@ -106,18 +40,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Pasivumigi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Prokrasti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Restartigi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Elŝalti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Elsaluti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Pasivumigo fiaskis.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Prokrasto fiaskis.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Ŝlosi ekranon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Vakigi</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> Pri LxQto</translation>
|
||||
<translation type="vanished"> Pri LXQto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Pri</translation>
|
||||
<translation type="vanished">Pri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Teknikaj informoj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Teknikaj informoj</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="es">
|
||||
<TS version="2.1" language="es">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Añadir extensiones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Buscar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Buscar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Añadir extensión</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Cerrar</translation>
|
||||
<translation type="vanished">Cerrar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versión %1</translation>
|
||||
<translation type="vanished">Versión %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Avanzado, fácil de usar y rápido entorno de escritorio basado en tecnologías Qt.</translation>
|
||||
<translation type="vanished">Avanzado, fácil de usar y rápido entorno de escritorio basado en tecnologías Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Página principal: %1</translation>
|
||||
<translation type="vanished">Página principal: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licencia: %1</translation>
|
||||
<translation type="vanished">Licencia: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt es traducido a muchos idiomas gracias a la labor de los equipos de traducción en todo el mundo.</translation>
|
||||
<translation type="vanished">LXQt es traducido a muchos idiomas gracias a la labor de los equipos de traducción en todo el mundo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Caja de herramientas del Escritorio LXQt - Información técnica</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error del gestor de energía de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error del gestor de energía de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspender</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Apagar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Cerrar sesión</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspender sesión LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspender sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>¿Realmente desdea suspender su PC?<p>Suspende la PC a un estado de bajo consumo. El estado del sistema no se preserva si se agota la energía.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernar la sesión LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>¿Realmente desea hibernar su PC?<p>Hiberna la PC a un estado de bajo consumo. El estado del sistema se preserva si se agota la energía.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reiniciar la sesión LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reiniciar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>¿Realmente desea reiniciar su PC? Todo el trabajo sin guardar se perderá...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Apagar la sesión LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Apagar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>¿Realmente desea apagar su PC? Todo el trabajo sin guardar se perderá...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Cerrar la sesión LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Cerrar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>¿Realmente desea cerrar la sesión? Todo el trabajo sin guardar se perderá...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Error del gestor de energía de LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Error del gestor de energía de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernación fallida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Suspensión fallida.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Bloquear pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Error de activación del protector de pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Ocurrió un error al iniciar el protector de pantalla. xdg-screensaver no puede iniciar debido a un error.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Ocurrió un error al iniciar el protector de pantalla. xdg-screensaver no está correctamente instalado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Ocurrió un error al iniciar el protector de pantalla. xdg-screensaver no puede iniciar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Ocurrió un error al iniciar el protector de pantalla. Error de sintaxis en los argumentos de xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ocurrió un error al iniciar el protector de pantalla. Asegúrese de tener xdg-screensaver instalado y ejecutándose.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ocurrió un error al iniciar el protector de pantalla. La acción 'activate' falló. Asegúrese de tener xdg-screensaver instalado y ejecutándose.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Ocurrio un error al inicio el protector de pantalla. Error desconocido - valor de retorno de xdg-screensaver no documentado=%1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpiar</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Acerca de LxQt</translation>
|
||||
<translation type="vanished">Acerca de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Acerca</translation>
|
||||
<translation type="vanished">Acerca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autores</translation>
|
||||
<translation type="vanished">Autores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Gracias</translation>
|
||||
<translation type="vanished">Gracias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Traducciones</translation>
|
||||
<translation type="vanished">Traducciones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Información Técnica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Información Técnica</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="es_VE">
|
||||
<TS version="2.1" language="es_VE">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Agregar plugins</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Buscar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Buscar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Agregar plugin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Cerrar</translation>
|
||||
<translation type="vanished">Cerrar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Version: %1</translation>
|
||||
<translation type="vanished">Version: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Avanzado, facil de usar, rapido entorno de escritorio basado en tecnologia QT.</translation>
|
||||
<translation type="vanished">Avanzado, facil de usar, rapido entorno de escritorio basado en tecnologia QT.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>pagina web: %1</translation>
|
||||
<translation type="vanished">pagina web: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licencia: %1</translation>
|
||||
<translation type="vanished">Licencia: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt es traducido en muchos lenguajes gracias al trabajo de traductores en todo el mundo.</translation>
|
||||
<translation type="vanished">LXQt es traducido en muchos lenguajes gracias al trabajo de traductores en todo el mundo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Utilidad de Escritorio LXQt - Informacion</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error en Gestion de energia de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error en Gestion de energia de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspender</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Apagar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Salirse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspension del sistema por LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspension del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Quiere usted realmente suspender su computador?<p>Suspendera el computador en un estado de baja energia. El estado del sistema operativo no se preservara ante la perdida o caida de energia.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernacion del sistema por LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernacion del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Quiere usted realmente hibernar su computador?<p>Hibernara el computador en un estado de baja energia y lo guardara en el disco. El estado del sistema si se preservara ante la perdida o caida de energia.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reinicio del sistema por LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reinicio del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Quiere usted realmente reiniciar su computador? Todo el trabajo realizado se perdera si no lo ha guardado, dado que se cerrara...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Apagado del sistema por LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Apagado del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Quiere usted realmente apagar su computador?<p> Todo el trabajo realizado se perdera si no lo ha guardado, dado que se apagara...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Cierre de la sesion por LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Cierre de la sesion por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Quiere realmente cerar su sesion? Todo el trabajo realizado se perdera si no lo ha guardado, dado que se cerrara...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Error en Gestion de energia de LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Error en Gestion de energia de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernacion ha fallado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Suspensión ha fallado.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Bloquear Pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Activacion de salvapantallas erronea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Un error ha ocurrido al iniciar el salvapantallas. xdg-screensaver no puede iniciarlo debido a un fallo grave.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Un error ha ocurridoal iniciar el salvapantallas. xdg-screensaver no esta instalado correctamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Un error ha ocurridoal iniciar el salvapantallas. xdg-screensaver no puede iniciarse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Un error ha ocurridoal iniciar el salvapantallas. Error en argumentos dados a xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Un error ha ocurridoal iniciar el salvapantallas. Asegurate tengas el xscreensaver instalado y ejecutandose.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Un error ha ocurridoal iniciar el salvapantallas. Accion 'activate' fallida. Asegurate tengas xscreensaver instalado y corriendo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Un error ocurrio iniciando el salvapantallas. Desconocido - valor retornado indocumentado desde xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpiar</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Acerca de LxQt</translation>
|
||||
<translation type="vanished">Acerca de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Acerca</translation>
|
||||
<translation type="vanished">Acerca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autores</translation>
|
||||
<translation type="vanished">Autores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Agradecimientos</translation>
|
||||
<translation type="vanished">Agradecimientos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Traducciones</translation>
|
||||
<translation type="vanished">Traducciones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informacion</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Informacion</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="eu">
|
||||
<TS version="2.1" language="eu">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Gehitu pluginak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Bilatu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Bilatu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Gehitu plugina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Itxi</translation>
|
||||
<translation type="vanished">Itxi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Bertsioa: %1</translation>
|
||||
<translation type="vanished">Bertsioa: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Qt teknologietan oinarritutako mahaigain-ingurune aurreratu, erabilerraz eta azkarra.</translation>
|
||||
<translation type="vanished">Qt teknologietan oinarritutako mahaigain-ingurune aurreratu, erabilerraz eta azkarra.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright-a: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright-a: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Webgunea: %1</translation>
|
||||
<translation type="vanished">Webgunea: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Lizentzia: %1</translation>
|
||||
<translation type="vanished">Lizentzia: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt hainbat hizkuntzetara itzulita dago mundu osoko itzulpen-taldeen lanari esker.</translation>
|
||||
<translation type="vanished">LXQt hainbat hizkuntzetara itzulita dago mundu osoko itzulpen-taldeen lanari esker.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">Ez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt mahaigainaren tresna-jokoa - Informazio teknikoa</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt mahaigainaren tresna-jokoa - Informazio teknikoa</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt energia-kudeatzailearen errorea</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt energia-kudeatzailearen errorea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Eseki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Berrabiarazi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Itzali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Amaitu saioa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt saioa eseki</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt saioa eseki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Ziur zaude ordenagailua eseki nahi duzula?<p>Energia baxuko egoera batetara esekitzen du ordenagailua. Sistemaren egoera ez da mantentzen korrontea eteten bada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt saioa hibernatu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt saioa hibernatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Ziur zaude ordenagailua hibernatu nahi duzula?<p>Energia baxuko egoera batetara hibernatzen du ordenagailua. Sistemaren egoera mantentzen da korrontea eteten bada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt saioa berrabiarazi</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt saioa berrabiarazi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ziur zaude ordenagailua berrabiarazi nahi duzula? Gorde gabeko lan guztiak galduko dira...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt saioa itzali</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt saioa itzali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ziur zaude ordenagailua itzali nahi duzula? Gorde gabeko lan guztiak galduko dira...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt saioa amaitu</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt saioa amaitu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Ziur zaude saioa amaitu nahi duzula? Gorde gabeko lan guztiak galduko dira...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt energia-kudeatzailearen errorea</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt energia-kudeatzailearen errorea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernatzeak huts egin du.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Esekitzeak huts egin du.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Blokeatu pantaila</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Pantaila-babeslearen aktibatze-errorea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. Ezin da xdg-screensaver abiarazi kraskatzea dela eta.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. xdg-screensaver ez dago behar bezala instalatuta.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. Ezin da xdg-screensaver abiarazi. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. Sintaxi-errore bat dago xdg-screensaver-en argumentuetan.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. Ziurtatu xdg-screensaver instalatuta eta martxan dagoela. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. 'Aktibatu' ekintzak huts egin du. Ziurtatu xdg-screensaver instalatuta eta martxan dagoela. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Errore bat gertatu da pantaila-babeslea abiaraztean. Errore ezezaguna - dokumentatu gabeko balioa itzuli du xdg-screensaver-ek: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Garbitu</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>LxQt-i buruz</translation>
|
||||
<translation type="vanished">LXQt-i buruz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Honi buruz</translation>
|
||||
<translation type="vanished">Honi buruz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Egileak</translation>
|
||||
<translation type="vanished">Egileak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Eskerrak</translation>
|
||||
<translation type="vanished">Eskerrak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Itzulpenak</translation>
|
||||
<translation type="vanished">Itzulpenak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informazio teknikoa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Informazio teknikoa</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="fi">
|
||||
<TS version="2.1" language="fi">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Lisää liitännäisiä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Etsi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Etsi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Lisää liitännäinen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Sulje</translation>
|
||||
<translation type="vanished">Sulje</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,25 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versio: %1</translation>
|
||||
<translation type="vanished">Versio: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Tekijänoikeus: %1-%2 %3</translation>
|
||||
<translation type="vanished">Tekijänoikeus: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Verkkosivusto: %1</translation>
|
||||
<translation type="vanished">Verkkosivusto: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Lisenssi: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Lisenssi: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -119,19 +72,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQtin virranhallintavirhe</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQtin virranhallintavirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -140,7 +85,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -148,155 +93,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Lepotila</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Valmiustila</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Käynnistä uudelleen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Sammuta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Kirjaudu ulos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Haluatko varmasti käynnistää tietokoneen uudelleen? Kaikki tallentamaton tieto menetetään...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt-istunnon sammutus</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt-istunnon sammutus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Haluatko varmasti sammuttaa tietokoneen? Kaikki tallentamaton tieto menetetään...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt-istunnon uloskirjaus</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt-istunnon uloskirjaus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Haluatko varmasti kirjautua ulos? Kaikki tallentamaton tieto menetetään...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQtin virranhallintavirhe</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQtin virranhallintavirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Lepotilaan siirtyminen epäonnistui.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Valmiustilaan siirtyminen epäonnistui.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Lukitse näyttö</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Näytönsäästäjän käynnistysvirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Näytönsäästäjää käynnistäessä ilmeni virhe. Näytönsäästäjää xdg-screensaver ei voi käynnistää, koska se kaatui.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Näytönsäästäjää käynnistäessä ilmeni virhe. Näytönsäästäjän xdg-screensaver asennus ei ole kunnossa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Näytönsäästäjää käynnistäessä ilmeni virhe. Näytönsäästäjää xdg-screensaver ei voi käynnistää.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Näytönsäästäjää käynnistäessä ilmeni virhe. Varmista, että xscreensaver on asennettu ja että se on toiminnassa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Näytönsäästäjää käynnistäessä ilmeni virhe. Toiminto 'activate' epäonnistui. Varmista, että xscreensaver on asennettu ja että se on toiminnassa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Tyhjennä</translation>
|
||||
@ -326,44 +271,28 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Tietoja LxQtista</translation>
|
||||
<translation type="vanished">Tietoja LXQtista</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Tietoja</translation>
|
||||
<translation type="vanished">Tietoja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Tekijät</translation>
|
||||
<translation type="vanished">Tekijät</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Kiitokset</translation>
|
||||
<translation type="vanished">Kiitokset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Käännökset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Käännökset</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="fr_FR">
|
||||
<TS version="2.1" language="fr_FR">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Ajouter des extensions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Chercher :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Chercher :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Ajouter l'extension</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Fermer</translation>
|
||||
<translation type="vanished">Fermer</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Oui</translation>
|
||||
@ -106,19 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erreur du gestionnaire d'énergie de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erreur du gestionnaire d'énergie de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hiberner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspendre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Redémarrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Éteindre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Se déconnecter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspendre la session LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspendre la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Voulez-vous vraiment suspendre votre ordinateur?<p>Votre ordinateur consommera un peu d'énergie. L'état du système ne sera pas préservé si l'énergie est perdue.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Mettre la session LxQt en hibernation</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Mettre la session LXQt en hibernation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Voulez-vous vraiment mettre votre ordinateur en hibernation?<p>Votre ordinateur consommera un peu d'énergie. L'état du système sera préservé si l'énergie est perdue.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Redémarrer la session LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Redémarrer la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Voulez-vous vraiment redémarrer votre ordinateur? Tout travail non souvegardé sera perdu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Éteindre la session LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Éteindre la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Voulez-vous vraiment éteindre votre ordinateur? Tout travail non souvegardé sera perdu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Se déconnecter de la session LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Se déconnecter de la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Voulez-vous vraiment vous déconnecter? Tout travail non souvegardé sera perdu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erreur du gestionnaire d'énergie de LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erreur du gestionnaire d'énergie de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Échec de la mise en hibernation.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Échec de la suspension.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Vérouiller l'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Erreur lors de la mise en veille</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Une erreur est survenue lors du démarrage de l'écran de veille. xdg-screensaver n'a pas pu démarrer.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Une erreur est survenue lors du démarrage de l'écran de veille. xdg-screensaver n'est pas installé correctement.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Une erreur est survenue lors du démarrage de l'écran de veille. xdg-screensaver n'a pas pu démarrer.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Une erreur est survenue lors du démarrage de l'écran de veille. Les arguments de xdg-screensaver contiennent des erreurs de syntaxe.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Une erreur est survenue lors du démarrage de l'écran de veille. Assurez-vous que screensaver est installé et actif.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Une erreur est survenue lors du démarrage de l'écran de veille. L'action 'activate' a échoué. Assurez-vous que screensaver est installé et actif.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Une erreur s'est produite au lancement de l'économiseur d'écran. Erreur inconnue - valeur retournée par xdg-screensaver=%1 non documentée.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Vider</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>À propos de LxQt</translation>
|
||||
<translation type="vanished">À propos de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>À propos</translation>
|
||||
<translation type="vanished">À propos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informations techniques</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Informations techniques</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,22 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="hu">
|
||||
<TS version="2.1" language="hu">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Keres:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Bigyó hozzáadás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Bezár</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -24,246 +21,235 @@
|
||||
<message>
|
||||
<location filename="../configdialog/lxqtconfigdialog.ui" line="14"/>
|
||||
<source>Dialog</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Párbeszédablak</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Verzió: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Qt alapú könnyen használható, fejlett és gyors asztalkezelő.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Az LXQt a <a %1>Razor-qt</a>-és annak fejlesztői nélkül nem létezne.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Jogok: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Honlap: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Licensz: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Az LXQt fejlesztői<a %1>LXQt Team és a társasága</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Ha érdekli a fejlesztés. akkor <a %1>csatlakozhat hozzánk</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Külön köszönet:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Az LXQT sok nyelvre le van fordítva, a világban működő fordítóknak köszönhetőn.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">(%1 aktív)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Energiakezelő hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Elaltatás sikertelen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Vészhitelesítés</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Elaltatás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Készültség</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Újraindítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kikapcsolás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kijelentkezés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Az LXQT készenléte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Készenléti állapotba akarja helyezni a gépet?<p>A kis energiaszükségletű állapotban feszültségkimaradáskor az újraélesztés nem biztos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Az LXQT elaltatása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Mélykészenléti állapotba akarja helyezni a gépet?<p>A kis energiaszükségletű alvó állapotban feszültségkimaradáskor az újraélesztés nem biztos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt újraindítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Újra akarja indítani a gépet? Minden mentetlen munka elvész...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt kikapcsolás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ki akarja kapcsolni a gépet? Minden mentetlen munka elvész...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt kijelentkezés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kijelentkezik? Minden mentetlen munka elvész...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt energiakezelő hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Mélykészenléti állapot sikertelen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Készenléti állapot sikertelen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Képernyőzár</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Képvédő indítási hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Az xdg-képernyővédő összeomlott.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Az xdg-képernyővédő nincs jól telepítve.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Az xdg-képernyővédő indíthatatlan.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Az xdg-képernyővédő indító paramétere hibás.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Az xdg-képernyővédő telepített és futtatható?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Az 'activate' sikertelen. Az xdg-képernyővédő telepített és futtatható?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba a képernyővédő indításakor.Ismeretlen hiba - az xdg-képernyővédő ismeretlen hibakóddal kilépett=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -272,62 +258,55 @@
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="91"/>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="141"/>
|
||||
<source>Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Energiakezelő hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="92"/>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="142"/>
|
||||
<source>QDBusInterface is invalid</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>A QDBusInterface érvénytelen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="106"/>
|
||||
<location filename="../lxqtpower/lxqtpowerproviders.cpp" line="156"/>
|
||||
<source>Power Manager Error (D-BUS call)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Energiakezelő hiba (D-BUS hívás)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Az LXQT -ről</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Rólunk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Szerzők</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Köszönet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Fordítások</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Technikai háttér</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Vágólapra másol</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ia">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1" language="ia">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -28,80 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -111,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +31,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -287,47 +199,4 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="id_ID">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1" language="id_ID">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -28,80 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -111,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +31,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernasi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspend</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Reboot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Shutdown</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Keluar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -287,47 +199,4 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="it_IT">
|
||||
<TS version="2.1" language="it_IT">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Aggiungi plugin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Cerca:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Cerca:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Aggiungi plugin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Chiudi</translation>
|
||||
<translation type="vanished">Chiudi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versione: %1</translation>
|
||||
<translation type="vanished">Versione: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Un ambiente desktop veloce, facile da usare e avanzato basato sulle tecnologie Qt.</translation>
|
||||
<translation type="vanished">Un ambiente desktop veloce, facile da usare e avanzato basato sulle tecnologie Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Sito: %1</translation>
|
||||
<translation type="vanished">Sito: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licenza: %1</translation>
|
||||
<translation type="vanished">Licenza: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt è tradotto in molte lingue grazie al lavoro dei gruppi di traduzione in giro per il mondo.</translation>
|
||||
<translation type="vanished">LXQt è tradotto in molte lingue grazie al lavoro dei gruppi di traduzione in giro per il mondo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Strumenti desktop di LXQt - informazioni tecniche</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Errore del gestore energetico di LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Errore del gestore energetico di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Ibernazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Sospensione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Riavvia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Spegni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Esci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Sospendi la sessione di LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Sospendi la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Vuoi davvero sospendere il computer?<p>Sospendi il computer in uno stato a minore consumo energetico. Lo stato del sistema non viene preservato se la batteria si esaurisce o il pc non è collegato all'alimentazione.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Iberna la sessione di LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Iberna la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Vuoi davvero ibernare il computer?<p>Iberna il computer in uno stato a minore consumo energetico. Lo stato del sistema non viene preservato se la batteria si esaurisce o il pc non è collegato all'alimentazione.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Riavvia la sessione di LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Riavvia la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Vuoi davvero riavviare il computer? Tutto il lavoro non salvato verrà perso...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Spegni la sessione di LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Spegni la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Vuoi davvero spegnere il computer? Tutto il lavoro non salvato verrà perso...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Esci dalla sessione di LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Esci dalla sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Vuoi davvero chiudere la sessione? Tutto il lavoro non salvato verrà perso...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Errore del gestore energetico di LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Errore del gestore energetico di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>L'ibernazione non è riuscita.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>La sospensione non è riuscita.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Blocca schermo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Errore nell'avvio del salvaschermo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>È avvenuto un errore durante l'avvio del salvaschermo. xdg-screensaver non può essere avviato a causa di un problema dell'applicazione stessa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>È avvenuto un errore durante l'avvio del salvaschermo. xda-screensaver non è installato correttamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>È avvenuto un errore durante l'avvio del salvaschermo. xda-screensaver non può essere avviato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>È avvenuto un errore durante l'avvio del salvaschermo. Errore di sintassi in xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>È avvenuto un errore durante l'avvio del salvaschermo. Assicurati di avere xscreensaver installato e funzionante.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>È avvenuto un errore durante l'avvio del salvaschermo. L'attivazione non è riuscita, assicurati di avere xscreensaver installato e funzionante.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Si è verificato un errore avviando il salvaschermo. Errore sconosciuto: valore di ritorno non documentato da xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Pulisci</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Informazioni su LxQt</translation>
|
||||
<translation type="vanished">Informazioni su LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Informazioni</translation>
|
||||
<translation type="vanished">Informazioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autori</translation>
|
||||
<translation type="vanished">Autori</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Ringraziamenti</translation>
|
||||
<translation type="vanished">Ringraziamenti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Traduzioni</translation>
|
||||
<translation type="vanished">Traduzioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informazioni tecniche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Informazioni tecniche</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,22 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ja">
|
||||
<TS version="2.1" language="ja">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>検索:</translation>
|
||||
<translation type="vanished">検索:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation>ウィジェットを追加</translation>
|
||||
<translation type="vanished">ウィジェットを追加</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>閉じる</translation>
|
||||
<translation type="vanished">閉じる</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -28,81 +25,70 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>バージョン: %1</translation>
|
||||
<translation type="vanished">バージョン: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Qt テクノロジーベースの、高度で使いやすく高速なデスクトップ環境</translation>
|
||||
<translation type="vanished">Qt テクノロジーベースの、高度で使いやすく高速なデスクトップ環境</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>LxQtは、<a %1>Razor-qt</a>プロジェクトとそのたくさんの貢献者たちなしにはありえませんでした。</translation>
|
||||
<translation type="vanished">LXQtは、<a %1>Razor-qt</a>プロジェクトとそのたくさんの貢献者たちなしにはありえませんでした。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>ホームページ: %1</translation>
|
||||
<translation type="vanished">ホームページ: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>ライセンス: %1</translation>
|
||||
<translation type="vanished">ライセンス: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>LXQtは、<a %1>LXQtチームとその貢献者たち</a>によって開発されています。</translation>
|
||||
<translation type="vanished">LXQtは、<a %1>LXQtチームとその貢献者たち</a>によって開発されています。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>もし私たちの作業に関心がありましたら、<a %1>参加してください</a>。</translation>
|
||||
<translation type="vanished">もし私たちの作業に関心がありましたら、<a %1>参加してください</a>。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation>スペシャルサンクス:</translation>
|
||||
<translation type="vanished">スペシャルサンクス:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQtは、たくさんの言語に翻訳されています。世界各地の翻訳チームの成果に対して謝意を表します。</translation>
|
||||
<translation type="vanished">LXQtは、たくさんの言語に翻訳されています。世界各地の翻訳チームの成果に対して謝意を表します。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation>(%1 有効)</translation>
|
||||
<translation type="vanished">(%1 有効)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt電源管理エラー</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt電源管理エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -111,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,150 +105,150 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>休止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>サスペンド</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>再起動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>シャットダウン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>ログアウト</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQtセッションのサスペンド</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQtセッションのサスペンド</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>本当にコンピュータをサスペンドしますか?<P>コンピュータを低消費電力状態にサスペンドします。電源が失われた場合にはシステムの状態は保持されません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQtセッションの休止</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQtセッションの休止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>本当にコンピュータを休止状態にしますか?<P>コンピュータを
|
||||
低消費電力状態で休止します。電源が失われた場合でもシステムの状態は保持されます。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQtセッションの再起動</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQtセッションの再起動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>本当にコンピュータを再起動しますか?保存されていない作業はすべて失われます...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQtセッションのシャットダウン</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQtセッションのシャットダウン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>本当にコンピュータをオフにしたいですか?保存されていないすべての作業は失われます...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQtセッションのログアウト</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQtセッションのログアウト</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>本当にログアウトしたいですか?保存されていないすべての作業は失われます...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt電源管理エラー</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt電源管理エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>休止の失敗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>サスペンドの失敗</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>スクリーンをロック</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>スクリーンセーバー起動エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>スクリーンセーバーの起動時にエラーが発生しました。クラッシュが原因でxdg-スクリーンセーバーを起動できません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>スクリーンセーバーの起動時にエラーが発生しました。xdg-スクリーンセーバーが正しくインストールされていません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>スクリーンセーバーの起動時にエラーが発生しました。xdg-スクリーンセーバーを起動できません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>スクリーンセーバーの起動時にエラーが発生しました。xdg-スクリーンセーバーの引数に構文エラーがあります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>スクリーンセーバーの起動時にエラーが発生しました。xscreensaverのインストールと実行を確認してください。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>スクリーンセーバーの起動時にエラーが発生しました。'Activate'アクションが失敗しました。xscreensaverのインストールと実行を確認してください。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>スクリーンセーバーを開始する際にエラーが発生しました。不明なエラー - 文書化されていない返り値 xdg-screensaver=%1</translation>
|
||||
</message>
|
||||
@ -291,44 +277,37 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>LxQtについて</translation>
|
||||
<translation type="vanished">LXQtについて</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>About</translation>
|
||||
<translation type="vanished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>作者</translation>
|
||||
<translation type="vanished">作者</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>謝辞</translation>
|
||||
<translation type="vanished">謝辞</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>翻訳</translation>
|
||||
<translation type="vanished">翻訳</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>技術情報</translation>
|
||||
<translation type="vanished">技術情報</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>クリップボードへコピー</translation>
|
||||
<translation type="vanished">クリップボードへコピー</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ko">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1" language="ko">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -28,80 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -111,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +31,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -287,47 +199,4 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="lt">
|
||||
<TS version="2.1" language="lt">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Pridėti priedų</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Ieškoti:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Ieškoti:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Pridėti priedą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Uždaryti</translation>
|
||||
<translation type="vanished">Uždaryti</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Taip</translation>
|
||||
@ -106,19 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Energijos Nustatymų Klaida</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Energijos Nustatymų Klaida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Užmigdyti į atminį</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Užmigdyti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Perkrauti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Išjungti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Atsijungti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt sesijos užmigdymas</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt sesijos užmigdymas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Ar tikrai norite užmigdyti kompiuterį? <p>Užmigdo kompiuterį į mažo energijos naudojimo būklę. Sistemos būklė nėra išsaugoma jei nutrūksta energija.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt sesijos sustabdymas į atmintį.</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt sesijos sustabdymas į atmintį.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Ar tikrai norite sustabdyti kompiuterį į atmintį?<p> Sustabdymas į atmintį sustabdo kompiuterį į mažo energijos kiekio sunaudojimo būklę ir jei energija išjungiama sistemos būklė lieka išsaugota</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt sesijos perkrovimas</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt sesijos perkrovimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ar tikrai norite perkrauti kompiuterį? Visi neišsaugoti pakeitimai bus prarasti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt sesijos išjungimas</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt sesijos išjungimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ar tikrai norite išjungti kompiuterį? Visi neišsaugoti pakeitimai bus prarasti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt sesijos atjungimas</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt sesijos atjungimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Ar tikrai norite atsijungti? Visi neišsaugoti pakeitimai bus prarasti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Energijos Nustatymų Klaida</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Energijos Nustatymų Klaida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Nepavyko užmigdymas į fizinę atmintį</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Nepavyko užmigdymas</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Užrakinti ekraną</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Ekrano užsklandos aktyvavimo klaida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Klaida paleidžiant ekrano užsklandą. xdg-screensaver negali pasileisti, nes nulūžo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Klaida paleidžiant ekrano užsklandą. xdg-screensaver nėra tinkamai įdiegtas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Klaida paleidžiant ekrano užsklandą. xdg-screensaver negali būti paleistas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Klaida paleidžiant ekrano užsklandą. Sintaksės klaida xdg-screensaver argumentuose.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Klaida paleidžiant ekrano užsklandą. Įsitikinkite, ar įdiegtas ir paleistas xscreensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Klaida paleidžiant ekrano užsklandą. Nevyko atlikti veiksmo „activate“. Įsitikinkite, ar įdiegtas ir paleistas xscreensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Išvalyti</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Apie LxQt</translation>
|
||||
<translation type="vanished">Apie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Apie</translation>
|
||||
<translation type="vanished">Apie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Techninė informacija</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Techninė informacija</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="nl">
|
||||
<TS version="2.1" language="nl">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Plugins toevoegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Zoeken:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Zoeken:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Plugin toevoegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Sluiten</translation>
|
||||
<translation type="vanished">Sluiten</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Ja</translation>
|
||||
@ -106,19 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Energiebeheer fout</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Energiebeheer fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Slaapstand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Slapen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Herstarten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Afsluiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Afmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Sessie Slapen</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Sessie Slapen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Wilt u uw Sessie in RAM slaapstand brengen?<p>Slaat uw sessie op in het RAM geheugen. LET OP! Gegevens gaan verloren tijdens een stroom uitval.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Sessie Slaapstand</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Sessie Slaapstand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Wilt u uw Sessie in SCHIJF slaapstand brengen?<p>Slaat uw sessie op in een bestand op uw Schijf. Gegevens gaan NIET verloren tijdens een stroom uitval.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Sessie Herstarten</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Sessie Herstarten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Wilt u uw computer herstarten? LET OP! Niet opgeslagen gegevens gaan verloren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Sessie Afsluiten</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Sessie Afsluiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Wilt u uw computer Afsluiten? LET OP! Niet opgeslagen gegevens gaan verloren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Sessie Afmelden</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Sessie Afmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Wilt u uw sessie beeindigen? LET OP! Niet opgeslagen gegevens gaan verloren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Energiebeheer fout</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Energiebeheer fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>SCHIJF-slaapstand mislukt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>RAM-slaapstand mislukt.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Scherm Vergrendelen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Schermbeveiliging Activering fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Fout tijdens het starten van de schermbeveiliging. xdg-schermbeveiliging kan niet starten, wegens een crash.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Fout tijdens het starten van de schermbeveiliging. xdg-schermbeveiliging is niet correct geinstalleerd..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Fout tijdens het starten van de schermbeveiliging. xdg-schermbeveiliging kan niet starten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Fout tijdens het starten van de schermbeveiliging. Regelfout in xdg-schermbeveiliging argumenten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Fout tijdens het starten van de schermbeveiliging. Controleer of xdg-schermbeveiliging is geinstalleerd en gestart.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Fout tijdens het starten van de schermbeveiliging. Actie 'activeren' mislukt. Controleer of xdg-schermbeveiliging is geinstalleerd en gestart.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Wissen</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Over LxQt</translation>
|
||||
<translation type="vanished">Over LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Over</translation>
|
||||
<translation type="vanished">Over</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Technische Informatie </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Technische Informatie </translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="pl_PL">
|
||||
<TS version="2.1" language="pl_PL">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Dodaj wtyczki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Szukaj:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Szukaj:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Dodaj wtyczkę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Zamknij</translation>
|
||||
<translation type="vanished">Zamknij</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Wersja: %1</translation>
|
||||
<translation type="vanished">Wersja: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Zaawansowany, łatwy w obsłudze i szybki pulpit bazujący na Qt.</translation>
|
||||
<translation type="vanished">Zaawansowany, łatwy w obsłudze i szybki pulpit bazujący na Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Prawa autorskie: %1-%2 %3</translation>
|
||||
<translation type="vanished">Prawa autorskie: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Strona: %1</translation>
|
||||
<translation type="vanished">Strona: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licencja: %1</translation>
|
||||
<translation type="vanished">Licencja: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt jest dostępny w wielu językach dzięki wspanialej pracy ekip tłumaczy z całego świata.</translation>
|
||||
<translation type="vanished">LXQt jest dostępny w wielu językach dzięki wspanialej pracy ekip tłumaczy z całego świata.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">Nie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Skrzynka narzędziowa pulpitu LxQt - Informacje techniczne</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Skrzynka narzędziowa pulpitu LXQt - Informacje techniczne</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,18 +130,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Błąd zarządzania energią</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernuj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Uśpij</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Uruchom ponownie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Wyłącz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Wyloguj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Uśpij sesję</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Czy jesteś pewien, że chcesz uśpić swój komputer?<p>Przełącza komputer w stan niskiego poboru prądu. Stan systemu nie jest zabezpieczony przed utratą zasilania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernuj sesję</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Czy jesteś pewien, że chcesz zahibernować swój komputer?<p>Przełącza komputer w stan niskiego poboru prądu. Stan systemu jest zabezpieczony przed utratą zasilania.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Uruchom ponownie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Czy jesteś pewien, że chcesz ponownie uruchomić swój komputer?<p>Cała niezapisana praca zostanie utracona...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Wyłącz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Czy jesteś pewien, że chcesz wyłączyć swój komputer?<p>Cała niezapisana praca zostanie utracona...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Wyloguj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Czy jesteś pewien, że chcesz się wylogować?<p>Cała niezapisana praca zostanie utracona...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Błąd zarządzania energią</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernacja nie powiodła się.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Uśpienie nie powiodło się.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Zablokuj ekran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Błąd podczas aktywacji wygaszacza ekranu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Wystąpił błąd podczas uruchamiania wygaszacza ekranu. xdg-screensaver nie uruchamia się (crash).</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Wystąpił błąd podczas uruchamiania wygaszacza ekranu. xdg-screensaver nie jest poprawnie zainstalowany.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Wystąpił błąd podczas uruchamiania wygaszacza ekranu. xdg-screensaver nie może zostać uruchomiony.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Wystąpił błąd podczas uruchamiania wygaszacza ekranu. Błąd składni argumentów xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Wystąpił błąd podczas uruchamiania wygaszacza ekranu. Upewnij się, że xdg-screensaver jest zainstalowany oraz uruchomiony.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Wystąpił błąd podczas uruchamiania wygaszacza ekranu. Akcja "aktywacja" zawiodła. Upewnij się, że xdg-screensaver jest zainstalowany oraz uruchomiony.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Wystąpił błąd podczas wywołania wygaszacza ekranu. Nieznany błąd - nieudokumentowany zwrot wartości z xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Wyczyść</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>O LxQt</translation>
|
||||
<translation type="vanished">O LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>O</translation>
|
||||
<translation type="vanished">O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autorzy</translation>
|
||||
<translation type="vanished">Autorzy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Podziękowania</translation>
|
||||
<translation type="vanished">Podziękowania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Tłumaczenia</translation>
|
||||
<translation type="vanished">Tłumaczenia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informacje techniczne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Informacje techniczne</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -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>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,20 @@
|
||||
<translation type="obsolete">Adicionar extras</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Procurar:</translation>
|
||||
<translation type="vanished">Procurar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation>Adicionar widget</translation>
|
||||
<translation type="vanished">Adicionar widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Adicionar extra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Fechar</translation>
|
||||
<translation type="vanished">Fechar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +33,55 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versão: %1</translation>
|
||||
<translation type="vanished">Versão: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Ambiente de trabalho rápido, simples e fácil de utilizar baseado na tecnologia Qt.</translation>
|
||||
<translation type="vanished">Ambiente de trabalho rápido, simples e fácil de utilizar baseado na tecnologia Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>O LxQt não seria possível sem a ajuda dos colaboradores do projeto <a %1>Razor-qt</a>.</translation>
|
||||
<translation type="vanished">O LXQt não seria possível sem a ajuda dos colaboradores do projeto <a %1>Razor-qt</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Direitos de autor: %1-%2 %3</translation>
|
||||
<translation type="vanished">Direitos de autor: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Página web: %1</translation>
|
||||
<translation type="vanished">Página web: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licença: %1</translation>
|
||||
<translation type="vanished">Licença: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>O LxQt é desenvolvido pelos <a %1>colaboradores da equipa LxQt</a>.</translation>
|
||||
<translation type="vanished">O LXQt é desenvolvido pelos <a %1>colaboradores da equipa LXQt</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>Se quiser ajudar no desenvolvimento, <a %1>pode integrar a nossa equipa</a>.</translation>
|
||||
<translation type="vanished">Se quiser ajudar no desenvolvimento, <a %1>pode integrar a nossa equipa</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation>Um especial obrigado:</translation>
|
||||
<translation type="vanished">Um especial obrigado:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>O LxQt está traduzido em diversos idiomas graças ao trabalho desenvolvido pelas equipas de tradução de todo o mundo.</translation>
|
||||
<translation type="vanished">O LXQt está traduzido em diversos idiomas graças ao trabalho desenvolvido pelas equipas de tradução de todo o mundo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +92,7 @@
|
||||
<translation type="obsolete">Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Ambiente de trabalho LXQt - Informações técnicas</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +154,18 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation>(%1 ativo)</translation>
|
||||
<translation type="vanished">(%1 ativo)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +174,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +182,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspender</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Desligar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Terminar sessão</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspender</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Pretende mesmo suspender o computador?<p>A suspensão deixa o computador num estado de energia baixa. O estado do sistema não é guardado se faltar a energia.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Pretende mesmo hibernar o computador?<p>A hibernação deixa o computador num estado de energia baixa. O estado do sistema é guardado se faltar a energia.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Pretende mesmo reiniciar o computador? Os trabalhos não gravados serão perdidos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Desligar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Pretende mesmo desligar o computador? Os trabalhos não gravados serão perdidos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Terminar sessão</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Pretende mesmo terminar a sessão? Os trabalhos não gravados serão perdidos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Falha ao hibernar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Falha ao suspender.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Bloquear ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Erro ao ativar a proteção de ecrã</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. O xdg-screensaver terminou abruptamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. O xdg-screensaver não está instalado corretamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. O xdg-screensaver não foi iniciado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. Existem erros na sintaxe nos argumentos xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. Certifique-se que o xdg-screensaver está instalado e em execução.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. Erro na ação 'activate'. Certifique-se que o xdg-screensaver está instalado e em execução.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Ocorreu um erro ao iniciar a proteção de ecrã. O erro xdg-screensaver=%1 não é conhecido ou documentado.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpar</translation>
|
||||
@ -378,44 +364,37 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> Sobre o LxQt</translation>
|
||||
<translation type="vanished"> Sobre o LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Sobre</translation>
|
||||
<translation type="vanished">Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autores</translation>
|
||||
<translation type="vanished">Autores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Agradecimentos</translation>
|
||||
<translation type="vanished">Agradecimentos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Traduções</translation>
|
||||
<translation type="vanished">Traduções</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informações técnicas</translation>
|
||||
<translation type="vanished">Informações técnicas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Copiar para a área de transferência</translation>
|
||||
<translation type="vanished">Copiar para a área de transferência</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="pt_BR">
|
||||
<TS version="2.1" language="pt_BR">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Adicionar plugins</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Pesquisar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Pesquisar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Adicionar plugin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Fechar</translation>
|
||||
<translation type="vanished">Fechar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versão: %1</translation>
|
||||
<translation type="vanished">Versão: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Avançado, fácil de usar, e ambiente de trabalho rápido baseado nas tecnologias Qt.</translation>
|
||||
<translation type="vanished">Avançado, fácil de usar, e ambiente de trabalho rápido baseado nas tecnologias Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Copyright: %1-%2 %3</translation>
|
||||
<translation type="vanished">Copyright: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Página: %1</translation>
|
||||
<translation type="vanished">Página: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Licença: %1</translation>
|
||||
<translation type="vanished">Licença: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt é traduzido em muitas línguas, graças ao trabalho das equipes de tradução de todo o mundo.</translation>
|
||||
<translation type="vanished">LXQt é traduzido em muitas línguas, graças ao trabalho das equipes de tradução de todo o mundo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Caixa De Ferramentas Do Desktop LXQt - Informações Técnicas</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erro ao gerenciar energia do LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erro ao gerenciar energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspender</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Desligar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Encerrar sessão</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspender sessão do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspender sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Deseja realmente suspender o computador?<p>Suspende o computador em um estado de baixa energia. O estado do sistema não é preservado se a energia for perdida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernar sessão do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Deseja realmente hibernar o computador?<p>Hiberna o computador em um estado de baixa energia. O estado do sistema é preservado se a energia for perdida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reiniciar sessão do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reiniciar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Deseja realmente reiniciar o computador? Todos os trabalhos não salvos serão perdidos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Desligar sessão do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Desligar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Deseja realmente desligar o computador? Todos os trabalhos não salvos serão perdidos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Encerrar sessão do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Encerrar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Deseja realmente encerrar a sessão? Todos os trabalhos não salvos serão perdidos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erro ao gerenciar energia do LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erro ao gerenciar energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Falha ao hibernar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Falha ao suspender.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Bloquear tela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Erro na ativação do protetor de tela</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Ocorreu um erro ao iniciar o protetor de tela. O xdg-screensaver não pôde ser iniciado devido a uma falha.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Ocorreu um erro ao iniciar o protetor de tela. O xdg-screensaver não está instalado corretamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Ocorreu um erro ao iniciar o protetor de tela. O xdg-screensaver não pôde ser iniciado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Ocorreu um erro ao iniciar o protetor de tela. Erro de sintaxe nos argumentos do xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ocorreu um erro ao iniciar o protetor de tela. Garanta que você tenha o xscreensaver instalado e funcionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ocorreu um erro ao iniciar o protetor de tela. A ação 'ativar' falhou. Garanta que você tenha o xscreensaver instalado e funcionado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Ocorreu um erro ao inicair o protetor de tela. Erro desconhecido - retorno não documentado de xdg-screensaver=%1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpar</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>Sobre o LxQt</translation>
|
||||
<translation type="vanished">Sobre o LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Sobre</translation>
|
||||
<translation type="vanished">Sobre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Autores</translation>
|
||||
<translation type="vanished">Autores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Agradecimentos</translation>
|
||||
<translation type="vanished">Agradecimentos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Traduções</translation>
|
||||
<translation type="vanished">Traduções</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Ficha Técnica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Ficha Técnica</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ro_RO">
|
||||
<TS version="2.1" language="ro_RO">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Adaugă module</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Caută:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Caută:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Adaugă modul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Închide</translation>
|
||||
<translation type="vanished">Închide</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Da</translation>
|
||||
@ -106,19 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Eroare gestiune alimentare LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Eroare gestiune alimentare LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Suspendare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Repornire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Oprire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Ieșire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Sesiune LXQt - suspendare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Doriți să suspendați calculatorul?<p>Suspendă calculatorul într-o stare cu consum minim de energie. Starea sistemului nu va fi păstrată dacă se întrerupe alimentarea.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Sesiune LXQt - hibernare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Doriți să treceți calculatorul în stare de hibernare?<p>Calculatorul va trece într-o stare cu consum minim de energie. Starea sistemului va fi păstrată și dacă se întrerupe alimentarea.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Sesiune LXQt - repornire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Doriți să reporniți calculatorul? Tot ce nu ați salvat se va pierde...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Sesiune LXQt - oprire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Doriți să opriți calculatorul? Tot ce nu ați salvat se va pierde...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Sesiune LXQt - ieșire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Doriți să ieșiți din sesiune? Tot ce nu ați salvat se va pierde...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Eroare gestiune alimentare LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Eroare gestiune alimentare LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernarea a eșuat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Suspendarea a eșuat.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Blochează ecranul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Eroare la activarea protecției de ecran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>A apărut o eroare la activarea protecției de ecran. xdg-screensaver nu a putut fi pornit.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>A apărut o eroare la activarea protecției de ecran. xdg-screensaver nu a fost instalat corect.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>A apărut o eroare la activarea protecției de ecran. xdg-screensaver nu a putut fi pornit.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>A apărut o eroare la activarea protecției de ecran. Eroare de sintaxă în argumentele xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>A apărut o eroare la pornirea protecției de ecran. Asigurați-vă că ați instalat xscreensaver și că acesta rulează.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>A apărut o eroare la pornirea protecției de ecran. Acțiunea 'activează' a eșuat. Asigurați-vă că ați instalat xscreensaver și că acesta rulează.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Curăță</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> Despre LxQt</translation>
|
||||
<translation type="vanished"> Despre LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Despre</translation>
|
||||
<translation type="vanished">Despre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Informații tehnice</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Informații tehnice</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,22 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ru">
|
||||
<TS version="2.1" language="ru">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Поиск:</translation>
|
||||
<translation type="vanished">Поиск:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation>Добавить виджет</translation>
|
||||
<translation type="vanished">Добавить виджет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Закрыть</translation>
|
||||
<translation type="vanished">Закрыть</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -28,81 +25,70 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Версия: %1</translation>
|
||||
<translation type="vanished">Версия: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Передовая, быстрая, и простая в использовании среда рабочего стола на основе технологий Qt.</translation>
|
||||
<translation type="vanished">Передовая, быстрая, и простая в использовании среда рабочего стола на основе технологий Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>LXQT не могло бы существовать без проекта <a %1>Razor-qt</a> и многих его участников.</translation>
|
||||
<translation type="vanished">LXQT не могло бы существовать без проекта <a %1>Razor-qt</a> и многих его участников.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Авторские права: %1-%2 %3</translation>
|
||||
<translation type="vanished">Авторские права: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Домашняя страница: %1</translation>
|
||||
<translation type="vanished">Домашняя страница: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Лицензия: %1</translation>
|
||||
<translation type="vanished">Лицензия: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>LXQT разработан <a %1>командой LXQt и прочими участниками</a>.</translation>
|
||||
<translation type="vanished">LXQT разработан <a %1>командой LXQt и прочими участниками</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>Если вы заинтересованы работой с нашей командой разработки, <a %1>присоединяйтесь к нам</a>.</translation>
|
||||
<translation type="vanished">Если вы заинтересованы работой с нашей командой разработки, <a %1>присоединяйтесь к нам</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation>Особая благодарность:</translation>
|
||||
<translation type="vanished">Особая благодарность:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQT переведён на множество языков благодаря работе команд переводчиков по всему миру.</translation>
|
||||
<translation type="vanished">LXQT переведён на множество языков благодаря работе команд переводчиков по всему миру.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation>(%1 активный)</translation>
|
||||
<translation type="vanished">(%1 активный)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -111,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +105,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="115"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Спящий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="122"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Ждущий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="129"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Перезагрузить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="136"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Выключить компьютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="143"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Завершить сеанс</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="155"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="156"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Перевести компьютер в ждущий режим?<p>Переводит компьютер в режим низкого энергопотрбления. Состояние системы будет потеряно при отключении питания.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="165"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="166"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Перевести компьютер в спящий режим?<p>Переводит компьютер в режим низкого энергопотрбления. Состояние системы будет сохранено при отключении питания.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="175"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="176"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Перезагрузить компьютер? Все несохранённые изменения в документах будут потеряны…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="185"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="186"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Выключить компьютер? Все несохранённые изменения в документах будут потеряны…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="195"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="196"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Завершить сеанс? Все несохранённые изменения в документах будут потеряны…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="204"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="209"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="204"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Ошибка перехода в спящий режим.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="209"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Ошибка перехода в ждущий режим.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="54"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Заблокировать экран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="73"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="81"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="89"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="101"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="109"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="117"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="126"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Ошибка запуска хранителя экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="74"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Невозможно запустить xdg-screensaver по причине его сбоя.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="82"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Xdg-screensaver установлен некорректно.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="90"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Xdg-screensaver не может быть запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="102"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Неверные аргументы запуска xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="110"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Убедитесь, что xscreensaver установлен и запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="118"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>При запуске заставки произошла ошибка. Невозможно выполнить действие «запустить». Проверьте, чтобы xscreensaver был установлен и запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="127"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>При запуске заставки произвошла ошибка. Неизвестная ошибка - недокументированное значение возвращено из xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
@ -290,44 +276,37 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> О LXQt</translation>
|
||||
<translation type="vanished"> О LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>О программе</translation>
|
||||
<translation type="vanished">О программе</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Авторы</translation>
|
||||
<translation type="vanished">Авторы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Благодарности</translation>
|
||||
<translation type="vanished">Благодарности</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Переводы</translation>
|
||||
<translation type="vanished">Переводы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Техническая информация</translation>
|
||||
<translation type="vanished">Техническая информация</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Копировать в буфер обмена</translation>
|
||||
<translation type="vanished">Копировать в буфер обмена</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,22 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ru_RU">
|
||||
<TS version="2.1" language="ru_RU">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Поиск:</translation>
|
||||
<translation type="vanished">Поиск:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation>Добавить виджет</translation>
|
||||
<translation type="vanished">Добавить виджет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Закрыть</translation>
|
||||
<translation type="vanished">Закрыть</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -28,81 +25,70 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Версия: %1</translation>
|
||||
<translation type="vanished">Версия: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Передовая, быстрая, и простая в использовании среда рабочего стола на основе технологий Qt.</translation>
|
||||
<translation type="vanished">Передовая, быстрая, и простая в использовании среда рабочего стола на основе технологий Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>LXQT не могло бы существовать без проекта <a %1>Razor-qt</a> и многих его участников.</translation>
|
||||
<translation type="vanished">LXQT не могло бы существовать без проекта <a %1>Razor-qt</a> и многих его участников.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Авторские права: %1-%2 %3</translation>
|
||||
<translation type="vanished">Авторские права: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Домашняя страница: %1</translation>
|
||||
<translation type="vanished">Домашняя страница: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Лицензия: %1</translation>
|
||||
<translation type="vanished">Лицензия: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>LXQT разработан <a %1>командой LXQt и прочими участниками</a>.</translation>
|
||||
<translation type="vanished">LXQT разработан <a %1>командой LXQt и прочими участниками</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation>Если вы заинтересованы работой с нашей командой разработки, <a %1>присоединяйтесь к нам</a>.</translation>
|
||||
<translation type="vanished">Если вы заинтересованы работой с нашей командой разработки, <a %1>присоединяйтесь к нам</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation>Особая благодарность:</translation>
|
||||
<translation type="vanished">Особая благодарность:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQT переведён на множество языков благодаря работе команд переводчиков по всему миру.</translation>
|
||||
<translation type="vanished">LXQT переведён на множество языков благодаря работе команд переводчиков по всему миру.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation>(%1 активный)</translation>
|
||||
<translation type="vanished">(%1 активный)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -111,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +105,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="115"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Спящий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="122"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Ждущий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="129"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Перезагрузить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="136"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Выключить компьютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="143"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Завершить сеанс</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="155"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="156"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Перевести компьютер в ждущий режим?<p>Переводит компьютер в режим низкого энергопотрбления. Состояние системы будет потеряно при отключении питания.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="165"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="166"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Перевести компьютер в спящий режим?<p>Переводит компьютер в режим низкого энергопотрбления. Состояние системы будет сохранено при отключении питания.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="175"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="176"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Перезагрузить компьютер? Все несохранённые изменения в документах будут потеряны…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="185"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="186"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Выключить компьютер? Все несохранённые изменения в документах будут потеряны…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="195"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="196"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Завершить сеанс? Все несохранённые изменения в документах будут потеряны…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="204"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="209"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="204"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Ошибка перехода в спящий режим.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="209"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Ошибка перехода в ждущий режим.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="54"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Заблокировать экран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="73"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="81"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="89"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="101"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="109"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="117"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="126"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Ошибка запуска хранителя экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="74"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Невозможно запустить xdg-screensaver по причине его сбоя.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="82"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Xdg-screensaver установлен некорректно.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="90"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Xdg-screensaver не может быть запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="102"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Неверные аргументы запуска xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="110"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>При запуске хранителя экрана произошла ошибка. Убедитесь, что xscreensaver установлен и запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="118"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>При запуске заставки произошла ошибка. Невозможно выполнить действие «запустить». Проверьте, чтобы xscreensaver был установлен и запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="127"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>При запуске заставки произвошла ошибка. Неизвестная ошибка - недокументированное значение возвращено из xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
@ -290,44 +276,37 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> О LXQt</translation>
|
||||
<translation type="vanished"> О LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>О программе</translation>
|
||||
<translation type="vanished">О программе</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Авторы</translation>
|
||||
<translation type="vanished">Авторы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Благодарности</translation>
|
||||
<translation type="vanished">Благодарности</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Переводы</translation>
|
||||
<translation type="vanished">Переводы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Техническая информация</translation>
|
||||
<translation type="vanished">Техническая информация</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Копировать в буфер обмена</translation>
|
||||
<translation type="vanished">Копировать в буфер обмена</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="sk_SK">
|
||||
<TS version="2.1" language="sk_SK">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Pridať zásuvné moduly</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Hľadať:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Hľadať:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Pridať zásuvný modul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Zatvoriť</translation>
|
||||
<translation type="vanished">Zatvoriť</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,81 +29,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba správcu napájania LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba správcu napájania LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -119,7 +42,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -127,155 +50,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Hibernovať</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Úsporný režim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Reštartovať</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Vypnúť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Odhlásiť sa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Úsporný režim relácie LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Úsporný režim relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Skutočne chcete svoj počítač uviesť do úsporného režimu?<p>Uvedie počítač do stavu s nízkym odberom prúdu. Stav systému sa pri strate napájania nezachová.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernácia relácie LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernácia relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Skutočne chcete svoj počítač hibernovať?<p>Uvedie počítač do stavu s nízkym odberom prúdu. Stav systému sa pri strate napájania zachová.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reštart relácie LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reštart relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Skutočne chcete svoj počítač reštartovať? Akákoľvek neuložená práca sa stratí...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Vypnutie relácie LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Vypnutie relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Skutočne chcete svoj počítač vypnúť? Akákoľvek neuložená práca sa stratí...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Odhlásenie relácie LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odhlásenie relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Skutočne sa chcete odhlásiť z vášho počítača? Akákoľvek neuložená práca sa stratí...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Chyba správcu napájania LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Chyba správcu napájania LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Hibernácia sa nepodarila.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Uvedenie do úsporného režimu sa nepodarilo.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Zamknúť obrazovku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>CHyba pri aktivácii šetriča obrazovky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Pri štarte šetriča obrazovky sa vyskytla chyba. xdg-screensaver nebolo možné spustiť, pretože havaroval.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Pri štarte šetriča obrazovky sa vyskytla chyba. xdg-screensaver nie je správne nainštalovaný.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Pri štarte šetriča obrazovky sa vyskytla chyba. xdg-screensaver nebolo možné spustiť.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Pri štarte šetriča obrazovky sa vyskytla chyba. Chyba syntaxe v argumentoch xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Pri štarte šetriča obrazovky sa vyskytla chyba. Uistite sa, či je xdg-screensaver nainštalovaný a spustený.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Pri štarte šetriča obrazovky sa vyskytla chyba. Operácia „activate“ zlyhala. Uistite sa, či je xdg-screensaver nainštalovaný a spustený.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Vyčistiť</translation>
|
||||
@ -309,44 +232,8 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>O prostredí LxQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">O prostredí LXQt</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="sl">
|
||||
<TS version="2.1" language="sl">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Dodaj vstavke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Iskanje:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Iskanje:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Dodaj vstavek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Zapri</translation>
|
||||
<translation type="vanished">Zapri</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,66 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Da</translation>
|
||||
@ -106,18 +40,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Napaka upravljanja z energijo</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -127,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -135,155 +61,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>V mirovanje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>V pripravljenost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Znova zaženi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Izklopi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Odjavi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Seja v pripravljenost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Ali res želite svoj računalnik preklopiti v stanje pripravljenosti?<p>Računalnik se preklopi v stanje nizke porabe energije. Stanje sistema se v primeru izpada elektrike ne ohrani.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Seja v mirovanje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Ali res želite svoj računalnik preklopiti v stanje mirovanja?<p>Računalnik se preklopi v stanje nizke porabe energije. Stanje sistema se v primeru izpada elektrike ohrani.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Ponovni zagon seje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ali res želite znova zagnati svoj računalnik? Vse neshranjeno delo bo izgubljeno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Izklop seje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Ali res želite izklopiti svoj računalnik? Vse neshranjeno delo bo izgubljeno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odjava seje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Ali se res želite odjaviti? Vse neshranjeno delo bo izgubljeno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Napaka upravljanja z energijo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Prehod v mirovanje ni uspel.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Prehod v pripravljenost ni uspel.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Zakleni zaslon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Napaka vklopa ohranjevalnika zaslona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Programa xdg-screensaver ni moč zagnati, ker se je sesul.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Program xdg-screensaver ni nameščen pravilno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Programa xdg-screensaver ni moč zagnati.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Napaka skladnje pri argumentih programa xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Preverite, ali imate nameščen in zagnan XLxQt::ScreenSaver.</translation>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Preverite, ali imate nameščen in zagnan XLXQt::ScreenSaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Dejanje »activate« ni uspelo. Preverite, ali imate nameščen in zagnan XLxQt::ScreenSaver.</translation>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Dejanje »activate« ni uspelo. Preverite, ali imate nameščen in zagnan XLXQt::ScreenSaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Počisti</translation>
|
||||
@ -317,44 +243,18 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>O LxQt</translation>
|
||||
<translation type="vanished">O LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>O</translation>
|
||||
<translation type="vanished">O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Tehnični podatki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Tehnični podatki</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="sr@latin">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<TS version="2.1" language="sr@latin">
|
||||
<context>
|
||||
<name>ConfigDialog</name>
|
||||
<message>
|
||||
@ -28,80 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -111,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -119,149 +31,149 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -287,47 +199,4 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="sr_RS">
|
||||
<TS version="2.1" language="sr_RS">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Додавање модула</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Тражи:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Тражи:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Додај модул</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Затвори</translation>
|
||||
<translation type="vanished">Затвори</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,80 +29,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Грешка Рејзоровог менаџера напајања</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -119,7 +42,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -127,155 +50,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Хибернирај</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Суспендуј</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Поново покрени</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Угаси</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Одјави се</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Суспендовање Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Желите ли заиста да суспендујете ваш рачунар?<p>Ово поставља ваш рачунар у стање смањене потрошње енергије. Стање система није очувано ако дође до нестанка струје.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Хибернација Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Желите ли заиста да хибернирате ваш рачунар?<p>Ово поставља ваш рачунар у стање смањене потрошње енергије. Стање система је очувано ако дође до нестанка струје.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Поновно покретање Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Желите ли заиста да поново покренете ваш рачунар? Несачуван рад ће бити изгубљен...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Гашење Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Желите ли заиста да угасите ваш рачунар? Несачуван рад ће бити изгубљен...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Одјава Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Желите ли заиста да се одјавите? Несачуван рад ће бити изгубљен...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Грешка Рејзоровог менаџера напајања</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Хибернација није успела.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Суспендовање није успело.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Закључај екран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Грешка при активацији чувара екрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Грешка при покретању чувара екрана. xdg-screensaver се не може покренути јер се срушио.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Грешка при покретању чувара екрана. xdg-screensaver није инсталиран исправно.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Грешка при покретању чувара екрана. xdg-screensaver се не може покренути.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Грешка при покретању чувара екрана. Грешка у синтакси аргумената xdg-screensaver-а.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Грешка при покретању чувара екрана. Уверите се да имате xdg-screensaver инсталиран и покренут.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Грешка при покретању чувара екрана. Радња „активирај“ није успела. Уверите се да имате xdg-screensaver инсталиран и покренут.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Очисти</translation>
|
||||
@ -309,44 +232,8 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> О Рејзору</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished"> О Рејзору</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="th_TH">
|
||||
<TS version="2.1" language="th_TH">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">เพิ่มกลุ่มปลั๊กอิน</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>ค้นหา:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">ค้นหา:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">เพิ่มปลั๊กอิน</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>ปิด</translation>
|
||||
<translation type="vanished">ปิด</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>รุ่น: %1</translation>
|
||||
<translation type="vanished">รุ่น: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>สภาพแวดล้อมเดสก์ท็อปที่เพียบพร้อม ใช้ง่าย รวดเร็ว โดยใช้เทคโลยีจาก Qt</translation>
|
||||
<translation type="vanished">สภาพแวดล้อมเดสก์ท็อปที่เพียบพร้อม ใช้ง่าย รวดเร็ว โดยใช้เทคโลยีจาก Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>ลิขสิทธิ์สูกต้อง: %1-%2 %3</translation>
|
||||
<translation type="vanished">ลิขสิทธิ์สูกต้อง: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>โฮมเพจ: %1</translation>
|
||||
<translation type="vanished">โฮมเพจ: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>สัญญาอนุญาต: %1</translation>
|
||||
<translation type="vanished">สัญญาอนุญาต: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt ได้แปลเป็นภาษาต่างๆ มากมาย จึงขอขอบคุณไปยังทีมงานแปลต่าง ๆ จากทั่วโลก</translation>
|
||||
<translation type="vanished">LXQt ได้แปลเป็นภาษาต่างๆ มากมาย จึงขอขอบคุณไปยังทีมงานแปลต่าง ๆ จากทั่วโลก</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">ไม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>กล่องเครื่องมือเดกส์ท็อป LXQt - ข้อมูลทางเทคนิค</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">โปรแกรมจัดการพลังงานของ LxQt ขัดข้อง</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">โปรแกรมจัดการพลังงานของ LXQt ขัดข้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>จำศีลเครื่อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>พักเครื่อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>เริ่มระบบใหม่ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>ปิดเครื่อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>ออกจากระบบ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>พักการทำงานของ LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>พักการทำงานของ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>คุณแน่ใจนะว่า ต้องการพักเครื่อง?<p>การพักเครื่องจะลดการใช้พลังงาน โปรดระวังด้วย หากไฟดับสถานะของระบบจะสูญหาย</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>จำศีลการทำงานของ LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>จำศีลการทำงานของ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>คุณแน่ใจนะ ว่าต้องการจำศีลเครื่อง?<p>การจำศีลเครื่องจะลดการใช้พลังงาน ถึงแม้ว่าไฟดับ สถานะของระบบก็จะถูกรักษาไว้</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation> เริ่มการทำงานของ LxQt ใหม่</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation> เริ่มการทำงานของ LXQt ใหม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>คุณแน่ใจนะ ว่าต้องการเริ่มระบบใหม่? งานที่ไม่ได้บันทึกไว้ทั้งหมดจะสูญหาย</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>จบการทำงานของ lxqt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>คุณแน่ใจนะ ว่าต้องการปิดเครื่อง? งานที่ไม่ได้บันทึกไว้ทั้งหมดจะสูญหาย</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>ออกจากระบบ LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>ออกจากระบบ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>คุณแน่ใจนะว่า ต้องการออกจากระบบ? งานที่ยังไม่ได้บันทึกทั้งหมดจะสูญหาย..</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>โปรแกรมจัดการพลังงานของ LxQt ขัดข้อง</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>โปรแกรมจัดการพลังงานของ LXQt ขัดข้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>จำศีลเครื่องล้มเหลว</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>พักเครื่องล้มเหลว</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>ล็อคหน้าจอ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>การเริ่มงานของโปรแกรมรักษาหน้าจอขัดข้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ xdg-screensaver ไม่สามารถเริ่มงานได้เนื่องจากมันเสียหาย</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ xdg-screensaver ไม่ได้ถูกติดตั้งอย่างถูกต้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ xdg-screensaver ไม่สามารถเริ่มงานได้</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ เกิด syntax error ใน xdg-screensaver อาร์กิวเมนต์ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ ตรวจดูให้แน่ใจว่าคุณได้ติดตั้งและเริ่มงาน xdg-screensaver แล้ว</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ xdg-screensaver ไม่สามารถเริ่มงานได้</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>เกิดการขัดข้องขณะเริ่มงานโปรแกรมรักษาหน้าจอ ไม่ทราบการขัดข้อง - undocumented กลับคืนค่าจาก xdg-screensaver=%1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">ล้าง</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>เกี่ยวกับ LxQt</translation>
|
||||
<translation type="vanished">เกี่ยวกับ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>เกี่ยวกับ</translation>
|
||||
<translation type="vanished">เกี่ยวกับ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>ผู้สร้าง</translation>
|
||||
<translation type="vanished">ผู้สร้าง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>ขอขอบคุณ</translation>
|
||||
<translation type="vanished">ขอขอบคุณ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>การแปล</translation>
|
||||
<translation type="vanished">การแปล</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>ข้อมูลทางเทคนิค</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">ข้อมูลทางเทคนิค</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="tr">
|
||||
<TS version="2.1" language="tr">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Eklenti ekle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Ara:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Ara:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Eklenti ekle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Kapat</translation>
|
||||
<translation type="vanished">Kapat</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Versiyon: %1</translation>
|
||||
<translation type="vanished">Versiyon: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Qt teknolojilerini temel alan gelişmiş, kullanımı kolay ve hızlı masaüstü ortamı.</translation>
|
||||
<translation type="vanished">Qt teknolojilerini temel alan gelişmiş, kullanımı kolay ve hızlı masaüstü ortamı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Telif Hakkı: %1-%2 %3</translation>
|
||||
<translation type="vanished">Telif Hakkı: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Anasayfa: %1</translation>
|
||||
<translation type="vanished">Anasayfa: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Lisans: %1</translation>
|
||||
<translation type="vanished">Lisans: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt tüm dünyadaki çeviri ekiplerinin çalışmalarına sayesinde birçok dil çevrilir.</translation>
|
||||
<translation type="vanished">LXQt tüm dünyadaki çeviri ekiplerinin çalışmalarına sayesinde birçok dil çevrilir.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">Hayır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt Masaüstü araç kutusu - Teknik bilgi</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt Masaüstü araç kutusu - Teknik bilgi</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Güç Yöneticisi Hatası</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Güç Yöneticisi Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Uyku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Askıya Al</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Yeniden Başlat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Bilgisayarı Kapat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Oturumu Kapat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Oturum Askıya Alma</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Oturum Askıya Alma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Bilgisayarınızı gerçekten askıya almak istiyor musunuz?<p>Bilgisayarı düşük güç tüketiminde askıya alır. Güç gittiği takdirde sistem durumu saklanmaz.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Oturum Uyku Kipi</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Oturum Uyku Kipi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Bilgisayarınızı gerçekten uyku kipine geçirmek istiyor musunuz?<p>Bilgisayarı düşük güç tüketiminde uyku kipine alır. Güç gittiği takdirde sistem durumu korunur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Oturum Yeniden Başlatma</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Oturum Yeniden Başlatma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Bilgisayarınızı gerçekten yeniden başlatmak istiyor musunuz? Kaydedilmemiş veriler kaybolacaktır...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Oturum Kapatma</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Oturum Kapatma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Bilgisayarınızı gerçekten kapatmak istiyor musunuz? Kaydedilmemiş veriler kaybolacaktır...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Oturumu Kapatma</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Oturumu Kapatma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Oturumunuzu gerçekten kapatmak istiyor musunuz? Kaydedilmemiş veriler kaybolacaktır...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Güç Yöneticisi Hatası</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Güç Yöneticisi Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Uykuya alma başarısız oldu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Askıya alma başarısız oldu.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Ekranı Kilitle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Ekran Koruyucusu Etkinleştirme Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Ekran koruyucu başlatılırken hata oluştu. xdg-screensaver çöktüğünden başlatılamadı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Ekran koruyucu başlatılırken hata oluştu. xdg-screensaver düzgün biçimde kurulmamış,</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Ekran koruyucu başlatılırken hata oluştu. xdg-screensaver başlatılamıyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Ekran koruyucu başlatılırken hata oluştu. xdg-screensaver argümanlarında sözdizimi hatası.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ekran koruyucu başlatılırken hata oluştu. xscreensaver uygulamasının kurulu ve çalışmakta olduğundan emin olun.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Ekran koruyucu başlatılırken hata oluştu. 'etkinleştirme' eylemi başarısız oldu. xscreensaver uygulamasının kurulu ve çalışmakta olduğundan emin olun.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Ekran Koruyucu başlarken bir hata oluştur. Bilinmeyen hata - xdg-screensaver=%1 den okunamayan geri dönüş değeri.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Temizle</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>LxQt Hakkında</translation>
|
||||
<translation type="vanished">LXQt Hakkında</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Hakkında</translation>
|
||||
<translation type="vanished">Hakkında</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Yazarlar</translation>
|
||||
<translation type="vanished">Yazarlar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Teşekkürler</translation>
|
||||
<translation type="vanished">Teşekkürler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Çeviriler</translation>
|
||||
<translation type="vanished">Çeviriler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Teknik Bilgi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Teknik Bilgi</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="uk">
|
||||
<TS version="2.1" language="uk">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">Додати плаґіни</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>Шукати:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Шукати:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">Додати плаґін</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>Закрити</translation>
|
||||
<translation type="vanished">Закрити</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>Версія: %1</translation>
|
||||
<translation type="vanished">Версія: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Передове, легке у використанні та швидке стільникове середовище засноване на технологіях Qt.</translation>
|
||||
<translation type="vanished">Передове, легке у використанні та швидке стільникове середовище засноване на технологіях Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Авторське право: %1-%2 %3</translation>
|
||||
<translation type="vanished">Авторське право: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Домашня сторінка: %1</translation>
|
||||
<translation type="vanished">Домашня сторінка: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>Ліцензія: %1</translation>
|
||||
<translation type="vanished">Ліцензія: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt перекладено на багато мов завдяки праці команд перекладачів по всьому світу.</translation>
|
||||
<translation type="vanished">LXQt перекладено на багато мов завдяки праці команд перекладачів по всьому світу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,7 +68,7 @@
|
||||
<translation type="obsolete">Ні</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Інструменти стільниці LXQt - Технічна інформація</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Збій менеджера живлення LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Збій менеджера живлення LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Приспати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Призупинити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Перезавантажити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Вимкнути</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>Вийти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Призупинити комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Дійсно призупинити комп’ютер?<p>Це переведе його в режим зниженого енергоспоживання. При втраті живлення стан системи не збережеться.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Приспати комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Дійсно приспати комп’ютер?<p>Це переведе його в режим зниженого енергоспоживання. При втраті живлення стан системи збережеться.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Перезавантажити комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>Дійсно перезавантажити комп’ютер? Усю незбережену роботу буде втрачено...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Вимкнути комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>Дійсно вимкнути комп’ютер? Усю незбережену роботу буде втрачено...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Вийти з сеансу LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Вийти з сеансу LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>Дійсно завершити сеанс? Усю незбережену роботу буде втрачено...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Збій менеджера живлення LxQt</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Збій менеджера живлення LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Не вдалося приспати.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>Не вдалося призупинити.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Заблокувати екран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Збій запуску зберігача екрану</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. xdg-screensaver зазнав краху.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. xdg-screensaver не встановлено коректним чином.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. Не вдалося запустити xdg-screensaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. В аргументах xdg-screensaver синтаксична помилка.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. Впевніться, що xscreensaver коректно встановлено та запущено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. Не вдалося виконати дію "activate". Впевніться, що xscreensaver коректно встановлено та запущено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>Стався збій при запуску зберігача екрану. Невідома помилка - xdg-screensaver повернув недокументоване значення = %1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Очистити</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation> Про LxQt</translation>
|
||||
<translation type="vanished"> Про LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>Про</translation>
|
||||
<translation type="vanished">Про</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Автори</translation>
|
||||
<translation type="vanished">Автори</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Подяка</translation>
|
||||
<translation type="vanished">Подяка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Перекладачі</translation>
|
||||
<translation type="vanished">Перекладачі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>Технічна інформація</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">Технічна інформація</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="zh_CN">
|
||||
<TS version="2.1" language="zh_CN">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">添加插件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>搜索:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">搜索:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">添加插件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>关闭</translation>
|
||||
<translation type="vanished">关闭</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>版本:%1</translation>
|
||||
<translation type="vanished">版本:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>基于 Qt 技术的高级、易用、快速的桌面环境</translation>
|
||||
<translation type="vanished">基于 Qt 技术的高级、易用、快速的桌面环境</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>版权所有:%1-%2 %3</translation>
|
||||
<translation type="vanished">版权所有:%1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>主页:%1</translation>
|
||||
<translation type="vanished">主页:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>协议:%1</translation>
|
||||
<translation type="vanished">协议:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt 已被翻译成多种语言,特别感谢来自世界各地的翻译团队的努力。</translation>
|
||||
<translation type="vanished">LXQt 已被翻译成多种语言,特别感谢来自世界各地的翻译团队的努力。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">否</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt 桌面工具箱 - 技术信息</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt 桌面工具箱 - 技术信息</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt电源管理器错误</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt电源管理器错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>休眠</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>挂起</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>重启</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>关机</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>注销</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>挂起LxQt会话</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>挂起LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>你真的要挂起你的计算机吗?<p>挂起的计算机将进入低功耗状态。 电源丢失后系统状态不会被保存。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>休眠LxQt会话</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>休眠LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>你真的要将你的计算机休眠吗?<p>休眠的计算机将进入低功耗状态。 电源丢失后系统状态不会被保存。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>重启LxQt会话</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>重启LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>你真的想要重启你的计算机吗? 所有未保存的任务都将丢失……</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>关闭电源</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>你真的想要关闭你的计算机吗? 所有未保存的任务都将丢失……</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>注销LxQt会话</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>注销LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>你真的想要注销你的计算机吗? 所有未保存的任务都将丢失……</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt电源管理器错误</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt电源管理器错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>休眠失败。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>挂起失败。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>锁屏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>屏幕保护程序激活出错</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>启动屏幕保护时一个错误发生:xdg-screensaver由于崩溃而不能启动。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>启动屏幕保护时一个错误发生:xdg-screensaver没有正确地安装。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>启动屏幕保护时一个错误发生:xdg-screensaver不能启动。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>启动屏幕保护时一个错误发生:xdg-screensaver参数有语法错误。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>启动屏幕保护时一个错误发生:请确保你安装并运行了xscreensaver。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>启动屏幕保护时一个错误发生:“激活”失败。请确保你安装并运行了xscreensaver。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>启动屏幕保护时出错。未知错误 - xdg-screensaver=%1 返回非正式返回值。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">清除</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>关于LxQt</translation>
|
||||
<translation type="vanished">关于LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>关于</translation>
|
||||
<translation type="vanished">关于</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>作者</translation>
|
||||
<translation type="vanished">作者</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>致谢</translation>
|
||||
<translation type="vanished">致谢</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>翻译</translation>
|
||||
<translation type="vanished">翻译</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>技术信息</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">技术信息</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="zh_TW">
|
||||
<TS version="2.1" language="zh_TW">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
@ -8,23 +8,16 @@
|
||||
<translation type="obsolete">新增小工具</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="22"/>
|
||||
<source>Search:</source>
|
||||
<translation>搜尋:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="52"/>
|
||||
<source>Add Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">搜尋:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
<translation type="obsolete">新增小工具</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.ui" line="59"/>
|
||||
<source>Close</source>
|
||||
<translation>關閉</translation>
|
||||
<translation type="vanished">關閉</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -36,65 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="86"/>
|
||||
<source>Version: %1</source>
|
||||
<translation>版本: %1</translation>
|
||||
<translation type="vanished">版本: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="99"/>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>基於Qt技術打造出來使用容易、進階、快速的桌面環境</translation>
|
||||
<translation type="vanished">基於Qt技術打造出來使用容易、進階、快速的桌面環境</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="101"/>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="103"/>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>版權所有: %1.%2 %3</translation>
|
||||
<translation type="vanished">版權所有: %1.%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="105"/>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>首頁: %1</translation>
|
||||
<translation type="vanished">首頁: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="107"/>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation>憑證 :%1</translation>
|
||||
<translation type="vanished">憑證 :%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="117"/>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="119"/>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="137"/>
|
||||
<source>Special thanks to:</source>
|
||||
<comment>About dialog, 'Thanks' tab text</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.cpp" line="144"/>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation>LXQt已經有由世界各地的翻譯團隊所提供多種語言的翻譯。</translation>
|
||||
<translation type="vanished">LXQt已經有由世界各地的翻譯團隊所提供多種語言的翻譯。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -105,8 +68,8 @@
|
||||
<translation type="obsolete">否</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt桌面工具箱-技術資訊</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt桌面工具箱-技術資訊</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -167,19 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<location filename="../addplugindialog/lxqtaddplugindialog.cpp" line="199"/>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt電源管理員錯誤</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt電源管理員錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -188,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -196,155 +151,155 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="113"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>休眠</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="120"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
<source>Suspend</source>
|
||||
<translation>暫停</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="127"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="126"/>
|
||||
<source>Reboot</source>
|
||||
<translation>重新啟動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="134"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="133"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>關機</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="141"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="140"/>
|
||||
<source>Logout</source>
|
||||
<translation>登出</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>暫停LxQt會話</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>暫停LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="154"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>你確定要讓您的電腦進入暫停模式嗎?<p>暫停主機可以節省耗能。切斷電源後系統狀況也將遺失。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>休眠LxQt會話</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>休眠LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="164"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>您確定要讓電腦進入休眠模式嗎?<p>休眠主機可以節省耗能。切斷電源後系統狀況也將遺失。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>重新啟動LxQt會話</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>重新啟動LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="174"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
<source>Do you want to really restart your computer? All unsaved work will be lost...</source>
|
||||
<translation>您確定要重新啟動您的電腦嗎?所有未儲存工作將會遺失……</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>關閉電源</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="184"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
<source>Do you want to really switch off your computer? All unsaved work will be lost...</source>
|
||||
<translation>您確定要關閉您的電腦嗎?所有未儲存工作將會遺失……</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>登出LxQt會話</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>登出LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="194"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
<source>Do you want to really logout? All unsaved work will be lost...</source>
|
||||
<translation>您確定要登出嗎?所有未儲存工作將會遺失……</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt電源管理員錯誤</translation>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt電源管理員錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="202"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>休眠失敗。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="207"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>Suspend failed.</source>
|
||||
<translation>暫停失敗。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="52"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
<translation>螢幕上鎖</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="70"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="78"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="86"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="98"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="106"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>啟動螢幕保護程序錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="72"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>啟動螢幕保護時發生錯誤:因為xdg-screensaver崩潰而無法啟動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="80"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver is not installed correctly.</source>
|
||||
<translation>啟動螢幕保護時發生錯誤:xdg-screensaver並沒有正確安裝。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="88"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>啟動螢幕保護時發生錯誤:xdg-screensaver無法啟動。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="100"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>啟動螢幕保護時發生錯誤:xdg-screensaver參數語法錯誤。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="108"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>啟動螢幕保護時發生錯誤:請確定您安裝並運行了xscreensaver。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="116"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>啟動螢幕保護時發生錯誤:啟動失敗。請確定您安裝並運行了xscreensaver。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="125"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
<source>An error occurred starting screensaver. Unknown error - undocumented return value from xdg-screensaver=%1.</source>
|
||||
<translation>啟動螢幕保護程式時發生錯誤。未知錯誤 - 從xdg-screensaver=%1的無證回傳值</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">清除</translation>
|
||||
@ -378,44 +333,33 @@
|
||||
<context>
|
||||
<name>about</name>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="14"/>
|
||||
<source> About LXQt</source>
|
||||
<translation>關於LxQt</translation>
|
||||
<translation type="vanished">關於LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="66"/>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation>關於</translation>
|
||||
<translation type="vanished">關於</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="83"/>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>作者</translation>
|
||||
<translation type="vanished">作者</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="100"/>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>感謝</translation>
|
||||
<translation type="vanished">感謝</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="117"/>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>翻譯</translation>
|
||||
<translation type="vanished">翻譯</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="134"/>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation>技術資訊</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aboutdialog/lxqtaboutdialog.ui" line="165"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="vanished">技術資訊</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user