Adding upstream version 0.9.0+20150807.
Signed-off-by: Andrew Lee (李健秋) <ajqlee@debian.org>
This commit is contained in:
parent
1d96dee67a
commit
80d6a5b53b
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
build
|
@ -1,26 +1,25 @@
|
||||
cmake_minimum_required(VERSION 2.8.11)
|
||||
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||||
|
||||
project(lxqt-session)
|
||||
|
||||
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
|
||||
|
||||
# additional cmake files
|
||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
||||
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
find_package(KF5WindowSystem REQUIRED)
|
||||
find_package(Qt5Widgets REQUIRED QUIET)
|
||||
find_package(Qt5DBus REQUIRED QUIET)
|
||||
find_package(Qt5X11Extras REQUIRED QUIET)
|
||||
find_package(Qt5LinguistTools REQUIRED QUIET)
|
||||
find_package(Qt5Xdg REQUIRED QUIET)
|
||||
|
||||
find_package(lxqt REQUIRED QUIET)
|
||||
include(${LXQT_USE_FILE})
|
||||
|
||||
include(LXQtCompilerSettings NO_POLICY_SCOPE)
|
||||
include(LXQtTranslate)
|
||||
|
||||
find_package(PkgConfig REQUIRED QUIET)
|
||||
@ -29,7 +28,7 @@ find_package(X11 REQUIRED)
|
||||
|
||||
add_subdirectory(lxqt-session)
|
||||
add_subdirectory(lxqt-config-session)
|
||||
add_subdirectory(lxqtleave)
|
||||
add_subdirectory(lxqt-leave)
|
||||
|
||||
# building tarball with CPack -------------------------------------------------
|
||||
include(InstallRequiredSystemLibraries)
|
||||
|
@ -1,28 +0,0 @@
|
||||
# some system (rpm builds) setup LIB_SUFFIX for cmake. If there is no set, try to get it from system
|
||||
if(NOT DEFINED LIB_SUFFIX AND NOT DEFINED LIB_SUFFIX_ALREADY_SET)
|
||||
MESSAGE(STATUS "*********************************************************************")
|
||||
MESSAGE(STATUS "LIB_SUFFIX variable is not defined. It will be autodetected now")
|
||||
MESSAGE(STATUS "You can set it manually with -DLIB_SUFFIX=<value> (64 for example)")
|
||||
|
||||
# All 32bit system have empty lib suffix
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
# If there is lib64 dir, set suffix to 64
|
||||
if(IS_DIRECTORY ${CMAKE_INSTALL_PREFIX}/lib64)
|
||||
set(LIB_SUFFIX 64)
|
||||
elseif(IS_DIRECTORY ${CMAKE_INSTALL_PREFIX}/lib)
|
||||
set(LIB_SUFFIX "")
|
||||
else()
|
||||
message(WARNING "LIB_SUFFIX cannot be autodetected. No ${CMAKE_INSTALL_PREFIX}/lib neither ${CMAKE_INSTALL_PREFIX}/lib64 found.")
|
||||
set(LIB_SUFFIX "")
|
||||
endif()
|
||||
else()
|
||||
set(LIB_SUFFIX "")
|
||||
endif()
|
||||
|
||||
set(LIB_SUFFIX_ALREADY_SET 1)
|
||||
|
||||
message(STATUS "LIB_SUFFIX autodetected as '${LIB_SUFFIX}', libraries will be installed into ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
|
||||
MESSAGE(STATUS "*********************************************************************")
|
||||
else()
|
||||
message(STATUS "LIB_SUFFIX already set: ${LIB_SUFFIX}")
|
||||
endif()
|
@ -1,10 +1,5 @@
|
||||
project(lxqt-config-session)
|
||||
|
||||
include_directories(
|
||||
"${CMAKE_SOURCE_DIR}"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}"
|
||||
)
|
||||
|
||||
set(lxqt-sessioncfg_HDRS
|
||||
sessionconfigwindow.h
|
||||
@ -40,8 +35,6 @@ set(lxqt-sessioncfg_UI_FILES
|
||||
environmentpage.ui
|
||||
)
|
||||
|
||||
qt5_wrap_ui(lxqt-sessioncfg_UIS ${lxqt-sessioncfg_UI_FILES})
|
||||
|
||||
# Translations
|
||||
lxqt_translate_ts(lxqt-sessioncfg_QM_FILES
|
||||
UPDATE_TRANSLATIONS
|
||||
@ -59,7 +52,6 @@ lxqt_translate_desktop(lxqt-sessioncfg_DESKTOP_FILES SOURCES lxqt-config-session
|
||||
|
||||
add_executable(lxqt-config-session
|
||||
${lxqt-sessioncfg_SRCS}
|
||||
${lxqt-sessioncfg_UIS}
|
||||
${lxqt-sessioncfg_DESKTOP_FILES}
|
||||
${lxqt-sessioncfg_QM_FILES}
|
||||
${lxqt-sessioncfg_QM_LOADER})
|
||||
@ -69,13 +61,18 @@ target_link_libraries(lxqt-config-session
|
||||
Qt5::Widgets
|
||||
Qt5::DBus
|
||||
Qt5::X11Extras
|
||||
${LXQT_LIBRARIES}
|
||||
${QTXDG_LIBRARIES}
|
||||
lxqt
|
||||
)
|
||||
|
||||
INSTALL(TARGETS
|
||||
lxqt-config-session
|
||||
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
||||
INSTALL(TARGETS lxqt-config-session RUNTIME DESTINATION bin)
|
||||
install(FILES
|
||||
${lxqt-sessioncfg_DESKTOP_FILES}
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_PREFIX}/share/applications
|
||||
"${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
@ -68,7 +68,7 @@ void BasicSettings::restoreSettings()
|
||||
SessionConfigWindow::handleCfgComboBox(ui->wmComboBox, knownWMs, wm);
|
||||
m_moduleModel->reset();
|
||||
|
||||
ui->leaveConfirmationCheckBox->setChecked(m_settings->value("leave_confirmation", true).toBool());
|
||||
ui->leaveConfirmationCheckBox->setChecked(m_settings->value("leave_confirmation", false).toBool());
|
||||
}
|
||||
|
||||
void BasicSettings::save()
|
||||
|
@ -114,7 +114,7 @@
|
||||
<item>
|
||||
<widget class="QCheckBox" name="leaveConfirmationCheckBox">
|
||||
<property name="text">
|
||||
<string>Ask confirmation to leave session</string>
|
||||
<string>Ask for confirmation to leave session</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -24,7 +24,7 @@
|
||||
* Boston, MA 02110-1301 USA
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
|
||||
#include <LXQt/SingleApplication>
|
||||
|
||||
#include <XdgIcon>
|
||||
@ -35,7 +35,7 @@
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
LxQt::SingleApplication a(argc, argv);
|
||||
|
||||
|
||||
SessionConfigWindow w;
|
||||
a.setActivationWindow(&w);
|
||||
w.show();
|
||||
|
@ -35,7 +35,7 @@
|
||||
class SessionConfigWindow : public LxQt::ConfigDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
public:
|
||||
SessionConfigWindow();
|
||||
~SessionConfigWindow();
|
||||
|
@ -129,7 +129,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask confirmation to leave session</source>
|
||||
<source>Ask for confirmation to leave session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -178,27 +178,27 @@
|
||||
<context>
|
||||
<name>EnvironmentPage</name>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="30"/>
|
||||
<location filename="../environmentpage.ui" line="17"/>
|
||||
<source>Add</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="37"/>
|
||||
<location filename="../environmentpage.ui" line="24"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="63"/>
|
||||
<location filename="../environmentpage.ui" line="50"/>
|
||||
<source>Environment Variables (Advanced)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="74"/>
|
||||
<location filename="../environmentpage.ui" line="61"/>
|
||||
<source>Variable Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="79"/>
|
||||
<location filename="../environmentpage.ui" line="66"/>
|
||||
<source>Value</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,4 +1,3 @@
|
||||
# Translations
|
||||
Comment[de]=Konfiguriere die LxQt-Qt Sitzungsmodule
|
||||
GenericName[de]=LxQt Sitzungskonfiguration
|
||||
Name[de]=LxQt Sitzungskonfiguration
|
||||
Name[de]=Sitzungskonfiguration
|
||||
GenericName[de]=LXQt Sitzungskonfiguration
|
||||
Comment[de]=Die LXQt Sitzung konfigurieren
|
||||
|
@ -6,32 +6,32 @@
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="14"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="20"/>
|
||||
<source>Name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Name:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="27"/>
|
||||
<source>Search...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Suche...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="47"/>
|
||||
<source>Command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Befehl:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="57"/>
|
||||
<source>Wait for system tray</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Warte auf System Tray</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.cpp" line="59"/>
|
||||
<source>Select Application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Anwendung auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -39,22 +39,22 @@
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="177"/>
|
||||
<source>Global Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Globaler Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="179"/>
|
||||
<source>LXQt Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="197"/>
|
||||
<source>Location: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ort: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="199"/>
|
||||
<source>Overrides: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Überschreibt: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -62,80 +62,80 @@
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="17"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="24"/>
|
||||
<source>Add</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="31"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="44"/>
|
||||
<source>Application Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Anwendung-Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>File '%1' already exists!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Datei '%1' existiert bereits!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>BasicSettings</name>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="23"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation>Grundeinstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="30"/>
|
||||
<source>Window Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Fenstermanager</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="49"/>
|
||||
<source>Search...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Suchen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="59"/>
|
||||
<source>LXQt Modules</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt Module</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="65"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Start</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="72"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="111"/>
|
||||
<source>Leave Session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask confirmation to leave session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="23"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stopp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.cpp" line="84"/>
|
||||
<source>Select a window manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Fenstermanager auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="111"/>
|
||||
<source>Leave Session</source>
|
||||
<translation>Sitzung beenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask for confirmation to leave session</source>
|
||||
<translation>Beenden der Sitzung bestätigen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -143,12 +143,12 @@
|
||||
<message>
|
||||
<location filename="../defaultappspage.cpp" line="72"/>
|
||||
<source>Select a terminal emulator</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Terminal-Emulator auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.cpp" line="77"/>
|
||||
<source>Select a web browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Web-Browser auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -156,51 +156,51 @@
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="23"/>
|
||||
<source>Default Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Standardanwendungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="32"/>
|
||||
<source>Terminal Emulation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Terminal-Emulator:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="52"/>
|
||||
<location filename="../defaultappspage.ui" line="79"/>
|
||||
<source>Search...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Suche...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="59"/>
|
||||
<source>Web Browser:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Web-Browser:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EnvironmentPage</name>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="30"/>
|
||||
<location filename="../environmentpage.ui" line="17"/>
|
||||
<source>Add</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="37"/>
|
||||
<location filename="../environmentpage.ui" line="24"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="63"/>
|
||||
<location filename="../environmentpage.ui" line="50"/>
|
||||
<source>Environment Variables (Advanced)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Umgebungsvariablen (Erweitert)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="74"/>
|
||||
<location filename="../environmentpage.ui" line="61"/>
|
||||
<source>Variable Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Variablenname</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="79"/>
|
||||
<location filename="../environmentpage.ui" line="66"/>
|
||||
<source>Value</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Wert</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -208,7 +208,7 @@
|
||||
<message>
|
||||
<location filename="../modulemodel.cpp" line="85"/>
|
||||
<source>Running</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Läuft</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -216,37 +216,37 @@
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="43"/>
|
||||
<source>LXQt Session Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt Sitzungseinstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="46"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Grundeinstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="52"/>
|
||||
<source>Default Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Standardanwendungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="55"/>
|
||||
<source>Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="60"/>
|
||||
<source>Environment (Advanced)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Umgebung (Erweitert)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="84"/>
|
||||
<source>Session Restart Required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Erneute Anmeldung erforderlich</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="85"/>
|
||||
<source>You need to restart desktop session (lxqt-session) to reload settings. Use logout from the main menu.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Sie müssen sich erneut anmelden (lxqt-session), damit Ihre Änderungen aktiv werden. Klicken Sie dafür auf "Abmelden" im Hauptmenü.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -1,4 +0,0 @@
|
||||
# Translations
|
||||
Comment[de_DE]=LxQt-Qt Sitzungsmodul konfigurieren
|
||||
GenericName[de_DE]=LxQt Sitzungskonfigurator
|
||||
Name[de_DE]=LxQt Sitzungskonfigurator
|
@ -1,264 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de_DE">
|
||||
<context>
|
||||
<name>AutoStartEdit</name>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="14"/>
|
||||
<source>Edit</source>
|
||||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="20"/>
|
||||
<source>Name:</source>
|
||||
<translation>Name:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="27"/>
|
||||
<source>Search...</source>
|
||||
<translation>Suche...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="47"/>
|
||||
<source>Command:</source>
|
||||
<translation>Befehl:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="57"/>
|
||||
<source>Wait for system tray</source>
|
||||
<translation>Warte auf System Tray</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.cpp" line="59"/>
|
||||
<source>Select Application</source>
|
||||
<translation>Anwendung auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutoStartItemModel</name>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="177"/>
|
||||
<source>Global Autostart</source>
|
||||
<translation>Globaler Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Autostart</source>
|
||||
<translation type="vanished">LxQt Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="179"/>
|
||||
<source>LXQt Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="197"/>
|
||||
<source>Location: %1</source>
|
||||
<translation>Ort: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="199"/>
|
||||
<source>Overrides: %1</source>
|
||||
<translation>Überschreibung: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutoStartPage</name>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="17"/>
|
||||
<source>Delete</source>
|
||||
<translation>Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="24"/>
|
||||
<source>Add</source>
|
||||
<translation>Hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="31"/>
|
||||
<source>Edit</source>
|
||||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="44"/>
|
||||
<source>Application Autostart</source>
|
||||
<translation>Anwendung-Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>Error</source>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>File '%1' already exists!</source>
|
||||
<translation>Datei '%1' existiert bereits!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>BasicSettings</name>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="30"/>
|
||||
<source>Window Manager</source>
|
||||
<translation>Fenstermanager</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="49"/>
|
||||
<source>Search...</source>
|
||||
<translation>Suchen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="59"/>
|
||||
<source>LXQt Modules</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="111"/>
|
||||
<source>Leave Session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask confirmation to leave session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="23"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation>Grundeinstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Modules</source>
|
||||
<translation type="vanished">LxQt-Module</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="65"/>
|
||||
<source>Start</source>
|
||||
<translation>Start</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="72"/>
|
||||
<source>Stop</source>
|
||||
<translation>Stopp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.cpp" line="84"/>
|
||||
<source>Select a window manager</source>
|
||||
<translation>Fenstermanager auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultApps</name>
|
||||
<message>
|
||||
<location filename="../defaultappspage.cpp" line="72"/>
|
||||
<source>Select a terminal emulator</source>
|
||||
<translation>Terminal-Emulator auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.cpp" line="77"/>
|
||||
<source>Select a web browser</source>
|
||||
<translation>Web Browser auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultAppsPage</name>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="23"/>
|
||||
<source>Default Applications</source>
|
||||
<translation>Standardanwendungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="32"/>
|
||||
<source>Terminal Emulation:</source>
|
||||
<translation>Terminal-Emulator:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="52"/>
|
||||
<location filename="../defaultappspage.ui" line="79"/>
|
||||
<source>Search...</source>
|
||||
<translation>Suche...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="59"/>
|
||||
<source>Web Browser:</source>
|
||||
<translation>Web Browser:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EnvironmentPage</name>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="30"/>
|
||||
<source>Add</source>
|
||||
<translation>Hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="37"/>
|
||||
<source>Delete</source>
|
||||
<translation>Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="63"/>
|
||||
<source>Environment Variables (Advanced)</source>
|
||||
<translation>Umgebungsvariablen (Erweitert)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="74"/>
|
||||
<source>Variable Name</source>
|
||||
<translation>Variablenname</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="79"/>
|
||||
<source>Value</source>
|
||||
<translation>Wert</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ModuleModel</name>
|
||||
<message>
|
||||
<location filename="../modulemodel.cpp" line="85"/>
|
||||
<source>Running</source>
|
||||
<translation>Läuft</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SessionConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Session Configuration</source>
|
||||
<translation type="vanished">LxQt Sitzungs-Konfiguration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="43"/>
|
||||
<source>LXQt Session Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="46"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation>Grundeinstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="52"/>
|
||||
<source>Default Applications</source>
|
||||
<translation>Standardanwendungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="55"/>
|
||||
<source>Autostart</source>
|
||||
<translation>Autostart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="60"/>
|
||||
<source>Environment (Advanced)</source>
|
||||
<translation>Umgebung (Erweitert)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="84"/>
|
||||
<source>Session Restart Required</source>
|
||||
<translation>Erneute Anmeldung erforderlich</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="85"/>
|
||||
<source>You need to restart desktop session (lxqt-session) to reload settings. Use logout from the main menu.</source>
|
||||
<translation>Sie müssen sich erneut anmelden (lxqt-session), damit Ihre Änderungen aktiv werden. Klicken Sie dafür auf "Abmelden" im Hauptmenü.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="hu">
|
||||
<TS version="2.0" language="hu">
|
||||
<context>
|
||||
<name>AutoStartEdit</name>
|
||||
<message>
|
||||
@ -43,12 +43,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Autostart</source>
|
||||
<translation type="vanished">LxQt automatikus indítás</translation>
|
||||
<translation>LxQt automatikus indítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="179"/>
|
||||
<source>LXQt Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt automatikus indítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="197"/>
|
||||
@ -91,7 +91,7 @@
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>File '%1' already exists!</source>
|
||||
<translation>A(z) „%1” fájl már létezik.</translation>
|
||||
<translation>Van már '%1' fájl!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -109,17 +109,17 @@
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="59"/>
|
||||
<source>LXQt Modules</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt modulok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="111"/>
|
||||
<source>Leave Session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Munkamenet elhagyása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask confirmation to leave session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Jóváhagyás az elhagyás előtt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="23"/>
|
||||
@ -128,7 +128,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Modules</source>
|
||||
<translation type="vanished">LxQt modulok</translation>
|
||||
<translation>LxQt modulok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="65"/>
|
||||
@ -223,12 +223,12 @@
|
||||
<name>SessionConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Session Configuration</source>
|
||||
<translation type="vanished">LxQt munkamenet-beállítás</translation>
|
||||
<translation>LxQt munkamenet konfiguráció</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="43"/>
|
||||
<source>LXQt Session Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LxQt munkamenet-beállítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="46"/>
|
||||
@ -253,7 +253,7 @@
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="84"/>
|
||||
<source>Session Restart Required</source>
|
||||
<translation>A munkamenet újraindítása szükséges</translation>
|
||||
<translation>A munkamenet újraindítandó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="85"/>
|
||||
|
@ -1,37 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="hu_HU">
|
||||
<TS version="2.0" language="hu_HU">
|
||||
<context>
|
||||
<name>AutoStartEdit</name>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="14"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Szerkesztés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="20"/>
|
||||
<source>Name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Név:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="27"/>
|
||||
<source>Search...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Keresés...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="47"/>
|
||||
<source>Command:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Parancs:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.ui" line="57"/>
|
||||
<source>Wait for system tray</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Várakozás a paneltálcára</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartedit.cpp" line="59"/>
|
||||
<source>Select Application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alkalmazás kiválasztása</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -39,22 +39,22 @@
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="177"/>
|
||||
<source>Global Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Automatikus indítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="179"/>
|
||||
<source>LXQt Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt automatikus indítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="197"/>
|
||||
<source>Location: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hely: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="199"/>
|
||||
<source>Overrides: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Felülbírálások: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -62,32 +62,32 @@
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="17"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Törlés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="24"/>
|
||||
<source>Add</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hozzáadás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="31"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Szerkesztés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.ui" line="44"/>
|
||||
<source>Application Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alkalmazás automatikus indítása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartpage.cpp" line="82"/>
|
||||
<source>File '%1' already exists!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Van már '%1' fájl!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -95,47 +95,47 @@
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="30"/>
|
||||
<source>Window Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ablakkezelő</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="49"/>
|
||||
<source>Search...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Keresés...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="59"/>
|
||||
<source>LXQt Modules</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt modulok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="65"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Indítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="72"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Leállítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="111"/>
|
||||
<source>Leave Session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Munkamenet elhagyása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask confirmation to leave session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Jóváhagyás az elhagyás előtt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="23"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alapbeállítások</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.cpp" line="84"/>
|
||||
<source>Select a window manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ablakkezelő választása</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -143,12 +143,12 @@
|
||||
<message>
|
||||
<location filename="../defaultappspage.cpp" line="72"/>
|
||||
<source>Select a terminal emulator</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Terminálemulátor választása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.cpp" line="77"/>
|
||||
<source>Select a web browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Webböngésző választása</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -156,23 +156,23 @@
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="23"/>
|
||||
<source>Default Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alapértelmezett alkalmazások</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="32"/>
|
||||
<source>Terminal Emulation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Terminálemuláció:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="52"/>
|
||||
<location filename="../defaultappspage.ui" line="79"/>
|
||||
<source>Search...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Keresés…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../defaultappspage.ui" line="59"/>
|
||||
<source>Web Browser:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Webböngésző:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -180,27 +180,27 @@
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="30"/>
|
||||
<source>Add</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hozzáadás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="37"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Törlés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="63"/>
|
||||
<source>Environment Variables (Advanced)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Környezeti változók (speciális)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="74"/>
|
||||
<source>Variable Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Változónév</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../environmentpage.ui" line="79"/>
|
||||
<source>Value</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Érték</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -208,7 +208,7 @@
|
||||
<message>
|
||||
<location filename="../modulemodel.cpp" line="85"/>
|
||||
<source>Running</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Futó</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -216,37 +216,37 @@
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="43"/>
|
||||
<source>LXQt Session Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LxQt munkamenet-beállítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="46"/>
|
||||
<source>Basic Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alapbeállítások</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="52"/>
|
||||
<source>Default Applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alapértelmezett alkalmazások</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="55"/>
|
||||
<source>Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Automatikus indítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="60"/>
|
||||
<source>Environment (Advanced)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Környezet (speciális)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="84"/>
|
||||
<source>Session Restart Required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>A munkamenet újraindítandó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="85"/>
|
||||
<source>You need to restart desktop session (lxqt-session) to reload settings. Use logout from the main menu.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Újra kell indítania a munkamenetet (lxqt-session) a beállítások újratöltéséhez. Használja a főmenü kijelentkezés pontját.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -1,4 +1,3 @@
|
||||
# Translations
|
||||
Comment[it]=Configura la sessione LxQt
|
||||
GenericName[it]=Impostazioni della sessione LxQt
|
||||
Name[it]=Impostazioni della sessione LxQt
|
||||
Name[it]=Impostazioni della sessione
|
||||
Comment[it]=Configura i moduli della sessione di LXQt
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="it_IT">
|
||||
<TS version="2.1" language="it">
|
||||
<context>
|
||||
<name>AutoStartEdit</name>
|
||||
<message>
|
||||
@ -48,7 +48,7 @@
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="179"/>
|
||||
<source>LXQt Autostart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../autostartmodel.cpp" line="197"/>
|
||||
@ -109,17 +109,17 @@
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="59"/>
|
||||
<source>LXQt Modules</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Moduli di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="111"/>
|
||||
<source>Leave Session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Chiusura sessione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="117"/>
|
||||
<source>Ask confirmation to leave session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Chiedi una conferma per terminare la sessione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../basicsettings.ui" line="23"/>
|
||||
@ -228,7 +228,7 @@
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="43"/>
|
||||
<source>LXQt Session Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Impostazioni della sessione LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../sessionconfigwindow.cpp" line="46"/>
|
@ -1,4 +0,0 @@
|
||||
# Translations
|
||||
Comment[it_IT]=Configura il modulo sessione di LxQt-Qt
|
||||
GenericName[it_IT]=Strumento di configurazione della sessione di LxQt
|
||||
Name[it_IT]=Strumento di configurazione della sessione di LxQt
|
@ -1,4 +1,4 @@
|
||||
# Translations
|
||||
Comment[zh_TW]=LXDE-Qt會話模組設定
|
||||
Comment[zh_TW]=LXQt會話模組設定
|
||||
GenericName[zh_TW]=LxQt會話設定
|
||||
Name[zh_TW]=LxQt會話設定
|
||||
|
69
lxqt-leave/CMakeLists.txt
Normal file
69
lxqt-leave/CMakeLists.txt
Normal file
@ -0,0 +1,69 @@
|
||||
project(lxqt-leave)
|
||||
|
||||
set(CPP_FILES
|
||||
main.cpp
|
||||
leavedialog.cpp
|
||||
)
|
||||
|
||||
set(H_FILES
|
||||
leavedialog.h
|
||||
)
|
||||
|
||||
set(UI_FILES
|
||||
leavedialog.ui
|
||||
)
|
||||
|
||||
|
||||
# Translations **********************************
|
||||
lxqt_translate_desktop(DESKTOP_FILES
|
||||
SOURCES
|
||||
resources/lxqt-leave.desktop.in
|
||||
resources/lxqt-hibernate.desktop.in
|
||||
resources/lxqt-lockscreen.desktop.in
|
||||
resources/lxqt-logout.desktop.in
|
||||
resources/lxqt-reboot.desktop.in
|
||||
resources/lxqt-shutdown.desktop.in
|
||||
resources/lxqt-suspend.desktop.in
|
||||
)
|
||||
|
||||
lxqt_translate_ts(lxqt-leave_QM_FILES
|
||||
UPDATE_TRANSLATIONS
|
||||
${UPDATE_TRANSLATIONS}
|
||||
SOURCES
|
||||
${CPP_FILES}
|
||||
${UI_FILES}
|
||||
${H_FILES}
|
||||
INSTALL_DIR
|
||||
"${LXQT_TRANSLATIONS_DIR}/${PROJECT_NAME}"
|
||||
)
|
||||
|
||||
lxqt_app_translation_loader(lxqt-leave_QM_LOADER ${PROJECT_NAME})
|
||||
#************************************************
|
||||
|
||||
|
||||
add_executable(lxqt-leave
|
||||
${CPP_FILES}
|
||||
${DESKTOP_FILES}
|
||||
${lxqt-leave_QM_LOADER}
|
||||
${lxqt-leave_QM_FILES}
|
||||
)
|
||||
|
||||
target_link_libraries(lxqt-leave
|
||||
lxqt
|
||||
)
|
||||
|
||||
install(TARGETS
|
||||
lxqt-leave
|
||||
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
install(FILES
|
||||
${DESKTOP_FILES} DESTINATION
|
||||
"${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
install(FILES
|
||||
resources/lxqt-leave.1
|
||||
DESTINATION "${CMAKE_INSTALL_MANDIR}/man1"
|
||||
COMPONENT Runtime
|
||||
)
|
63
lxqt-leave/leavedialog.cpp
Normal file
63
lxqt-leave/leavedialog.cpp
Normal file
@ -0,0 +1,63 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LxQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org, http://lxde.org/
|
||||
*
|
||||
* Copyright: 2010-2015 LXQt team
|
||||
* Authors:
|
||||
* Paulo Lieuthier <paulolieuthier@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 "leavedialog.h"
|
||||
|
||||
LeaveDialog::LeaveDialog(QWidget* parent)
|
||||
: QDialog(parent),
|
||||
ui(new Ui::LeaveDialog),
|
||||
mPower(new LxQt::Power(this)),
|
||||
mScreensaver(new LxQt::ScreenSaver(this))
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
ui->logoutButton->setEnabled(mPower->canAction(LxQt::Power::PowerLogout));
|
||||
ui->rebootButton->setEnabled(mPower->canAction(LxQt::Power::PowerReboot));
|
||||
ui->shutdownButton->setEnabled(mPower->canAction(LxQt::Power::PowerShutdown));
|
||||
ui->suspendButton->setEnabled(mPower->canAction(LxQt::Power::PowerSuspend));
|
||||
ui->hibernateButton->setEnabled(mPower->canAction(LxQt::Power::PowerHibernate));
|
||||
|
||||
connect(ui->logoutButton, &QPushButton::clicked, [&] { close(); mPower->logout(); });
|
||||
connect(ui->rebootButton, &QPushButton::clicked, [&] { close(); mPower->reboot(); });
|
||||
connect(ui->shutdownButton, &QPushButton::clicked, [&] { close(); mPower->shutdown(); });
|
||||
connect(ui->suspendButton, &QPushButton::clicked, [&] { close(); mPower->suspend(); });
|
||||
connect(ui->hibernateButton, &QPushButton::clicked, [&] { close(); mPower->hibernate(); });
|
||||
connect(ui->lockscreenButton, &QPushButton::clicked, [&] {
|
||||
close();
|
||||
QEventLoop loop;
|
||||
connect(mScreensaver, &LxQt::ScreenSaver::done, &loop, &QEventLoop::quit);
|
||||
mScreensaver->lockScreen();
|
||||
loop.exec();
|
||||
});
|
||||
|
||||
connect(ui->cancelButton, &QPushButton::clicked, [&] { close(); });
|
||||
}
|
||||
|
||||
LeaveDialog::~LeaveDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
56
lxqt-leave/leavedialog.h
Normal file
56
lxqt-leave/leavedialog.h
Normal file
@ -0,0 +1,56 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LxQt - a lightweight, Qt based, desktop toolset
|
||||
* http://razor-qt.org, http://lxde.org/
|
||||
*
|
||||
* Copyright: 2010-2015 LXQt team
|
||||
* Authors:
|
||||
* Paulo Lieuthier <paulolieuthier@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 LEAVEDIALOG_H
|
||||
#define LEAVEDIALOG_H
|
||||
|
||||
#include "ui_leavedialog.h"
|
||||
|
||||
#include <QDialog>
|
||||
#include <LXQt/Power>
|
||||
#include <LXQt/ScreenSaver>
|
||||
|
||||
namespace Ui {
|
||||
class LeaveDialog;
|
||||
}
|
||||
|
||||
class LeaveDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit LeaveDialog(QWidget *parent = 0);
|
||||
~LeaveDialog();
|
||||
|
||||
private:
|
||||
Ui::LeaveDialog *ui;
|
||||
LxQt::Power *mPower;
|
||||
LxQt::ScreenSaver *mScreensaver;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
152
lxqt-leave/leavedialog.ui
Normal file
152
lxqt-leave/leavedialog.ui
Normal file
@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>LeaveDialog</class>
|
||||
<widget class="QDialog" name="LeaveDialog">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>617</width>
|
||||
<height>135</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Leave</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></string>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::AutoText</enum>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="buttonsWidget" native="true">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<widget class="QPushButton" name="logoutButton">
|
||||
<property name="text">
|
||||
<string>Logout</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="system-log-out">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="rebootButton">
|
||||
<property name="text">
|
||||
<string>Reboot</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="system-reboot">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="shutdownButton">
|
||||
<property name="text">
|
||||
<string>Shutdown</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="system-shutdown">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="suspendButton">
|
||||
<property name="text">
|
||||
<string>Suspend</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="system-suspend">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="lockscreenButton">
|
||||
<property name="text">
|
||||
<string>Lock screen</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="system-lock-screen">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="hibernateButton">
|
||||
<property name="text">
|
||||
<string>Hibernate</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="system-suspend-hibernate">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="widget_2" native="true">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>170</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="cancelButton">
|
||||
<property name="text">
|
||||
<string>Cancel</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="dialog-cancel">
|
||||
<normaloff/>
|
||||
</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
110
lxqt-leave/main.cpp
Normal file
110
lxqt-leave/main.cpp
Normal file
@ -0,0 +1,110 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXDE-Qt - 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 */
|
||||
|
||||
#include <LXQt/Application>
|
||||
#include <LXQt/PowerManager>
|
||||
#include <LXQt/ScreenSaver>
|
||||
#include <LXQt/Translator>
|
||||
#include <QDesktopWidget>
|
||||
#include <QCommandLineParser>
|
||||
#include <QCoreApplication>
|
||||
|
||||
#include "leavedialog.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
LxQt::Application a(argc, argv);
|
||||
LxQt::Translator::translateApplication();
|
||||
|
||||
LxQt::PowerManager powermanager(&a);
|
||||
LxQt::ScreenSaver screensaver(&a);
|
||||
|
||||
QCommandLineParser parser;
|
||||
parser.setApplicationDescription(QStringLiteral("lxqt-leave"));
|
||||
parser.addHelpOption();
|
||||
parser.addVersionOption();
|
||||
|
||||
QCommandLineOption logoutOption(QStringLiteral("logout"), QCoreApplication::translate("main", "Logout."));
|
||||
parser.addOption(logoutOption);
|
||||
|
||||
QCommandLineOption lockscreenOption(QStringLiteral("lockscreen"), QCoreApplication::translate("main", "Lockscreen."));
|
||||
parser.addOption(lockscreenOption);
|
||||
|
||||
QCommandLineOption suspendOption(QStringLiteral("suspend"), QCoreApplication::translate("main", "Suspend."));
|
||||
parser.addOption(suspendOption);
|
||||
|
||||
QCommandLineOption hibernateOption(QStringLiteral("hibernate"), QCoreApplication::translate("main", "Hibernate."));
|
||||
parser.addOption(hibernateOption);
|
||||
|
||||
QCommandLineOption shutdownOption(QStringLiteral("shutdown"), QCoreApplication::translate("main", "Shutdown."));
|
||||
parser.addOption(shutdownOption);
|
||||
|
||||
QCommandLineOption rebootOption(QStringLiteral("reboot"), QCoreApplication::translate("main", "Reboot."));
|
||||
parser.addOption(rebootOption);
|
||||
|
||||
parser.process(a);
|
||||
|
||||
if (parser.isSet(logoutOption)) {
|
||||
powermanager.logout();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (parser.isSet(lockscreenOption)) {
|
||||
a.connect(&screensaver, &LxQt::ScreenSaver::done, &a, &LxQt::Application::quit);
|
||||
screensaver.lockScreen();
|
||||
a.exec();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (parser.isSet(suspendOption)) {
|
||||
powermanager.suspend();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (parser.isSet(hibernateOption)) {
|
||||
powermanager.hibernate();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (parser.isSet(shutdownOption)) {
|
||||
powermanager.shutdown();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (parser.isSet(rebootOption)) {
|
||||
powermanager.reboot();
|
||||
return 0;
|
||||
}
|
||||
|
||||
LeaveDialog dialog;
|
||||
dialog.setGeometry(QStyle::alignedRect(Qt::LeftToRight,
|
||||
Qt::AlignCenter,
|
||||
dialog.size(),
|
||||
qApp->desktop()->screenGeometry(QCursor::pos())));
|
||||
dialog.setMaximumSize(dialog.minimumSize());
|
||||
return dialog.exec();
|
||||
}
|
35
lxqt-leave/resources/lxqt-leave.1
Normal file
35
lxqt-leave/resources/lxqt-leave.1
Normal file
@ -0,0 +1,35 @@
|
||||
.TH lxqt-leave 1 "" "" "LXQt\ Helper"
|
||||
.SH NAME
|
||||
\fBlxqt-leave\fR \- easily logout, reboot, shutdown, suspend, hibernate and lock screen from a dialog
|
||||
.SH SYNOPSIS
|
||||
\fBlxqt-leave\fR [\fIargument\fR]
|
||||
.SH DESCRIPTION
|
||||
\fBlxqt-leave\fR is a graphical Qt tool for easily triggering leave session actions: logout, reboot, shutdown, hibernate and lock screen. If run with an argument, the dialog is not shown and the action is executed directly.
|
||||
.SH OPTIONS
|
||||
.PP
|
||||
The options which apply to the \fBlxqt-leave\fR command are:
|
||||
.PP
|
||||
\fB\-\-logout\fR
|
||||
.RE
|
||||
.PP
|
||||
\fB\-\-lockscreen\fR
|
||||
.RE
|
||||
.PP
|
||||
\fB\-\-suspend\fR
|
||||
.RE
|
||||
.PP
|
||||
\fB\-\-hibernate\fR
|
||||
.RE
|
||||
.PP
|
||||
\fB\-\-shutdown\fR
|
||||
.RE
|
||||
.PP
|
||||
\fB\-\-reboot\fR
|
||||
.RE
|
||||
.PP
|
||||
\fB\-\-help\fR
|
||||
.RE
|
||||
.SH "REPORTING BUGS"
|
||||
Report bugs to https://github.com/lxde/lxqt/issues
|
||||
.SH AUTHOR
|
||||
This manual page was created by \fBPaulo Lieuthier\fR \fI<paulolieuthier@gmail.com>\fR for the \fBLXQt\fR project.
|
11
lxqt-leave/resources/lxqt-leave.desktop.in
Normal file
11
lxqt-leave/resources/lxqt-leave.desktop.in
Normal file
@ -0,0 +1,11 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Leave
|
||||
GenericName=Leave
|
||||
Comment=Leave dialog
|
||||
Exec=lxqt-leave
|
||||
Icon=system-shutdown
|
||||
Categories=LXQt;X-Leave
|
||||
OnlyShowIn=LXQt;
|
||||
|
||||
#TRANSLATIONS_DIR=../translations
|
2
lxqt-leave/translations/lxqt-hibernate_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-hibernate_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[de]=Rechner in Tiefschlaf versetzen
|
||||
Name[de]=Tiefschlaf
|
2
lxqt-leave/translations/lxqt-hibernate_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-hibernate_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[hu]=Mélykészenléti állapot
|
||||
Name[hu]=Mélykészenlét
|
2
lxqt-leave/translations/lxqt-hibernate_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-hibernate_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Iberna
|
||||
Comment[it]=Ibernare il computer
|
2
lxqt-leave/translations/lxqt-hibernate_pt.desktop
Normal file
2
lxqt-leave/translations/lxqt-hibernate_pt.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[pt]=Hibernar
|
||||
Comment[pt]=Hibernar o computador
|
2
lxqt-leave/translations/lxqt-hibernate_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-hibernate_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Спящий режим
|
||||
Comment[ru]=Перевести компьютер в спящий режим
|
85
lxqt-leave/translations/lxqt-leave.ts
Normal file
85
lxqt-leave/translations/lxqt-leave.ts
Normal file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1">
|
||||
<context>
|
||||
<name>LeaveDialog</name>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="20"/>
|
||||
<source>Leave</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="29"/>
|
||||
<source><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="45"/>
|
||||
<source>Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="57"/>
|
||||
<source>Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="69"/>
|
||||
<source>Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="81"/>
|
||||
<source>Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="93"/>
|
||||
<source>Lock screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="105"/>
|
||||
<source>Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="136"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>main</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Logout.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="54"/>
|
||||
<source>Lockscreen.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="57"/>
|
||||
<source>Suspend.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="60"/>
|
||||
<source>Hibernate.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Shutdown.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="66"/>
|
||||
<source>Reboot.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
2
lxqt-leave/translations/lxqt-leave_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-leave_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[de]=Verlassen
|
||||
Comment[de]=Beenden-Dialog
|
85
lxqt-leave/translations/lxqt-leave_de.ts
Normal file
85
lxqt-leave/translations/lxqt-leave_de.ts
Normal file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>LeaveDialog</name>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="20"/>
|
||||
<source>Leave</source>
|
||||
<translation>Verlassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="29"/>
|
||||
<source><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-size:12pt;">Was soll der Computer tun?</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="45"/>
|
||||
<source>Logout</source>
|
||||
<translation>Abmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="57"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Neustart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="69"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Herunterfahren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="81"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Bereitschaft</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="93"/>
|
||||
<source>Lock screen</source>
|
||||
<translation>Bildschirm sperren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="105"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Tiefschlaf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="136"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>main</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Logout.</source>
|
||||
<translation>Abmelden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="54"/>
|
||||
<source>Lockscreen.</source>
|
||||
<translation>Sperren.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="57"/>
|
||||
<source>Suspend.</source>
|
||||
<translation>Bereitschaft.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="60"/>
|
||||
<source>Hibernate.</source>
|
||||
<translation>Tiefschlaf.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Shutdown.</source>
|
||||
<translation>Herunterfahren.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="66"/>
|
||||
<source>Reboot.</source>
|
||||
<translation>Neustart.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
2
lxqt-leave/translations/lxqt-leave_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-leave_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[hu]=Kiléptetés
|
||||
Comment[hu]=Kiléptető párbeszédablak
|
80
lxqt-leave/translations/lxqt-leave_hu.ts
Normal file
80
lxqt-leave/translations/lxqt-leave_hu.ts
Normal file
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="ru">
|
||||
<context>
|
||||
<name>LeaveDialog</name>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="20"/>
|
||||
<source>Form</source>
|
||||
<translation>Űrlap</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="29"/>
|
||||
<source><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-size:12pt;">Mi legyen a számítógéppel?</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="45"/>
|
||||
<source>Logout</source>
|
||||
<translation>Kilépés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="55"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Újraindítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="65"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Kikapcsolás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="75"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Készenlét</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="85"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Mélykészenlét</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="114"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Mégse</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>main</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Logout.</source>
|
||||
<translation>Kilépés.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="54"/>
|
||||
<source>Lockscreen.</source>
|
||||
<translation>Képernyőzár.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="57"/>
|
||||
<source>Suspend.</source>
|
||||
<translation>Készenlét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="60"/>
|
||||
<source>Hibernate.</source>
|
||||
<translation>Mélykészenlét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Shutdown.</source>
|
||||
<translation>Kikapcsolás.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="66"/>
|
||||
<source>Reboot.</source>
|
||||
<translation>Újraindítás.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
2
lxqt-leave/translations/lxqt-leave_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-leave_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Esci
|
||||
Comment[it]=Opzioni di uscita
|
80
lxqt-leave/translations/lxqt-leave_it.ts
Normal file
80
lxqt-leave/translations/lxqt-leave_it.ts
Normal file
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="it">
|
||||
<context>
|
||||
<name>LeaveDialog</name>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="20"/>
|
||||
<source>Form</source>
|
||||
<translation>Esci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="29"/>
|
||||
<source><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-size:12pt;">Terminare la sessione di LXQt?</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="45"/>
|
||||
<source>Logout</source>
|
||||
<translation>Chiudi sessione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="55"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Riavvia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="65"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Spegni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="75"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Sospendi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="85"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Iberna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="114"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancella</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>main</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Logout.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="54"/>
|
||||
<source>Lockscreen.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="57"/>
|
||||
<source>Suspend.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="60"/>
|
||||
<source>Hibernate.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Shutdown.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="66"/>
|
||||
<source>Reboot.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
2
lxqt-leave/translations/lxqt-leave_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-leave_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Выйти
|
||||
Comment[ru]=Меню выхода
|
80
lxqt-leave/translations/lxqt-leave_ru.ts
Normal file
80
lxqt-leave/translations/lxqt-leave_ru.ts
Normal file
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ru">
|
||||
<context>
|
||||
<name>LeaveDialog</name>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="20"/>
|
||||
<source>Form</source>
|
||||
<translation>Меню выхода</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="29"/>
|
||||
<source><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-size:12pt;">Что вы хотите сделать с компьютером?</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="45"/>
|
||||
<source>Logout</source>
|
||||
<translation>Выйти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="55"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Перезагрузить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="65"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Выключить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="75"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Перевести в ждущий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="85"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Перевести в спящий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="114"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Отмена</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>main</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Logout.</source>
|
||||
<translation>Выйти.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="54"/>
|
||||
<source>Lockscreen.</source>
|
||||
<translation>Блокировать экран.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="57"/>
|
||||
<source>Suspend.</source>
|
||||
<translation>Перевести в ждущий режим.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="60"/>
|
||||
<source>Hibernate.</source>
|
||||
<translation>Перевести в спящий режим.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Shutdown.</source>
|
||||
<translation>Выключить.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="66"/>
|
||||
<source>Reboot.</source>
|
||||
<translation>Перезагрузить.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
80
lxqt-leave/translations/lxqt-leave_ru_RU.ts
Normal file
80
lxqt-leave/translations/lxqt-leave_ru_RU.ts
Normal file
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ru_RU">
|
||||
<context>
|
||||
<name>LeaveDialog</name>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="20"/>
|
||||
<source>Form</source>
|
||||
<translation>Меню выхода</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="29"/>
|
||||
<source><html><head/><body><p><span style=" font-size:12pt;">What do you want the computer to do?</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-size:12pt;">Что вы хотите сделать с компьютером?</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="45"/>
|
||||
<source>Logout</source>
|
||||
<translation>Выйти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="55"/>
|
||||
<source>Reboot</source>
|
||||
<translation>Перезагрузить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="65"/>
|
||||
<source>Shutdown</source>
|
||||
<translation>Выключить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="75"/>
|
||||
<source>Suspend</source>
|
||||
<translation>Перевести в ждущий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="85"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Перевести в спящий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../leavedialog.ui" line="114"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Отмена</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>main</name>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Logout.</source>
|
||||
<translation>Выйти.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="54"/>
|
||||
<source>Lockscreen.</source>
|
||||
<translation>Блокировать экран.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="57"/>
|
||||
<source>Suspend.</source>
|
||||
<translation>Перевести в ждущий режим.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="60"/>
|
||||
<source>Hibernate.</source>
|
||||
<translation>Перевести в спящий режим.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Shutdown.</source>
|
||||
<translation>Выключить.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="66"/>
|
||||
<source>Reboot.</source>
|
||||
<translation>Перезагрузить.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
2
lxqt-leave/translations/lxqt-lockscreen_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-lockscreen_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[de]=aktuelle Sitzung sperren
|
||||
Name[de]=Bildschirm sperren
|
2
lxqt-leave/translations/lxqt-lockscreen_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-lockscreen_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[hu]=A gép zárolása
|
||||
Name[hu]=Képernyőzár
|
2
lxqt-leave/translations/lxqt-lockscreen_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-lockscreen_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Blocca schermo
|
||||
Comment[it]=Blocca la sessione attuale
|
2
lxqt-leave/translations/lxqt-lockscreen_pt.desktop
Normal file
2
lxqt-leave/translations/lxqt-lockscreen_pt.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[pt]=Bloquear
|
||||
Comment[pt]=Bloquear a sessão atual
|
2
lxqt-leave/translations/lxqt-lockscreen_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-lockscreen_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Блокировать экран
|
||||
Comment[ru]=Блокировать текущий сеанс
|
2
lxqt-leave/translations/lxqt-logout_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-logout_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[de]=Sitzung beenden
|
||||
Name[de]=Abmelden
|
2
lxqt-leave/translations/lxqt-logout_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-logout_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[hu]=LXQt munkamenet vége
|
||||
Name[hu]=Kilépés
|
2
lxqt-leave/translations/lxqt-logout_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-logout_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Chiudi sessione
|
||||
Comment[it]=Chiudere la sessione attuale
|
2
lxqt-leave/translations/lxqt-logout_pt.desktop
Normal file
2
lxqt-leave/translations/lxqt-logout_pt.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[pt]=Sair
|
||||
Comment[pt]=Sair da sessão
|
2
lxqt-leave/translations/lxqt-logout_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-logout_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Выйти из системы
|
||||
Comment[ru]=Выйти из текущего сеанса
|
2
lxqt-leave/translations/lxqt-reboot_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-reboot_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[de]=Rechner neustarten
|
||||
Name[de]=Neustart
|
2
lxqt-leave/translations/lxqt-reboot_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-reboot_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[hu]=A gép újraindítása
|
||||
Name[hu]=Újraindítás
|
2
lxqt-leave/translations/lxqt-reboot_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-reboot_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Riavvia
|
||||
Comment[it]=Riavviare il computer
|
2
lxqt-leave/translations/lxqt-reboot_pt.desktop
Normal file
2
lxqt-leave/translations/lxqt-reboot_pt.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[pt]=Reiniciar
|
||||
Comment[pt]=Reiniciar o computador
|
2
lxqt-leave/translations/lxqt-reboot_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-reboot_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Перезагрузка
|
||||
Comment[ru]=Перезагрузить компьютер
|
2
lxqt-leave/translations/lxqt-shutdown_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-shutdown_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[de]=Rechner herunterfahren
|
||||
Name[de]=Herunterfahren
|
2
lxqt-leave/translations/lxqt-shutdown_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-shutdown_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[hu]=A számítógép kikapcsolása
|
||||
Name[hu]=Kikapcsolás
|
2
lxqt-leave/translations/lxqt-shutdown_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-shutdown_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Arresta
|
||||
Comment[it]=Spegnere il computer
|
2
lxqt-leave/translations/lxqt-shutdown_pt.desktop
Normal file
2
lxqt-leave/translations/lxqt-shutdown_pt.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[pt]=Desligar
|
||||
Comment[pt]=Desligar o computador
|
2
lxqt-leave/translations/lxqt-shutdown_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-shutdown_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Выключение
|
||||
Comment[ru]=Выключить компьютер
|
2
lxqt-leave/translations/lxqt-suspend_de.desktop
Normal file
2
lxqt-leave/translations/lxqt-suspend_de.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[de]=Rechner in Bereitschaftsmodus versetzen
|
||||
Name[de]=Bereitschaft
|
2
lxqt-leave/translations/lxqt-suspend_hu.desktop
Normal file
2
lxqt-leave/translations/lxqt-suspend_hu.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Comment[hu]=A számítógép készenléti állapotba helyezése
|
||||
Name[hu]=Készenlét
|
2
lxqt-leave/translations/lxqt-suspend_it.desktop
Normal file
2
lxqt-leave/translations/lxqt-suspend_it.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[it]=Sospensione
|
||||
Comment[it]=Sospendere il computer
|
2
lxqt-leave/translations/lxqt-suspend_pt.desktop
Normal file
2
lxqt-leave/translations/lxqt-suspend_pt.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[pt]=Suspender
|
||||
Comment[pt]=Suspender o computador
|
2
lxqt-leave/translations/lxqt-suspend_ru.desktop
Normal file
2
lxqt-leave/translations/lxqt-suspend_ru.desktop
Normal file
@ -0,0 +1,2 @@
|
||||
Name[ru]=Ждущий режим
|
||||
Comment[ru]=Перевести компьютер в ждущий режим
|
@ -4,16 +4,22 @@ if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Release)
|
||||
endif()
|
||||
|
||||
include(LxQtLibSuffix)
|
||||
if(NOT DEFINED LIBUDEV_MONITOR OR LIBUDEV_MONITOR)
|
||||
set(LIBUDEV_MONITOR Yes)
|
||||
|
||||
find_package(PkgConfig)
|
||||
pkg_check_modules(LIBUDEV REQUIRED libudev)
|
||||
|
||||
add_definitions(-DWITH_LIBUDEV_MONITOR)
|
||||
endif()
|
||||
|
||||
include_directories(
|
||||
${CMAKE_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${XCB_INCLUDE_DIRS}
|
||||
${X11_INCLUDE_DIR}
|
||||
src
|
||||
)
|
||||
if(LIBUDEV_MONITOR)
|
||||
include_directories(${LIBUDEV_INCLUDE_DIRS})
|
||||
endif()
|
||||
|
||||
set(lxqt-session_HDRS "")
|
||||
|
||||
@ -25,6 +31,9 @@ set(lxqt-session_SRCS
|
||||
src/sessionapplication.cpp
|
||||
src/sessiondbusadaptor.h
|
||||
)
|
||||
if(LIBUDEV_MONITOR)
|
||||
list(APPEND lxqt-session_SRCS src/UdevNotifier.cpp)
|
||||
endif()
|
||||
|
||||
set(lxqt-session_UI
|
||||
src/wmselectdialog.ui
|
||||
@ -43,11 +52,8 @@ lxqt_translate_ts(lxqt-session_QM_FILES
|
||||
)
|
||||
lxqt_app_translation_loader(lxqt-session_QM_LOADER ${PROJECT_NAME})
|
||||
|
||||
qt5_wrap_ui(UIS ${lxqt-session_UI})
|
||||
|
||||
add_executable(lxqt-session
|
||||
${lxqt-session_SRCS}
|
||||
${UIS}
|
||||
${RSCS}
|
||||
${lxqt-session_QM_FILES}
|
||||
${lxqt-session_QM_LOADER}
|
||||
@ -59,8 +65,15 @@ target_link_libraries(lxqt-session
|
||||
Qt5::X11Extras
|
||||
${XCB_LIBRARIES}
|
||||
${X11_LIBRARIES}
|
||||
${LXQT_LIBRARIES}
|
||||
${QTXDG_LIBRARIES}
|
||||
lxqt
|
||||
KF5::WindowSystem
|
||||
)
|
||||
INSTALL(TARGETS lxqt-session RUNTIME DESTINATION bin)
|
||||
if(LIBUDEV_MONITOR)
|
||||
target_link_libraries(lxqt-session ${LIBUDEV_LIBRARIES})
|
||||
endif()
|
||||
|
||||
INSTALL(TARGETS
|
||||
lxqt-session
|
||||
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
@ -23,7 +23,7 @@ and operate as daemons for the local user for desktop specific operations.
|
||||
.P
|
||||
These components perform similar actions to those available in other desktop
|
||||
environments, and their names are self-descriptive. They are usually not launched
|
||||
by hand but automatically, when choosing a \fBLxQt\-qt\fR session in the Display
|
||||
by hand but automatically, when choosing a \fBLXQt\-qt\fR session in the Display
|
||||
Manager.
|
||||
.SH BEHAVIOR
|
||||
Through this application \fBLXQt\fR desktop environment manage the session desktop behavior,
|
||||
@ -34,7 +34,7 @@ important module for a working lxqt sesion.
|
||||
Each of any desktop environment has any way to configure applications need or want to start at logon,
|
||||
so user can manage manualy in the \fBlxqt-config-session\fR application.
|
||||
.SH "REPORTING BUGS"
|
||||
Report bugs to https://github.com/lxde/lxde-qt/issues
|
||||
Report bugs to https://github.com/lxde/lxqt/issues
|
||||
.SH "SEE ALSO"
|
||||
\fBLXQt\fR it has been tailored for users who value simplicity, speed, and
|
||||
an intuitive interface, also intended for less powerful machines. See also:
|
||||
|
99
lxqt-session/src/UdevNotifier.cpp
Normal file
99
lxqt-session/src/UdevNotifier.cpp
Normal file
@ -0,0 +1,99 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://lxqt.org
|
||||
*
|
||||
* Copyright: 2015 LXQt team
|
||||
* Authors:
|
||||
* Palo Kisa <palo.kisa@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 "UdevNotifier.h"
|
||||
#include <libudev.h>
|
||||
#include <QDebug>
|
||||
#include <QSocketNotifier>
|
||||
|
||||
|
||||
class UdevNotifier::Impl
|
||||
{
|
||||
public:
|
||||
struct udev * udev;
|
||||
struct udev_monitor * monitor;
|
||||
QScopedPointer<QSocketNotifier> notifier;
|
||||
};
|
||||
|
||||
|
||||
UdevNotifier::UdevNotifier(QString const & subsystem, QObject * parent/* = nullptr*/)
|
||||
: QObject(parent)
|
||||
, d(new Impl)
|
||||
{
|
||||
d->udev = udev_new();
|
||||
d->monitor = udev_monitor_new_from_netlink(d->udev, "udev");
|
||||
if (nullptr == d->monitor)
|
||||
{
|
||||
qWarning() << QStringLiteral("UdevNotifier: unable to initialize udev_monitor, monitoring will be disabled");
|
||||
return;
|
||||
}
|
||||
|
||||
int ret = udev_monitor_filter_add_match_subsystem_devtype(d->monitor, subsystem.toUtf8().constData(), nullptr);
|
||||
if (0 != ret)
|
||||
qWarning() << QStringLiteral("UdevNotifier: unable to add match subsystem, monitor will receive all devices");
|
||||
|
||||
ret = udev_monitor_enable_receiving(d->monitor);
|
||||
if (0 != ret)
|
||||
{
|
||||
qWarning() << QStringLiteral("UdevNotifier: unable to enable receiving(%1), monitoring will be disabled").arg(ret);
|
||||
return;
|
||||
}
|
||||
|
||||
d->notifier.reset(new QSocketNotifier(udev_monitor_get_fd(d->monitor), QSocketNotifier::Read));
|
||||
connect(d->notifier.data(), &QSocketNotifier::activated, this, &UdevNotifier::eventReady);
|
||||
d->notifier->setEnabled(true);
|
||||
}
|
||||
|
||||
UdevNotifier::~UdevNotifier()
|
||||
{
|
||||
if (d->monitor)
|
||||
udev_monitor_unref(d->monitor);
|
||||
udev_unref(d->udev);
|
||||
}
|
||||
|
||||
void UdevNotifier::eventReady(int socket)
|
||||
{
|
||||
struct udev_device * dev;
|
||||
while (nullptr != (dev = udev_monitor_receive_device(d->monitor)))
|
||||
{
|
||||
QString const action = udev_device_get_action(dev);
|
||||
QString const device = udev_device_get_devpath(dev);
|
||||
|
||||
if (QStringLiteral("add") == action)
|
||||
emit deviceAdded(std::move(device));
|
||||
else if (QStringLiteral("remove") == action)
|
||||
emit deviceRemoved(std::move(device));
|
||||
else if (QStringLiteral("change") == action)
|
||||
emit deviceChanged(std::move(device));
|
||||
else if (QStringLiteral("online") == action)
|
||||
emit deviceOnline(std::move(device));
|
||||
else if (QStringLiteral("offline") == action)
|
||||
emit deviceOffline(std::move(device));
|
||||
|
||||
udev_device_unref(dev);
|
||||
}
|
||||
}
|
59
lxqt-session/src/UdevNotifier.h
Normal file
59
lxqt-session/src/UdevNotifier.h
Normal file
@ -0,0 +1,59 @@
|
||||
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
||||
* (c)LGPL2+
|
||||
*
|
||||
* LXQt - a lightweight, Qt based, desktop toolset
|
||||
* http://lxqt.org
|
||||
*
|
||||
* Copyright: 2015 LXQt team
|
||||
* Authors:
|
||||
* Palo Kisa <palo.kisa@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 */
|
||||
|
||||
#if !defined(UdevNotifier_h)
|
||||
#define UdevNotifier_h
|
||||
#if defined(WITH_LIBUDEV_MONITOR)
|
||||
|
||||
#include <QObject>
|
||||
#include <QScopedPointer>
|
||||
|
||||
class UdevNotifier : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
UdevNotifier(QString const & subsystem, QObject * parent = nullptr);
|
||||
~UdevNotifier();
|
||||
|
||||
signals:
|
||||
void deviceAdded(QString path);
|
||||
void deviceRemoved(QString path);
|
||||
void deviceChanged(QString path);
|
||||
void deviceOnline(QString path);
|
||||
void deviceOffline(QString path);
|
||||
|
||||
private slots:
|
||||
void eventReady(int socket);
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
|
||||
QScopedPointer<Impl> d;
|
||||
};
|
||||
|
||||
#endif //WITH_LIBUDEV_MONITOR
|
||||
#endif //UdevNotifier_h
|
@ -43,8 +43,8 @@
|
||||
#include "windowmanager.h"
|
||||
#include <wordexp.h>
|
||||
|
||||
#include <KF5/KWindowSystem/KWindowSystem>
|
||||
#include <KF5/KWindowSystem/netwm.h>
|
||||
#include <KWindowSystem/KWindowSystem>
|
||||
#include <KWindowSystem/netwm.h>
|
||||
|
||||
#include <QX11Info>
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "sessionapplication.h"
|
||||
#include "sessiondbusadaptor.h"
|
||||
#include "lxqtmodman.h"
|
||||
#include "UdevNotifier.h"
|
||||
#include <unistd.h>
|
||||
#include <LXQt/Settings>
|
||||
#include <QProcess>
|
||||
@ -78,6 +79,25 @@ bool SessionApplication::startup()
|
||||
loadKeyboardSettings(settings);
|
||||
loadMouseSettings(settings);
|
||||
|
||||
#if defined(WITH_LIBUDEV_MONITOR)
|
||||
UdevNotifier * dev_notifier = new UdevNotifier{QStringLiteral("input"), this}; //will be released upon our destruction
|
||||
QTimer * dev_timer = new QTimer{this}; //will be released upon our destruction
|
||||
dev_timer->setSingleShot(true);
|
||||
dev_timer->setInterval(500); //give some time to xorg... we need to reset keyboard afterwards
|
||||
connect(dev_timer, &QTimer::timeout, [this]
|
||||
{
|
||||
//XXX: is this a race? (because settings can be currently changed by lxqt-config-input)
|
||||
// but with such a little probablity we can live...
|
||||
LxQt::Settings settings(configName);
|
||||
loadKeyboardSettings(settings);
|
||||
});
|
||||
connect(dev_notifier, &UdevNotifier::deviceAdded, [this, dev_timer] (QString device)
|
||||
{
|
||||
qWarning() << QStringLiteral("Session '%1', new input device '%2', keyboard setting will be (optionaly) reloaded...").arg(configName).arg(device);
|
||||
dev_timer->start();
|
||||
});
|
||||
#endif
|
||||
|
||||
// launch module manager and autostart apps
|
||||
modman->startup(settings);
|
||||
|
||||
@ -109,29 +129,29 @@ void SessionApplication::loadEnvironmentSettings(LxQt::Settings& settings)
|
||||
|
||||
// FIXME: how to set keyboard layout in Wayland?
|
||||
void SessionApplication::setxkbmap(QString layout, QString variant, QString model, QStringList options) {
|
||||
QString command = "setxkbmap";
|
||||
QStringList args;
|
||||
if(!model.isEmpty()) {
|
||||
command += " -model ";
|
||||
command += model;
|
||||
args << QStringLiteral("-model");
|
||||
args << model;
|
||||
}
|
||||
if(!layout.isEmpty()) {
|
||||
command += " -layout ";
|
||||
command += layout;
|
||||
args << QStringLiteral("-layout");
|
||||
args << layout;
|
||||
|
||||
if(!variant.isEmpty()) {
|
||||
command += " -variant ";
|
||||
command += variant;
|
||||
args << QStringLiteral("-variant");
|
||||
args << variant;
|
||||
}
|
||||
}
|
||||
if(!options.isEmpty()) {
|
||||
Q_FOREACH(const QString& option, options) {
|
||||
command += " -option ";
|
||||
command += option;
|
||||
args << QStringLiteral("-option");
|
||||
args << option;
|
||||
}
|
||||
}
|
||||
// execute the command line
|
||||
QProcess setxkbmap;
|
||||
setxkbmap.startDetached(command);
|
||||
if (!args.isEmpty())
|
||||
QProcess::startDetached(QStringLiteral("setxkbmap"), args);
|
||||
}
|
||||
|
||||
void SessionApplication::loadKeyboardSettings(LxQt::Settings& settings)
|
||||
|
@ -24,7 +24,7 @@
|
||||
* Boston, MA 02110-1301 USA
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
|
||||
#include "windowmanager.h"
|
||||
|
||||
#include <QObject>
|
||||
|
@ -24,7 +24,7 @@
|
||||
* Boston, MA 02110-1301 USA
|
||||
*
|
||||
* END_COMMON_COPYRIGHT_HEADER */
|
||||
|
||||
|
||||
#ifndef WINDOWMANAGER_H
|
||||
#define WINDOWMANAGER_H
|
||||
|
||||
|
@ -25,13 +25,13 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">أهلاً بكم في ريزركيوت</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>أهلاً بكم في ريزركيوت</b>
|
||||
<p>
|
||||
قد تودُّ اختيار مدير النَّوافذ قبل الشُّروع باستخدام ريزركيوت:</translation>
|
||||
|
@ -25,13 +25,13 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Vítejte v LxQt-Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Vítejte v LxQt-Qt</b>
|
||||
<p>
|
||||
Před započetím s prací byste mohl chtít vybrat si správce oken:</translation>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Vítejte v LxQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Vítejte v prostředí LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Vítejte v prostředí LXQt</b>
|
||||
<p>
|
||||
Než LXDE-Qt začnete používat, vyberte si správce oken:</translation>
|
||||
Než LXQt začnete používat, vyberte si správce oken:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,13 +25,13 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Velkommen til LxQt-Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Velkommen til LxQt-Qt</b>
|
||||
<p>
|
||||
Før du starter LxQt-Qt, skal du vælge window manager:</translation>
|
||||
|
@ -6,40 +6,40 @@
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="289"/>
|
||||
<source>Crash Report</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Absturzbericht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="290"/>
|
||||
<source><b>%1</b> crashed too many times. Its autorestart has been disabled until next login.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>%1</b> stürzte zu oft ab. Ihr automatischer Neustart wurde bis zum nächsten Einloggen deaktiviert.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="62"/>
|
||||
<source>Other ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="63"/>
|
||||
<source>Choose your favorite one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="14"/>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Willkommen zu LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="20"/>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Welcome to LXQt</span></p><p>Please select your default Window Manager.</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Willkommen zu LXQt</span></p><p>Bitte den Default-Fenstermanager auswählen.</p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="62"/>
|
||||
<source>Other ...</source>
|
||||
<translation>Andere...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="63"/>
|
||||
<source>Choose your favorite one.</source>
|
||||
<translation>Den Favoriten auswählen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="71"/>
|
||||
<source>You will be able to change this at any time through Preferences -> Session Settings -> Basic Settings.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Der Fenstermanager kann jederzeit über Einstellungen -> Sitzungs-Konfigurator -> Grundeinstellungen wieder geändert werden.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -1,69 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de_DE">
|
||||
<context>
|
||||
<name>LxQtModuleManager</name>
|
||||
<message>
|
||||
<source>LxQt Session Crash Report</source>
|
||||
<translation type="vanished">LxQt Sitzungs-Absturzbericht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Application '%1' crashed too many times. Its autorestart has been disabled for current session.</source>
|
||||
<translation type="vanished">Anwendung '%1' stürzte zu oft ab. Ihr automatischer Neustart wurde für die aktuelle Sitzung deaktiviert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="289"/>
|
||||
<source>Crash Report</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="290"/>
|
||||
<source><b>%1</b> crashed too many times. Its autorestart has been disabled until next login.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Willkommen zu LXDE-Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Willkommen zu LXDE-Qt</b>⏎
|
||||
<p>⏎
|
||||
Bevor Sie LXDE-Qt starten, möchten Sie vielleicht einen Fenstermanager auswählen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
<translation type="vanished">Sie können den Fenstermanager später durch die LxQt Sitzungs-Konfiguration jederzeit wieder ändern.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="62"/>
|
||||
<source>Other ...</source>
|
||||
<translation>Andere...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="63"/>
|
||||
<source>Choose your favorite one.</source>
|
||||
<translation>Wähle was dir am Besten gefällt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="14"/>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="20"/>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Welcome to LXQt</span></p><p>Please select your default Window Manager.</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="71"/>
|
||||
<source>You will be able to change this at any time through Preferences -> Session Settings -> Basic Settings.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Καλως ήλθατε στο LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Καλως ήλθατε στο LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Καλως ήλθατε στο LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Καλως ήλθατε στο LXQt</b>
|
||||
<p>
|
||||
Πριν ξεκινήσετε να χρησιμοποιείτε το LXDE-Qt, ίσως θέλετε να επιλέξετε ένα διαχειριστή παραθύρων:</translation>
|
||||
Πριν ξεκινήσετε να χρησιμοποιείτε το LXQt, ίσως θέλετε να επιλέξετε ένα διαχειριστή παραθύρων:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Bonvenon en LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Bonvenon en LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bonvenon en LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bonvenon en LXQt</b>
|
||||
<p>
|
||||
Antaŭ startigi uzadon de LXDE-Qt, vi eble volas elekti la fenestran mastrumilon:</translation>
|
||||
Antaŭ startigi uzadon de LXQt, vi eble volas elekti la fenestran mastrumilon:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Bienvenido a LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Bienvenido a LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenido a LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenido a LXQt</b>
|
||||
<p>
|
||||
Antes de comenzar a usar LXDE-Qt, podría desear seleccionar el gestor de ventanas:</translation>
|
||||
Antes de comenzar a usar LXQt, podría desear seleccionar el gestor de ventanas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -17,16 +17,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Bienvenido a LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Bienvenido a LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenido a LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenido a LXQt</b>
|
||||
<p>
|
||||
Antes de empezar a usar LXDE-Qt puede querer seleccionar el administrador de ventanas:</translation>
|
||||
Antes de empezar a usar LXQt puede querer seleccionar el administrador de ventanas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Bienvenido a LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Bienvenido a LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenido a LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenido a LXQt</b>
|
||||
<p>
|
||||
Antes de empezar a usar LXDE-Qt puede querer seleccionar el administrador de ventanas:</translation>
|
||||
Antes de empezar a usar LXQt puede querer seleccionar el administrador de ventanas:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Ongi etorri LXDE-Qt-ra</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Ongi etorri LXQt-ra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Ongi etorri LXDE-Qt-ra</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Ongi etorri LXQt-ra</b>
|
||||
<p>
|
||||
LXDE-Qt erabiltzen hasi aurretik, leiho-kudeatzailea aukera dezakezu:</translation>
|
||||
LXQt erabiltzen hasi aurretik, leiho-kudeatzailea aukera dezakezu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Tervetuloa LXDE-Qt-työpöytäympäristöön</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Tervetuloa LXQt-työpöytäympäristöön</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Tervetuloa LXDE-Qt-työpöytäympäristöön</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Tervetuloa LXQt-työpöytäympäristöön</b>
|
||||
<p>
|
||||
Ennen kuin alat käyttää LXDE-Qt-työpöytäympäristöä, halunnet määrittää ikkunahallinnan:</translation>
|
||||
Ennen kuin alat käyttää LXQt-työpöytäympäristöä, halunnet määrittää ikkunahallinnan:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Bienvenue sur LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Bienvenue sur LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenue sur LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Bienvenue sur LXQt</b>
|
||||
<p>
|
||||
Avant de commencer à utiliser LXDE-Qt, vous voulez peut-être choisir un gestionnaire de fenêtres :</translation>
|
||||
Avant de commencer à utiliser LXQt, vous voulez peut-être choisir un gestionnaire de fenêtres :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -1,17 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="hu">
|
||||
<TS version="2.0" language="hu">
|
||||
<context>
|
||||
<name>LxQtModuleManager</name>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="289"/>
|
||||
<source>Crash Report</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Összeomlás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="290"/>
|
||||
<source><b>%1</b> crashed too many times. Its autorestart has been disabled until next login.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>A <b>%1</b> gyorsan többször összeomlott. Az autorestart a következő bejeltkezésig letiltva.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -19,27 +19,27 @@
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="62"/>
|
||||
<source>Other ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Más...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="63"/>
|
||||
<source>Choose your favorite one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Válassz egy kedvencet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="14"/>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Üdvözli az LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="20"/>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Welcome to LXQt</span></p><p>Please select your default Window Manager.</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Íme az LXQt!</span></p><p>Ablakkezelőt kell választani.</p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="71"/>
|
||||
<source>You will be able to change this at any time through Preferences -> Session Settings -> Basic Settings.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ez a választás később módosítható a Beállítások -> Munkamenet beállítás -> Alapbeállítás helyen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -1,61 +1,61 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="hu_HU">
|
||||
<TS version="2.0" language="hu_HU">
|
||||
<context>
|
||||
<name>LxQtModuleManager</name>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="289"/>
|
||||
<source>Crash Report</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Összeomlás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="290"/>
|
||||
<source><b>%1</b> crashed too many times. Its autorestart has been disabled until next login.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>A <b>%1</b> gyorsan többször összeomlott. Az autorestart a következő bejeltkezésig letiltva.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Üdvözli a LXDE-Qt!</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation>Üdvözli a LXQt!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Üdvözli a LXDE-Qt!</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation><b>Üdvözli a LXQt!</b>
|
||||
<p>
|
||||
Mielőtt elkezdené a LXDE-Qt használatát, válasszon ablakkezelőt:</translation>
|
||||
Mielőtt elkezdené a LXQt használatát, válasszon ablakkezelőt:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
<translation type="vanished">Az ablakkezelőt később bármikor megváltoztathatja a LxQt munkamenetbeállítóban.</translation>
|
||||
<translation>Az ablakkezelőt később bármikor megváltoztathatja a LxQt munkamenetbeállítóban.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="62"/>
|
||||
<source>Other ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Más...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="63"/>
|
||||
<source>Choose your favorite one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Válassz egy kedvencet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="14"/>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Üdvözli az LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="20"/>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Welcome to LXQt</span></p><p>Please select your default Window Manager.</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Íme az LXQt!</span></p><p>Ablakkezelőt kell választani.</p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="71"/>
|
||||
<source>You will be able to change this at any time through Preferences -> Session Settings -> Basic Settings.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ez a választás később módosítható a Beállítások -> Munkamenet beállítás -> Alapbeállítás helyen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="it_IT">
|
||||
<TS version="2.1" language="it">
|
||||
<context>
|
||||
<name>LxQtModuleManager</name>
|
||||
<message>
|
||||
@ -14,27 +14,27 @@
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="289"/>
|
||||
<source>Crash Report</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Rapporto di crash</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/lxqtmodman.cpp" line="290"/>
|
||||
<source><b>%1</b> crashed too many times. Its autorestart has been disabled until next login.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>%1</b> è andato in crash troppe volte. Il suo avvio automatico è stato disabilitato fino al prossimo login.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Benvenuto in LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Benvenuto in LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Benvenuto in LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Benvenuto in LXQt</b>
|
||||
<p>
|
||||
Prima di iniziare a usare LXDE-Qt dovresti selezionare il gestore delle finestre:</translation>
|
||||
Prima di iniziare a usare LXQt dovresti selezionare il gestore delle finestre:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
@ -48,22 +48,17 @@ Prima di iniziare a usare LXDE-Qt dovresti selezionare il gestore delle finestre
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.cpp" line="63"/>
|
||||
<source>Choose your favorite one.</source>
|
||||
<translation>Scegli il tuo preferito</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="14"/>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Scegli il tuo preferito.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="20"/>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Welcome to LXQt</span></p><p>Please select your default Window Manager.</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Benvenuto in LXQt</span></p><p>Scegli il gestore delle finestre.</p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wmselectdialog.ui" line="71"/>
|
||||
<source>You will be able to change this at any time through Preferences -> Session Settings -> Basic Settings.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>E' possibile cambiarlo in ogni momento da: Preferenze ->Impostazioni della sessione -> Impostazioni di base.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -25,15 +25,15 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">LXDE-Qtにようこそ</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">LXQtにようこそ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>LXDE-Qtへようこそ</b>
|
||||
<p>LXDE-Qtを使い始める前に、ウィンドウマネージャを選択することもできます:</translation>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>LXQtへようこそ</b>
|
||||
<p>LXQtを使い始める前に、ウィンドウマネージャを選択することもできます:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,16 +25,16 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Jus sveikina LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Jus sveikina LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Jus sveikina LXDE-Qt</b>
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Jus sveikina LXQt</b>
|
||||
<p>
|
||||
Prieš pradėdami dirbti LXDE-Qt aplinkoje, pasirinkite norimą langų tvarkyklę.</translation>
|
||||
Prieš pradėdami dirbti LXQt aplinkoje, pasirinkite norimą langų tvarkyklę.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>You can change the Window Manager later at any time via LxQt Session Configurator.</source>
|
||||
|
@ -25,14 +25,14 @@
|
||||
<context>
|
||||
<name>WmSelectDialog</name>
|
||||
<message>
|
||||
<source>Welcome to LXDE-Qt</source>
|
||||
<translation type="vanished">Welkom bij LXDE-Qt</translation>
|
||||
<source>Welcome to LXQt</source>
|
||||
<translation type="vanished">Welkom bij LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Welcome to LXDE-Qt</b>
|
||||
<source><b>Welcome to LXQt</b>
|
||||
<p>
|
||||
Before starting to use the LXDE-Qt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Welkom bij LXDE-Qt</b>⏎
|
||||
Before starting to use the LXQt, you might want to select the Windows Manager:</source>
|
||||
<translation type="vanished"><b>Welkom bij LXQt</b>⏎
|
||||
<p>⏎
|
||||
Voordat u gebruik maakt van LxQt-Qt, wilt u wellicht een Window Manager selecteren:</translation>
|
||||
</message>
|
||||
|
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