summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--CMakeL10n.txt3
-rw-r--r--CMakeLists.txt16
-rw-r--r--README14
-rw-r--r--README.md39
m---------cmake0
-rw-r--r--doc/CMakeLists.txt14
-rw-r--r--doc/da/CMakeLists.txt1
-rw-r--r--doc/en/CMakeLists.txt1
-rw-r--r--doc/it/CMakeLists.txt1
-rw-r--r--doc/man/CMakeLists.txt8
-rw-r--r--doc/nl/CMakeLists.txt1
-rw-r--r--doc/pt/CMakeLists.txt1
-rw-r--r--doc/sv/CMakeLists.txt1
-rw-r--r--kiosktool/kioskConfigDialog_ui.ui3
-rw-r--r--translations/CMakeLists.txt1
-rw-r--r--translations/desktop_files/kiosktool.desktop/it.po14
-rw-r--r--translations/desktop_files/kiosktool.desktop/pt.po16
-rw-r--r--translations/desktop_files/kiosktool.desktop/pt_BR.po14
-rw-r--r--translations/messages/CMakeLists.txt14
-rw-r--r--translations/messages/br.po21
-rw-r--r--translations/messages/cy.po3
-rw-r--r--translations/messages/de.po21
-rw-r--r--translations/messages/es.po21
-rw-r--r--translations/messages/et.po21
-rw-r--r--translations/messages/it.po33
-rw-r--r--translations/messages/kiosktool.pot95
-rw-r--r--translations/messages/nl.po21
-rw-r--r--translations/messages/pt.po21
-rw-r--r--translations/messages/ta.po21
30 files changed, 113 insertions, 330 deletions
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index 69dd7b2..0000000
--- a/.gitmodules
+++ /dev/null
@@ -1,3 +0,0 @@
-[submodule "cmake"]
- path = cmake
- url = https://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
diff --git a/CMakeL10n.txt b/CMakeL10n.txt
index a525b71..a91bd2a 100644
--- a/CMakeL10n.txt
+++ b/CMakeL10n.txt
@@ -9,12 +9,11 @@
#
#################################################
-cmake_minimum_required( VERSION 2.8 )
+cmake_minimum_required( VERSION 3.1 )
##### include our cmake modules #################
-set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEL10n )
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b6b0d38..cbee37e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,13 +7,12 @@
############################################
-cmake_minimum_required( VERSION 2.8.12 )
+cmake_minimum_required( VERSION 3.1 )
#### general package setup
project( kiosktool )
-set( VERSION R14.0.10 )
#### include essential cmake modules
@@ -29,10 +28,14 @@ include( CheckCXXSourceCompiles )
#### include our cmake modules
-set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEMacros )
+##### set version number ########################
+
+tde_set_project_version( )
+
+
##### setup install paths
include( TDESetupPaths )
@@ -71,10 +74,13 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined"
##### directories
add_subdirectory( ${PROJECT_NAME} )
-tde_conditional_add_subdirectory( BUILD_DOC doc )
-tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations )
+##### other data ################################
+
+tde_conditional_add_project_docs( BUILD_DOC )
+tde_conditional_add_project_translations( BUILD_TRANSLATIONS )
+
##### write configure files
diff --git a/README b/README
deleted file mode 100644
index d60d313..0000000
--- a/README
+++ /dev/null
@@ -1,14 +0,0 @@
-Kiosktool - a graphical KIOSK Admin Tool for TDE.
-
-
-KIOSK Admin Tool is a graphical tool for system administrators to manage
-on a system wide level TDE usage restrictions (KIOSK features) and
-default settings.
-
-It offers system administrators an easy way to predefine desktop
-configurations, lock down settings or otherwise restrict features of the
-TDE desktop environment.
-
-It is centered around "profiles", a profile is a collection of default
-settings and restrictions that can be applied to users or groups of
-users.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..a17c670
--- /dev/null
+++ b/README.md
@@ -0,0 +1,39 @@
+Kiosktool - a graphical KIOSK Admin Tool for TDE.
+
+
+KIOSK Admin Tool is a graphical tool for system administrators to manage
+on a system wide level TDE usage restrictions (KIOSK features) and
+default settings.
+
+It offers system administrators an easy way to predefine desktop
+configurations, lock down settings or otherwise restrict features of the
+TDE desktop environment.
+
+It is centered around "profiles", a profile is a collection of default
+settings and restrictions that can be applied to users or groups of
+users.
+
+.
+
+Contributing
+--------------
+
+If you wish to contribute to Kiosktool, you might do so:
+
+- TDE Gitea Workspace (TGW) collaboration tool.
+ https://mirror.git.trinitydesktop.org/gitea
+
+- TDE Weblate Translation Workspace (TWTW) collaboration tool.
+ https://mirror.git.trinitydesktop.org/weblate
+
+
+Translations status
+---------------------
+
+### messages
+[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/kiosktool/multi-auto.svg
+"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/kiosktool/)
+
+### desktop files
+[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/kiosktool-kiosktooldesktop/multi-auto.svg
+"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/kiosktool-kiosktooldesktop/)
diff --git a/cmake b/cmake
deleted file mode 160000
-Subproject 356a15955cd717c20e4f8de29f7c36a6f38883e
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
deleted file mode 100644
index 70d6348..0000000
--- a/doc/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * )
-string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
-
-foreach( _dir ${_dirs} )
- if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} AND
- EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/CMakeLists.txt )
- if( "${_dir}" STREQUAL "en" OR
- "${_dir}" STREQUAL "man" OR
- "${_linguas}" MATCHES "^;*$" OR
- ";${_linguas};" MATCHES ";${_dir};" )
- add_subdirectory( ${_dir} )
- endif( )
- endif()
-endforeach()
diff --git a/doc/da/CMakeLists.txt b/doc/da/CMakeLists.txt
deleted file mode 100644
index 6121dc2..0000000
--- a/doc/da/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG da )
diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt
deleted file mode 100644
index ba3ef3e..0000000
--- a/doc/en/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} )
diff --git a/doc/it/CMakeLists.txt b/doc/it/CMakeLists.txt
deleted file mode 100644
index e213f2f..0000000
--- a/doc/it/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG it )
diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt
deleted file mode 100644
index 3566987..0000000
--- a/doc/man/CMakeLists.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-INSTALL(
- FILES
- ${PROJECT_NAME}.1
- ${PROJECT_NAME}-tdedirs.1
-
- DESTINATION ${MAN_INSTALL_DIR}/man1
- COMPONENT doc
-)
diff --git a/doc/nl/CMakeLists.txt b/doc/nl/CMakeLists.txt
deleted file mode 100644
index 39c20ab..0000000
--- a/doc/nl/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG nl )
diff --git a/doc/pt/CMakeLists.txt b/doc/pt/CMakeLists.txt
deleted file mode 100644
index fa558f0..0000000
--- a/doc/pt/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG pt )
diff --git a/doc/sv/CMakeLists.txt b/doc/sv/CMakeLists.txt
deleted file mode 100644
index bc04ab0..0000000
--- a/doc/sv/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG sv )
diff --git a/kiosktool/kioskConfigDialog_ui.ui b/kiosktool/kioskConfigDialog_ui.ui
index aba7d97..234f8e8 100644
--- a/kiosktool/kioskConfigDialog_ui.ui
+++ b/kiosktool/kioskConfigDialog_ui.ui
@@ -209,9 +209,6 @@
<property name="text">
<string>Do not show users with a UID lower than</string>
</property>
- <property name="accel">
- <string></string>
- </property>
</widget>
<widget class="TQLayoutWidget">
<property name="name">
diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt
deleted file mode 100644
index 42b186a..0000000
--- a/translations/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_auto_add_subdirectories()
diff --git a/translations/desktop_files/kiosktool.desktop/it.po b/translations/desktop_files/kiosktool.desktop/it.po
index ce515f1..bd02b91 100644
--- a/translations/desktop_files/kiosktool.desktop/it.po
+++ b/translations/desktop_files/kiosktool.desktop/it.po
@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# Michele Calgaro <michele.calgaro@yahoo.it>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-06 16:40+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-09-10 03:45+0000\n"
+"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
+"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/kiosktool-kiosktooldesktop/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.8\n"
#. Name
#: kiosktool.desktop:9
@@ -23,6 +24,5 @@ msgstr "Strumento di amministrazione Kiosk"
#. GenericName
#: kiosktool.desktop:11
-#, fuzzy
msgid "Kiosk Admin Tool"
msgstr "Strumento di amministrazione Kiosk"
diff --git a/translations/desktop_files/kiosktool.desktop/pt.po b/translations/desktop_files/kiosktool.desktop/pt.po
index aae20d5..a4c0eed 100644
--- a/translations/desktop_files/kiosktool.desktop/pt.po
+++ b/translations/desktop_files/kiosktool.desktop/pt.po
@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# Hugo Carvalho <hugokarvalho@hotmail.com>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-06 16:40+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-08-19 18:14+0000\n"
+"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
+"Language-Team: Portuguese <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/kiosktool-kiosktooldesktop/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.7.2\n"
#. Name
#: kiosktool.desktop:9
@@ -23,6 +24,5 @@ msgstr "Ferramenta de Administração do Quiosque"
#. GenericName
#: kiosktool.desktop:11
-#, fuzzy
msgid "Kiosk Admin Tool"
-msgstr "Ferramenta de Administração do Quiosque"
+msgstr "Ferramenta de Administração do Kiosk"
diff --git a/translations/desktop_files/kiosktool.desktop/pt_BR.po b/translations/desktop_files/kiosktool.desktop/pt_BR.po
index 6657f65..f75e5d8 100644
--- a/translations/desktop_files/kiosktool.desktop/pt_BR.po
+++ b/translations/desktop_files/kiosktool.desktop/pt_BR.po
@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-06 16:40+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-12-17 21:59+0000\n"
+"Last-Translator: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>\n"
+"Language-Team: Portuguese (Brazil) <https://mirror.git.trinitydesktop.org/"
+"weblate/projects/applications/kiosktool-kiosktooldesktop/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.9.1\n"
#. Name
#: kiosktool.desktop:9
@@ -23,6 +24,5 @@ msgstr "Ferramenta de administração Kiosh"
#. GenericName
#: kiosktool.desktop:11
-#, fuzzy
msgid "Kiosk Admin Tool"
msgstr "Ferramenta de administração Kiosh"
diff --git a/translations/messages/CMakeLists.txt b/translations/messages/CMakeLists.txt
deleted file mode 100644
index 75c89f8..0000000
--- a/translations/messages/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
-string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
-
-foreach( _po ${po_files} )
- get_filename_component( _lang ${_po} NAME_WE )
- if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" )
- if( "${_po}" MATCHES "^([^/]*)/.*" )
- string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" )
- else( )
- set( _component "${PROJECT_NAME}" )
- endif( )
- tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} )
- endif( )
-endforeach( )
diff --git a/translations/messages/br.po b/translations/messages/br.po
index 9d87b74..d3f0748 100644
--- a/translations/messages/br.po
+++ b/translations/messages/br.po
@@ -1203,27 +1203,6 @@ msgstr ""
#~ msgid "&Delete"
#~ msgstr "&Lemel ar profil"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
-
#~ msgid "%1 Configuration"
#~ msgstr "Kefluniadur %1"
diff --git a/translations/messages/cy.po b/translations/messages/cy.po
index 829fa24..57158b4 100644
--- a/translations/messages/cy.po
+++ b/translations/messages/cy.po
@@ -1202,9 +1202,6 @@ msgstr ""
#~ msgid "&Delete"
#~ msgstr "&Dileu Proffil"
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
#~ msgid "Action"
#~ msgstr "Gweithred"
diff --git a/translations/messages/de.po b/translations/messages/de.po
index eaa6333..5bb9be2 100644
--- a/translations/messages/de.po
+++ b/translations/messages/de.po
@@ -1427,29 +1427,8 @@ msgstr "Benutzer Policy &löschen"
#~ msgid "ComponentPageUI"
#~ msgstr "ComponentPageUI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "ComponentSelectionPageUI"
#~ msgid "MainView"
#~ msgstr "Hauptansicht"
-
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
diff --git a/translations/messages/es.po b/translations/messages/es.po
index cc6a5b8..0a50928 100644
--- a/translations/messages/es.po
+++ b/translations/messages/es.po
@@ -1414,33 +1414,12 @@ msgstr "&Borrar la política de usuario"
#~ msgid "ComponentPageUI"
#~ msgstr "ComponentPageUI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "ComponentSelectionPageUI"
#~ msgid "MainView"
#~ msgstr "MainView"
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
-
#~ msgid "%1 Configuration"
#~ msgstr "Configuración de %1"
diff --git a/translations/messages/et.po b/translations/messages/et.po
index 5709afe..9cb5b8f 100644
--- a/translations/messages/et.po
+++ b/translations/messages/et.po
@@ -1358,33 +1358,12 @@ msgstr "&Kustuta kasutaja reegel"
#~ msgid "ComponentPageUI"
#~ msgstr "ComponentPageUI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "ComponentSelectionPageUI"
#~ msgid "MainView"
#~ msgstr "Peavaade"
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
-
#~ msgid "%1 Configuration"
#~ msgstr "%1 seadistamine"
diff --git a/translations/messages/it.po b/translations/messages/it.po
index 224a116..3abf107 100644
--- a/translations/messages/it.po
+++ b/translations/messages/it.po
@@ -1,11 +1,12 @@
# translation of kiosktool.po to Italian
# Federico Zenith <zenith@chemeng.ntnu.no>, 2004.
+# Michele Calgaro <michele.calgaro@yahoo.it>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: kiosktool\n"
-"POT-Creation-Date: 2020-05-11 13:14+0200\n"
-"PO-Revision-Date: 2019-05-31 13:15+0000\n"
-"Last-Translator: stefano <ifx@lazytux.it>\n"
+"POT-Creation-Date: 2021-07-07 18:32+0000\n"
+"PO-Revision-Date: 2021-09-10 03:45+0000\n"
+"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/kiosktool/it/>\n"
"Language: it\n"
@@ -13,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.6.1\n"
+"X-Generator: Weblate 4.8\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
@@ -373,7 +374,6 @@ msgid "Author"
msgstr "Autore"
#: main.cpp:72
-#, fuzzy
msgid ""
"<qt>KIOSK Admin Tool requires KDE 3.2.2 or later!<p>With older versions you "
"may experience problems withthe <i>Setup</i> functionality of the various "
@@ -1200,7 +1200,7 @@ msgid ""
"The \"Edit file type\" can be used to change how files are recognized and "
"with which applications such files are opened."
msgstr ""
-"\"Modifica tipo di file\" può essere usato per cambiare come i file vengono "
+"\"Modifica tipo di file\" può essere usato per cambiare come i file vengono "
"riconosciuti e con quale applicazione sono aperti."
#: componentPage_ui.ui:78
@@ -1412,33 +1412,12 @@ msgstr "&Elimina politica utente"
#~ msgid "ComponentPageUI"
#~ msgstr "ComponentPageUI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "ComponentSelectionPageUI"
#~ msgid "MainView"
#~ msgstr "VistaPrincipale"
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
-
#~ msgid "%1 Configuration"
#~ msgstr "Configurazione di %1"
diff --git a/translations/messages/kiosktool.pot b/translations/messages/kiosktool.pot
index c9fcaa6..be5cb1f 100644
--- a/translations/messages/kiosktool.pot
+++ b/translations/messages/kiosktool.pot
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-05-11 13:14+0200\n"
+"POT-Creation-Date: 2021-07-07 22:33+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -335,8 +335,8 @@ msgstr ""
#: profilePropsPage.cpp:182
msgid ""
-"<qt>The directory for this profile has changed from <b>%1</b> to "
-"<b>%2</b>.<p>The following files under <b>%3</b> will be moved to <b>%4</b>"
+"<qt>The directory for this profile has changed from <b>%1</b> to <b>%2</b>."
+"<p>The following files under <b>%3</b> will be moved to <b>%4</b>"
msgstr ""
#: profilePropsPage.cpp:187
@@ -795,19 +795,14 @@ msgstr ""
msgid "Common menu actions found in applications."
msgstr ""
-#: kiosk_data.xml:368 kiosk_data.xml:374
-#: kiosk_data.xml:381 kiosk_data.xml:387
-#: kiosk_data.xml:393 kiosk_data.xml:399
-#: kiosk_data.xml:405 kiosk_data.xml:411
-#: kiosk_data.xml:418 kiosk_data.xml:424
-#: kiosk_data.xml:430
+#: kiosk_data.xml:368 kiosk_data.xml:374 kiosk_data.xml:381 kiosk_data.xml:387
+#: kiosk_data.xml:393 kiosk_data.xml:399 kiosk_data.xml:405 kiosk_data.xml:411
+#: kiosk_data.xml:418 kiosk_data.xml:424 kiosk_data.xml:430
msgid "Disable File -> %action"
msgstr ""
-#: kiosk_data.xml:370 kiosk_data.xml:383
-#: kiosk_data.xml:389 kiosk_data.xml:395
-#: kiosk_data.xml:401 kiosk_data.xml:407
-#: kiosk_data.xml:420 kiosk_data.xml:426
+#: kiosk_data.xml:370 kiosk_data.xml:383 kiosk_data.xml:389 kiosk_data.xml:395
+#: kiosk_data.xml:401 kiosk_data.xml:407 kiosk_data.xml:420 kiosk_data.xml:426
msgid ""
"This option can be used to remove the <i>File -> %action</i> menu-option "
"from all applications."
@@ -832,57 +827,41 @@ msgid ""
"the application can be terminated via the window manager as well."
msgstr ""
-#: kiosk_data.xml:438 kiosk_data.xml:444
-#: kiosk_data.xml:450 kiosk_data.xml:456
-#: kiosk_data.xml:462 kiosk_data.xml:468
-#: kiosk_data.xml:474 kiosk_data.xml:480
-#: kiosk_data.xml:486 kiosk_data.xml:492
-#: kiosk_data.xml:498
+#: kiosk_data.xml:438 kiosk_data.xml:444 kiosk_data.xml:450 kiosk_data.xml:456
+#: kiosk_data.xml:462 kiosk_data.xml:468 kiosk_data.xml:474 kiosk_data.xml:480
+#: kiosk_data.xml:486 kiosk_data.xml:492 kiosk_data.xml:498
msgid "Disable Edit -> %action"
msgstr ""
-#: kiosk_data.xml:440 kiosk_data.xml:446
-#: kiosk_data.xml:452 kiosk_data.xml:458
-#: kiosk_data.xml:464 kiosk_data.xml:470
-#: kiosk_data.xml:476 kiosk_data.xml:482
-#: kiosk_data.xml:488 kiosk_data.xml:494
-#: kiosk_data.xml:500
+#: kiosk_data.xml:440 kiosk_data.xml:446 kiosk_data.xml:452 kiosk_data.xml:458
+#: kiosk_data.xml:464 kiosk_data.xml:470 kiosk_data.xml:476 kiosk_data.xml:482
+#: kiosk_data.xml:488 kiosk_data.xml:494 kiosk_data.xml:500
msgid ""
"This option can be used to remove the <i>Edit -> %action</i> menu-option "
"from all applications."
msgstr ""
-#: kiosk_data.xml:504 kiosk_data.xml:510
-#: kiosk_data.xml:516 kiosk_data.xml:522
-#: kiosk_data.xml:528 kiosk_data.xml:534
-#: kiosk_data.xml:540 kiosk_data.xml:546
+#: kiosk_data.xml:504 kiosk_data.xml:510 kiosk_data.xml:516 kiosk_data.xml:522
+#: kiosk_data.xml:528 kiosk_data.xml:534 kiosk_data.xml:540 kiosk_data.xml:546
msgid "Disable View -> %action"
msgstr ""
-#: kiosk_data.xml:506 kiosk_data.xml:512
-#: kiosk_data.xml:518 kiosk_data.xml:524
-#: kiosk_data.xml:530 kiosk_data.xml:536
-#: kiosk_data.xml:542 kiosk_data.xml:548
+#: kiosk_data.xml:506 kiosk_data.xml:512 kiosk_data.xml:518 kiosk_data.xml:524
+#: kiosk_data.xml:530 kiosk_data.xml:536 kiosk_data.xml:542 kiosk_data.xml:548
msgid ""
"This option can be used to remove the <i>View -> %action</i> menu-option "
"from all applications."
msgstr ""
-#: kiosk_data.xml:552 kiosk_data.xml:558
-#: kiosk_data.xml:564 kiosk_data.xml:570
-#: kiosk_data.xml:576 kiosk_data.xml:582
-#: kiosk_data.xml:588 kiosk_data.xml:594
-#: kiosk_data.xml:600 kiosk_data.xml:606
-#: kiosk_data.xml:612
+#: kiosk_data.xml:552 kiosk_data.xml:558 kiosk_data.xml:564 kiosk_data.xml:570
+#: kiosk_data.xml:576 kiosk_data.xml:582 kiosk_data.xml:588 kiosk_data.xml:594
+#: kiosk_data.xml:600 kiosk_data.xml:606 kiosk_data.xml:612
msgid "Disable Go -> %action"
msgstr ""
-#: kiosk_data.xml:554 kiosk_data.xml:560
-#: kiosk_data.xml:566 kiosk_data.xml:572
-#: kiosk_data.xml:578 kiosk_data.xml:584
-#: kiosk_data.xml:590 kiosk_data.xml:596
-#: kiosk_data.xml:602 kiosk_data.xml:608
-#: kiosk_data.xml:614
+#: kiosk_data.xml:554 kiosk_data.xml:560 kiosk_data.xml:566 kiosk_data.xml:572
+#: kiosk_data.xml:578 kiosk_data.xml:584 kiosk_data.xml:590 kiosk_data.xml:596
+#: kiosk_data.xml:602 kiosk_data.xml:608 kiosk_data.xml:614
msgid ""
"This option can be used to remove the <i>Go -> %action</i> menu-option from "
"all applications."
@@ -915,17 +894,13 @@ msgid ""
"from all applications."
msgstr ""
-#: kiosk_data.xml:642 kiosk_data.xml:648
-#: kiosk_data.xml:654 kiosk_data.xml:660
-#: kiosk_data.xml:666 kiosk_data.xml:678
-#: kiosk_data.xml:684 kiosk_data.xml:690
+#: kiosk_data.xml:642 kiosk_data.xml:648 kiosk_data.xml:654 kiosk_data.xml:660
+#: kiosk_data.xml:666 kiosk_data.xml:678 kiosk_data.xml:684 kiosk_data.xml:690
msgid "Disable Settings -> %action"
msgstr ""
-#: kiosk_data.xml:644 kiosk_data.xml:650
-#: kiosk_data.xml:656 kiosk_data.xml:662
-#: kiosk_data.xml:668 kiosk_data.xml:680
-#: kiosk_data.xml:686 kiosk_data.xml:692
+#: kiosk_data.xml:644 kiosk_data.xml:650 kiosk_data.xml:656 kiosk_data.xml:662
+#: kiosk_data.xml:668 kiosk_data.xml:680 kiosk_data.xml:686 kiosk_data.xml:692
msgid ""
"This option can be used to remove the <i>Settings -> %action</i> menu-option "
"from all applications."
@@ -937,8 +912,8 @@ msgstr ""
#: kiosk_data.xml:674
msgid ""
-"This option can be used to remove the <i>Settings -> Configure "
-"&lt;Application&gt;</i> menu-option from all applications."
+"This option can be used to remove the <i>Settings -> Configure &lt;"
+"Application&gt;</i> menu-option from all applications."
msgstr ""
#: kiosk_data.xml:696
@@ -959,13 +934,11 @@ msgid ""
"Handbook</i> menu-option from all applications."
msgstr ""
-#: kiosk_data.xml:708 kiosk_data.xml:714
-#: kiosk_data.xml:726
+#: kiosk_data.xml:708 kiosk_data.xml:714 kiosk_data.xml:726
msgid "Disable Help -> %action"
msgstr ""
-#: kiosk_data.xml:710 kiosk_data.xml:716
-#: kiosk_data.xml:728
+#: kiosk_data.xml:710 kiosk_data.xml:716 kiosk_data.xml:728
msgid ""
"This option can be used to remove the <i>Help -> %action</i> menu-option "
"from all applications."
@@ -977,8 +950,8 @@ msgstr ""
#: kiosk_data.xml:722
msgid ""
-"This option can be used to remove the <i>Help -> About "
-"&lt;Application&gt;</i> menu-option from all applications."
+"This option can be used to remove the <i>Help -> About &lt;Application&gt;</"
+"i> menu-option from all applications."
msgstr ""
#: kiosk_data.xml:735
diff --git a/translations/messages/nl.po b/translations/messages/nl.po
index ca66daf..18570ff 100644
--- a/translations/messages/nl.po
+++ b/translations/messages/nl.po
@@ -1422,29 +1422,8 @@ msgstr "Gebruikersprofiel verwij&deren"
#~ msgid "ComponentPageUI"
#~ msgstr "ComponentPageUI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "ComponentSelectionPageUI"
#~ msgid "MainView"
#~ msgstr "Hoofdweergave"
-
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
diff --git a/translations/messages/pt.po b/translations/messages/pt.po
index 7853410..d50fa57 100644
--- a/translations/messages/pt.po
+++ b/translations/messages/pt.po
@@ -1395,33 +1395,12 @@ msgstr "A&pagar o Política do Utilizador"
#~ msgid "ComponentPageUI"
#~ msgstr "ComponentPageUI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "ComponentSelectionPageUI"
#~ msgid "MainView"
#~ msgstr "MainView"
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"
-
#~ msgid "%1 Configuration"
#~ msgstr "Configuração de %1"
diff --git a/translations/messages/ta.po b/translations/messages/ta.po
index 46150ef..35c0a56 100644
--- a/translations/messages/ta.po
+++ b/translations/messages/ta.po
@@ -1337,29 +1337,8 @@ msgstr "பயனர் கொள்கையை &நீக்கு"
#~ msgid "ComponentPageUI"
#~ msgstr "பகுதிபக்கம்UI"
-#~ msgid "Alt+S"
-#~ msgstr "Alt+S"
-
-#~ msgid "Alt+P"
-#~ msgstr "Alt+P"
-
#~ msgid "ComponentSelectionPageUI"
#~ msgstr "பகுதிதேர்வுபக்கம்UI"
#~ msgid "MainView"
#~ msgstr "முக்கிய காட்சி"
-
-#~ msgid "Alt+H"
-#~ msgstr "Alt+H"
-
-#~ msgid "Alt+F"
-#~ msgstr "Alt+F"
-
-#~ msgid "Alt+N"
-#~ msgstr "Alt+N"
-
-#~ msgid "Alt+A"
-#~ msgstr "Alt+A"
-
-#~ msgid "Alt+D"
-#~ msgstr "Alt+D"