summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--CMakeL10n.txt3
-rw-r--r--CMakeLists.txt17
-rw-r--r--README2
-rw-r--r--README.md39
m---------cmake0
-rw-r--r--doc/CMakeLists.txt14
-rw-r--r--doc/en/CMakeLists.txt1
-rw-r--r--doc/man/CMakeLists.txt5
-rw-r--r--translations/CMakeLists.txt1
-rw-r--r--translations/desktop_files/katapult-catalogs/it.po23
-rw-r--r--translations/desktop_files/katapult-displays/it.po19
-rw-r--r--translations/desktop_files/katapult.desktop/it.po15
-rw-r--r--translations/desktop_files/katapult.desktop/pt_BR.po15
-rw-r--r--translations/messages/CMakeLists.txt14
-rw-r--r--translations/messages/uk.po18
16 files changed, 99 insertions, 90 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 1f859e6..de63a9c 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( katapult )
-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 )
@@ -69,8 +72,12 @@ 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 c1806e8..0000000
--- a/README
+++ /dev/null
@@ -1,2 +0,0 @@
-Katapult is an application which analyses text-based queries
-to launch items such as bookmarks, directories or programs.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e892165
--- /dev/null
+++ b/README.md
@@ -0,0 +1,39 @@
+
+Katapult - item launcher for TDE [Trinity]
+
+
+Katapult is an application which analyses text-based queries
+to launch items such as bookmarks, directories or programs.
+
+.
+
+Contributing
+--------------
+
+If you wish to contribute to katapult, 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/-/katapult/multi-auto.svg
+"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult/)
+
+### desktop files
+[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/katapult-katapultdesktop/multi-auto.svg
+"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult-katapultdesktop/)
+
+### catalogs
+[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/katapult-catalogs/multi-auto.svg
+"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult-catalogs/)
+
+### displays
+[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/katapult-displays/multi-auto.svg
+"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult-displays/)
diff --git a/cmake b/cmake
deleted file mode 160000
-Subproject 0c19587aec8428444d2878fc5e2c966613207f8
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/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/man/CMakeLists.txt b/doc/man/CMakeLists.txt
deleted file mode 100644
index 8512250..0000000
--- a/doc/man/CMakeLists.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-INSTALL(
- FILES ${PROJECT_NAME}.1
- DESTINATION ${MAN_INSTALL_DIR}/man1
- COMPONENT doc
-)
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/katapult-catalogs/it.po b/translations/desktop_files/katapult-catalogs/it.po
index 77d22d7..3fb82b4 100644
--- a/translations/desktop_files/katapult-catalogs/it.po
+++ b/translations/desktop_files/katapult-catalogs/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-05 00:43+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-12 11:14+0000\n"
+"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
+"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/katapult-catalogs/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.7.2\n"
#. Comment
#: common/katapultcatalog.desktop:4
@@ -68,25 +69,23 @@ msgstr "Cataloga i tuoi documenti per aprirli facilmente attraverso Katapult"
#. Name
#: plugins/catalogs/execcatalog/katapult_execcatalog.desktop:3
-#, fuzzy
msgid "Execution Catalog"
-msgstr "Catalogo calcolatrice"
+msgstr "Catalogo esegui"
#. Comment
#: plugins/catalogs/execcatalog/katapult_execcatalog.desktop:4
msgid "Execute commands"
-msgstr ""
+msgstr "Esegui comandi"
#. Name
#: plugins/catalogs/googlecatalog/katapult_googlecatalog.desktop:3
-#, fuzzy
msgid "Google Catalog"
-msgstr "Catalogo programmi"
+msgstr "Catalogo google"
#. Comment
#: plugins/catalogs/googlecatalog/katapult_googlecatalog.desktop:4
msgid "Search Google"
-msgstr ""
+msgstr "Cerca con Google"
#. Name
#: plugins/catalogs/programcatalog/katapult_programcatalog.desktop:2
diff --git a/translations/desktop_files/katapult-displays/it.po b/translations/desktop_files/katapult-displays/it.po
index d7e4f39..6e88180 100644
--- a/translations/desktop_files/katapult-displays/it.po
+++ b/translations/desktop_files/katapult-displays/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-05 00:46+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-12 11:14+0000\n"
+"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
+"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/katapult-displays/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.7.2\n"
#. Comment
#: common/katapultdisplay.desktop:4
@@ -24,7 +25,7 @@ msgstr "Un plugin per i display di Katapult"
#. Name
#: plugins/display/glassdisplay/katapult_glassdisplay.desktop:2
msgid "Glass Display"
-msgstr ""
+msgstr "Glass Display"
#. Comment
#: plugins/display/glassdisplay/katapult_glassdisplay.desktop:3
@@ -34,12 +35,12 @@ msgstr "Plugin Glass display per Katapult"
#. Name
#: plugins/display/o2display/katapult_o2display.desktop:2
msgid "o2 Display"
-msgstr ""
+msgstr "o2 Display"
#. Name
#: plugins/display/puredisplay/katapult_puredisplay.desktop:2
msgid "Pure Display"
-msgstr ""
+msgstr "Pure Display"
#. Comment
#: plugins/display/puredisplay/katapult_puredisplay.desktop:3
diff --git a/translations/desktop_files/katapult.desktop/it.po b/translations/desktop_files/katapult.desktop/it.po
index 19ff56b..dbd86b1 100644
--- a/translations/desktop_files/katapult.desktop/it.po
+++ b/translations/desktop_files/katapult.desktop/it.po
@@ -1,25 +1,26 @@
# 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-05 00: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-12 11:14+0000\n"
+"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
+"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/katapult-katapultdesktop/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.7.2\n"
#. Name
#: katapult/katapult.desktop:3
msgid "Katapult"
-msgstr ""
+msgstr "Katapult"
#. GenericName
#: katapult/katapult.desktop:6
diff --git a/translations/desktop_files/katapult.desktop/pt_BR.po b/translations/desktop_files/katapult.desktop/pt_BR.po
index 083fefb..7fa606a 100644
--- a/translations/desktop_files/katapult.desktop/pt_BR.po
+++ b/translations/desktop_files/katapult.desktop/pt_BR.po
@@ -1,25 +1,26 @@
# 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-05 00: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/katapult-katapultdesktop/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
#: katapult/katapult.desktop:3
msgid "Katapult"
-msgstr ""
+msgstr "Katapult"
#. GenericName
#: katapult/katapult.desktop:6
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/uk.po b/translations/messages/uk.po
index 6e1e4c0..bfab62d 100644
--- a/translations/messages/uk.po
+++ b/translations/messages/uk.po
@@ -1,20 +1,22 @@
# Translation of katapult.po to Ukrainian
#
# Ivan Petrouchtchak <ivanpetrouchtchak@yahoo.com>, 2006.
+# Roman Savochenko <roman@oscada.org>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: katapult\n"
"POT-Creation-Date: 2020-05-11 04:18+0200\n"
-"PO-Revision-Date: 2006-06-08 15:00-0700\n"
-"Last-Translator: Ivan Petrouchtchak <ivanpetrouchtchak@yahoo.com>\n"
-"Language-Team: Ukrainian <translation@linux.org.ua>\n"
+"PO-Revision-Date: 2022-04-24 18:06+0000\n"
+"Last-Translator: Roman Savochenko <roman@oscada.org>\n"
+"Language-Team: Ukrainian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/katapult/uk/>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.2\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.11.2\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
@@ -128,11 +130,11 @@ msgstr "Перший автор"
#: katapult/settings.cpp:93
msgid "MyDialog1"
-msgstr "MyDialog1"
+msgstr "МійДіалог1"
#: katapult/settings.cpp:95
msgid "New Item"
-msgstr "Новий елемент"
+msgstr "Новий Елемент"
#: katapult/settings.cpp:96 katapult/settings.cpp:97
msgid "Tab"