Difference between revisions of "Changelog For R14.0.6"
Jump to navigation
Jump to search
imported>SlavekB (Update 20190210) |
imported>SlavekB (Update 20190330) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
= common = |
= common = |
||
== admin == |
== admin == |
||
+ | * Drop definition of deprecated substitution type ksize_t.<br/>This avoids FTBFS on FreeBSD 12. |
||
* Remove unwanted -i option for perl.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2984 #2984] |
* Remove unwanted -i option for perl.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2984 #2984] |
||
* Fix misplaced 'fi' |
* Fix misplaced 'fi' |
||
Line 6: | Line 7: | ||
== cmake == |
== cmake == |
||
+ | * Fix installation of base soname for libraries with release number in the name.<br/>This resolves regression from prior commit. |
||
+ | * Add a function that determines the filename of the library<br/>for the target. This replaces get_target_property( LOCATION )<br/>that is deprecated due to CMP0026. |
||
* Update tde_setup_gcc_visibility macro<br/>+ In the test include kdemacros.h with detected full path to avoid FTBFS.<br/>+ Do not test gcc visibility on TDE unless the current module uses TDE.<br/>+ Do not test gcc visibility on TQt unless the current module uses TQt.<br/>+ Improve test for gcc visibility on TQt to make it more accurate. |
* Update tde_setup_gcc_visibility macro<br/>+ In the test include kdemacros.h with detected full path to avoid FTBFS.<br/>+ Do not test gcc visibility on TDE unless the current module uses TDE.<br/>+ Do not test gcc visibility on TQt unless the current module uses TQt.<br/>+ Improve test for gcc visibility on TQt to make it more accurate. |
||
* Update tde_setup_dbus macro<br/>+ Old versions of dbus do not include a definition for system_bus_services_dir.<br/>+ The value for system_bus_services_dir is derived from session_bus_services_dir. |
* Update tde_setup_dbus macro<br/>+ Old versions of dbus do not include a definition for system_bus_services_dir.<br/>+ The value for system_bus_services_dir is derived from session_bus_services_dir. |
||
Line 49: | Line 52: | ||
= dependencies = |
= dependencies = |
||
== qt3 == |
== qt3 == |
||
+ | * bmp image: check for out of range image size.<br/>Make the decoder fail early to avoid spending time and memory on<br/>attempting to decode a corrupt image file.<br/>Based on Qt5 patch for CVE-2018-19873. |
||
+ | * Check for QImage allocation failure in qasyncimageio.<br/>Since image files easily can be (or corrupt files claim to be) huge,<br/>it is worth checking for out of memory situations.<br/>Based on Qt5 patch for CVE-2018-19870. |
||
+ | * Add the definition _WANT_SEMUN to ensure the definition of the semun structure.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2991 #2991]<br/>Thanks to Nikolaus Klepp for initial patch. |
||
* Make use of QString::utf8() and QString::local8Bit() safe for conversion to char*. |
* Make use of QString::utf8() and QString::local8Bit() safe for conversion to char*. |
||
* Enable gcc visibility support for *BSD builds. |
* Enable gcc visibility support for *BSD builds. |
||
Line 59: | Line 65: | ||
== tqt3 == |
== tqt3 == |
||
+ | * bmp image: check for out of range image size.<br/>Make the decoder fail early to avoid spending time and memory on<br/>attempting to decode a corrupt image file.<br/>Based on Qt5 patch for CVE-2018-19873. |
||
+ | * Check for TQImage allocation failure in qasyncimageio.<br/>Since image files easily can be (or corrupt files claim to be) huge,<br/>it is worth checking for out of memory situations.<br/>Based on Qt5 patch for CVE-2018-19870. |
||
+ | * Add the definition _WANT_SEMUN to ensure the definition of the semun structure.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2991 #2991]<br/>Thanks to Nikolaus Klepp for initial patch. |
||
* Make use of TQString::utf8() and TQString::local8Bit() safe for conversion to char*. |
* Make use of TQString::utf8() and TQString::local8Bit() safe for conversion to char*. |
||
* Enable gcc visibility support for *BSD builds. |
* Enable gcc visibility support for *BSD builds. |
||
Line 109: | Line 118: | ||
= main = |
= main = |
||
== tdelibs == |
== tdelibs == |
||
+ | * Fix CMake build dependencies for tests. |
||
+ | * Removed "DEVELOPMENT" from TDE version in preparation for R14.0.6 release. |
||
+ | * Update Kate syntax highlight files from<br/>http://kate-editor.org/syntax/2.5/ sources. |
||
+ | * tdehwlib: Fix the flag setting whether the storage device contains the file system.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2232 #2232], bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2607 #2607] and bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2946 #2946] |
||
+ | * Use system libdir when searching for dynamically loaded libraries.<br/>This prevents finding an incorrect architecture on multi-arch systems. |
||
+ | * Fixed support for logind power state calls.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2661 #2661] and bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2975 #2975] |
||
+ | * Fix SSL initialization for OpenSSL >= 1.1. |
||
+ | * Fix openssl >= 1.1 detection without pkg-config file. |
||
* Use a common test for dbus detection and paths configuration. |
* Use a common test for dbus detection and paths configuration. |
||
* Use common test for large files support.<br/>Drop hardcoded definition -D_LARGEFILE64_SOURCE=1. |
* Use common test for large files support.<br/>Drop hardcoded definition -D_LARGEFILE64_SOURCE=1. |
||
Line 136: | Line 153: | ||
== tdebase == |
== tdebase == |
||
+ | * tdm: Do not run tdekbdledsync on remote displays.<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=1834 #1834] |
||
+ | * Fix openssl >= 1.1 detection without pkg-config file. |
||
+ | * Port TIME_WITH_SYS_TIME to CMake.<br/>This resolves FTBFS from commit 05dc8500dd. |
||
+ | * Add $DISPLAY to kdesktop_lock_lockfile file name.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2998 #2998]<br/>Thanks to Russell Brown for analyzing the problem and propose a solution. |
||
+ | * Ensure include of sys/stat.h<br/>It is required for mkdir(2), chmod(2) and mkfifo(2). |
||
+ | * Port HAVE_SYS_TIME_H to CMake<br/>It is used, but not checked with CMake. |
||
+ | * resolve ambiguous log() overload<br/>log() may accept `float` or `double` for C++, so passing `int` is ambiguous.<br/>Change to exactly pass valiables as `double` to log(), it is expected here. |
||
* Use common test for large files support.<br/>Drop hardcoded definition -D_LARGEFILE64_SOURCE. |
* Use common test for large files support.<br/>Drop hardcoded definition -D_LARGEFILE64_SOURCE. |
||
* Use common GCC visibility test. |
* Use common GCC visibility test. |
||
Line 191: | Line 215: | ||
== tdenetwork == |
== tdenetwork == |
||
+ | * LibVNCClient: don't leak uninitialised memory to remote<br/>The pad fields of the rfbClientCutTextMsg and rfbKeyEventMsg could contain arbitray memory belonging to the process,<br/>don't leak this to the remote.<br/>Closes #252 |
||
+ | * LibVNCClient: fix possible infinite loop<br/>Closes #251 |
||
+ | * Limit client cut text length to 1 MB<br/>This patch constrains a client cut text length to 1 MB. Otherwise<br/>a client could make server allocate 2 GB of memory and that seems to<br/>be to much to classify it as a denial of service.<br/>The limit also prevents from an integer overflow followed by copying<br/>an uninitilized memory when processing msg.cct.length value larger<br/>than SIZE_MAX or INT_MAX - sz_rfbClientCutTextMsg.<br/>This patch also corrects accepting length value of zero (malloc(0) is<br/>interpreted on differnet systems differently).<br/>CVE-2018-7225<br/><https://github.com/LibVNC/libvncserver/issues/218> |
||
+ | * Use socklen_t directly, instead of deprecated ksize_t.<br/>This resolves FTBFS on FreeBSD 12. |
||
* Fix potential memory leak. |
* Fix potential memory leak. |
||
* Avoid divide-by-zero in raw encoding (OSX RealVNC)<br/>OS X RealVNC server crashes out Remmina because the server can provoke<br/>bytesPerLine to be zero. Assume this is coding for zero lines.<br/>The condition could be checked before the calculation of bytesPerLine.<br/>I don’t understand the preconditions of this code to say one way or the<br/>other. |
* Avoid divide-by-zero in raw encoding (OSX RealVNC)<br/>OS X RealVNC server crashes out Remmina because the server can provoke<br/>bytesPerLine to be zero. Assume this is coding for zero lines.<br/>The condition could be checked before the calculation of bytesPerLine.<br/>I don’t understand the preconditions of this code to say one way or the<br/>other. |
||
Line 318: | Line 346: | ||
== tdevelop == |
== tdevelop == |
||
+ | * Add CMake check if the getline function is defined<br/>instead of listing the systems and versions that need to be defined.<br/>This resolves FTBFS on FreeBSD 12. |
||
* Use common CMake tests. |
* Use common CMake tests. |
||
* Add CMakeL10n rules. |
* Add CMakeL10n rules. |
||
Line 342: | Line 371: | ||
== tde-i18n == |
== tde-i18n == |
||
+ | * Merge translation files from master branch. |
||
+ | * Update translation template. |
||
* Merge translation files from master branch. |
* Merge translation files from master branch. |
||
* Update translation template. |
* Update translation template. |
||
Line 964: | Line 995: | ||
== libtdeldap == |
== libtdeldap == |
||
+ | * Fix access to ldap configuration files on non-controller (workstation) systems |
||
+ | * Properly set umask on login |
||
+ | * Correctly set permissions on LDAP configuration file to only allow owner / group, since this file contains a multi-master replication password in plain text |
||
* cmake: Add missing CheckSymbolExists include. |
* cmake: Add missing CheckSymbolExists include. |
||
* Use common CMake tests. |
* Use common CMake tests. |
||
Line 1,034: | Line 1,068: | ||
== dolphin == |
== dolphin == |
||
+ | * fix issue [https://mirror.git.trinitydesktop.org/gitea/TDE/dolphin/issues/2 #2], add WITH_ALL_OPTIONS, clean up CMakeLists.txt from libvisual and write config.h.cmake up |
||
+ | * resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/dolphin/issues/2 #2], add a man page |
||
* cmake: Add rules to build documentation and translations.<br/>This partially resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/dolphin/issues/2 #2] |
* cmake: Add rules to build documentation and translations.<br/>This partially resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/dolphin/issues/2 #2] |
||
* Use common CMake tests. |
* Use common CMake tests. |
||
Line 1,062: | Line 1,098: | ||
* Add includes to UI files to resolve FTBFS. |
* Add includes to UI files to resolve FTBFS. |
||
* Removed extension from icon name in desktop file. This relates to bug<br/>2424. |
* Removed extension from icon name in desktop file. This relates to bug<br/>2424. |
||
+ | |||
+ | == gtk3-tqt-engine == |
||
+ | * Fix the path for installing GTK3 libraries.<br/>Second attempt because GTK3_LIBDIR already contains GTK3_PREFIX. |
||
+ | * Fix the path for installing GTK3 libraries. |
||
== gwenview == |
== gwenview == |
||
Line 1,124: | Line 1,164: | ||
== katapult == |
== katapult == |
||
+ | * Add KDE_EXPORT to public library symbols.<br/>This allows build with gcc hidden visibility. |
||
+ | * Add includes to UI files to resolve FTBFS. |
||
+ | * conversion to the cmake building system |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/katapult<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/katapult<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,130: | Line 1,173: | ||
== kbarcode == |
== kbarcode == |
||
+ | * Merge translation files from master branch. |
||
+ | * Update translation template. |
||
+ | * Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed. |
||
+ | * automake: add WITH_NATIVE_GNU_BARCODE and WITH_JAVASCRIPT build options |
||
+ | * cmake: add WITH_NATIVE_GNU_BARCODE and WITH_JAVASCRIPT build options |
||
+ | * conversion to the cmake building system |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbarcode<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbarcode/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbarcode<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbarcode/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,148: | Line 1,197: | ||
== kbibtex == |
== kbibtex == |
||
+ | * Fix build with standalone libiconv. |
||
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed. |
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed. |
||
* conversion to the cmake building system |
* conversion to the cmake building system |
||
Line 1,156: | Line 1,206: | ||
== kbiff == |
== kbiff == |
||
+ | * Merge translation files from master branch. |
||
+ | * Convert translation to UTF-8. |
||
* Use common CMake tests. |
* Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbiff<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbiff/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbiff<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbiff/ |
||
Line 1,219: | Line 1,271: | ||
== kcpuload == |
== kcpuload == |
||
+ | * Fix FTBFS on FreeBSD<br/>Taken from FreeBSD patches. |
||
* Use common CMake tests. |
* Use common CMake tests. |
||
* Update translation template. |
* Update translation template. |
||
Line 1,247: | Line 1,300: | ||
== kdirstat == |
== kdirstat == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdirstat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdirstat/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdirstat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdirstat/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,293: | Line 1,347: | ||
== kgtk-qt3 == |
== kgtk-qt3 == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kgtk-qt3<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kgtk-qt3/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kgtk-qt3<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kgtk-qt3/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,314: | Line 1,369: | ||
== kiosktool == |
== kiosktool == |
||
+ | * Use common CMake tests. |
||
* Remove 'xx' translation file. |
* Remove 'xx' translation file. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kiosktool<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kiosktool/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kiosktool<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kiosktool/ |
||
Line 1,327: | Line 1,383: | ||
== kkbswitch == |
== kkbswitch == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kkbswitch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kkbswitch/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kkbswitch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kkbswitch/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,337: | Line 1,394: | ||
== klcddimmer == |
== klcddimmer == |
||
+ | * Use common CMake tests. |
||
* Update translation template. |
* Update translation template. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
Line 1,373: | Line 1,431: | ||
== knetload == |
== knetload == |
||
+ | * Use common CMake tests. |
||
* Remove 'xx' translation file. |
* Remove 'xx' translation file. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knetload<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetload/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knetload<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetload/ |
||
Line 1,383: | Line 1,442: | ||
== knetstats == |
== knetstats == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knetstats<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetstats/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knetstats<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetstats/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,400: | Line 1,460: | ||
== knights == |
== knights == |
||
+ | * Use common CMake tests. |
||
* Change MatchOver sound to notify.wav, because matchover.wav not exists. |
* Change MatchOver sound to notify.wav, because matchover.wav not exists. |
||
* Remove tarballs for themes from source code. |
* Remove tarballs for themes from source code. |
||
Line 1,423: | Line 1,484: | ||
== knmap == |
== knmap == |
||
+ | * Use common CMake tests. |
||
* Update translation template. |
* Update translation template. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
Line 1,434: | Line 1,496: | ||
== knowit == |
== knowit == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knowit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knowit/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knowit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knowit/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,447: | Line 1,510: | ||
== knutclient == |
== knutclient == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knutclient<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knutclient/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knutclient<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knutclient/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,528: | Line 1,592: | ||
== konversation == |
== konversation == |
||
+ | * Merge translation files from master branch. |
||
+ | * Update translation template. |
||
+ | * Add netinet/in.h include.<br/>This resolves FTBFS on FreeBSD. |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/konversation<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/konversation/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/konversation<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/konversation/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,542: | Line 1,610: | ||
== kpicosim == |
== kpicosim == |
||
+ | * Use common CMake tests. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
* cmake: Fix FTBS if no translations are available |
* cmake: Fix FTBS if no translations are available |
||
Line 1,549: | Line 1,618: | ||
== kpilot == |
== kpilot == |
||
+ | * Use common CMake tests. |
||
* Add KDE_EXPORT on PluginUtility namespace.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kpilot/issues/1 #1] |
* Add KDE_EXPORT on PluginUtility namespace.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kpilot/issues/1 #1] |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kpilot<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpilot/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kpilot<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpilot/ |
||
Line 1,561: | Line 1,631: | ||
== kpowersave == |
== kpowersave == |
||
+ | * Use common CMake tests. |
||
* Merge translation files from master branch. |
* Merge translation files from master branch. |
||
* Update translation template. |
* Update translation template. |
||
Line 1,581: | Line 1,652: | ||
== krename == |
== krename == |
||
+ | * Use mode_t in chmod instead of unsigned int.<br/>This resolves FTBFS on FreeBSD. |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krename<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krename/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krename<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krename/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,605: | Line 1,678: | ||
== kscope == |
== kscope == |
||
+ | * Fix automake build dependencies. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kscope<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kscope/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kscope<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kscope/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,611: | Line 1,685: | ||
== ksensors == |
== ksensors == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ksensors<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksensors/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ksensors<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksensors/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,640: | Line 1,715: | ||
== ksplash-engine-moodin == |
== ksplash-engine-moodin == |
||
+ | * Use common CMake tests. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
* cmake: Delete src/themes/Architecture<br/>because this is not part of the r14.0.x branch. |
* cmake: Delete src/themes/Architecture<br/>because this is not part of the r14.0.x branch. |
||
Line 1,701: | Line 1,777: | ||
== kvkbd == |
== kvkbd == |
||
+ | * Use common CMake tests. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
||
Line 1,709: | Line 1,786: | ||
== kvpnc == |
== kvpnc == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvpnc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvpnc/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvpnc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvpnc/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,721: | Line 1,799: | ||
== mplayerthumbs == |
== mplayerthumbs == |
||
+ | * conversion to the cmake building system |
||
* Add CMakeL10n rules.<br/>Create translation template. |
* Add CMakeL10n rules.<br/>Create translation template. |
||
Line 1,731: | Line 1,810: | ||
== potracegui == |
== potracegui == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate. |
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate. |
||
* Update translation template. |
* Update translation template. |
||
Line 1,739: | Line 1,819: | ||
== rosegarden == |
== rosegarden == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/rosegarden<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/rosegarden/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/rosegarden<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/rosegarden/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,770: | Line 1,851: | ||
== tde-style-qtcurve == |
== tde-style-qtcurve == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tde-style-qtcurve<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tde-style-qtcurve/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tde-style-qtcurve<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tde-style-qtcurve/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,782: | Line 1,864: | ||
== tdeio-apt == |
== tdeio-apt == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdeio-apt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-apt/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdeio-apt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-apt/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,792: | Line 1,875: | ||
== tdeio-ftps == |
== tdeio-ftps == |
||
+ | * Use common CMake tests. |
||
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
Line 1,800: | Line 1,884: | ||
== tdeio-locate == |
== tdeio-locate == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdeio-locate<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-locate/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdeio-locate<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-locate/ |
||
* Add CMakeL10n rules.<br/>Update translation template. |
* Add CMakeL10n rules.<br/>Update translation template. |
||
Line 1,806: | Line 1,891: | ||
== tdeio-sword == |
== tdeio-sword == |
||
+ | * Use common CMake tests. |
||
* Update translation template. |
* Update translation template. |
||
* Fix FTBFS with older GCC. |
* Fix FTBFS with older GCC. |
||
Line 1,814: | Line 1,900: | ||
== tdeio-umountwrapper == |
== tdeio-umountwrapper == |
||
+ | * Use common CMake tests. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
||
Line 1,819: | Line 1,906: | ||
== tdenetworkmanager == |
== tdenetworkmanager == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdenetworkmanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdenetworkmanager/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdenetworkmanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdenetworkmanager/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,829: | Line 1,917: | ||
== tdepowersave == |
== tdepowersave == |
||
+ | * Use common CMake tests. |
||
* Merge translation files from master branch. |
* Merge translation files from master branch. |
||
* Update translation template. |
* Update translation template. |
||
Line 1,867: | Line 1,956: | ||
== tdesudo == |
== tdesudo == |
||
+ | * Use common CMake tests. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate. |
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate. |
||
Line 1,874: | Line 1,964: | ||
== tdesvn == |
== tdesvn == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdesvn<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdesvn/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdesvn<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdesvn/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,883: | Line 1,974: | ||
== tdmtheme == |
== tdmtheme == |
||
+ | * Use common CMake tests. |
||
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs |
||
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
* Add CMakeL10n rules.<br/>Create translation template.<br/>Add CMake rules to build translations. |
||
Line 1,890: | Line 1,982: | ||
== tellico == |
== tellico == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tellico<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tellico/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tellico<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tellico/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,903: | Line 1,996: | ||
== wlassistant == |
== wlassistant == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/wlassistant<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/wlassistant/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/wlassistant<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/wlassistant/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,911: | Line 2,005: | ||
== yakuake == |
== yakuake == |
||
+ | * Use common CMake tests. |
||
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/yakuake<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/yakuake/ |
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/yakuake<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/yakuake/ |
||
* Update translation template. |
* Update translation template. |
||
Line 1,921: | Line 2,016: | ||
* Those directories aren't needed to build yakuake. |
* Those directories aren't needed to build yakuake. |
||
* cmake conversion |
* cmake conversion |
||
+ | |||
+ | = packaging = |
||
+ | == packaging == |
||
+ | * DEB kvpnc: Prefer the default libgcrypt-dev instead of the specific version.<br/>This solves the conflict between packages on Ubuntu 14.04 (Trusty). |
||
+ | * RPM: update build scripts for pclinuxos |
||
+ | * RPM: update build scripts for R14.0.6 |
||
+ | * RPM: update build scripts for TDE R14.0.6 |
||
+ | * FreeBSD: Update for final release R14.0.6<br/>Add ports for bunch of applications. |
||
+ | * DEB trinity-slax: Create an initial kpersonalizerrc. |
||
+ | * DEB tdebindings: Enable build with Java on ppc64el. |
||
+ | * RPM: fix dependencies on newly cmake built packages |
||
+ | * RPM: fix dependencies in Makefile |
||
+ | * RPM: fix gcc visibility in TQT3 |
||
+ | * RPM: switch many packages to cmake |
||
+ | * DEB mplayerthumbs: Switch to cmake. |
||
+ | * DEB kbarcode: Switch to cmake.<br/>The man page has been moved to the main tree. |
||
+ | * Add sudo to dependencies for LDAP bonding / controller packages |
||
+ | * Fix missing SASL recommendations in LDAP client control modules on Debian and Ubuntu |
||
+ | * DEB katapult: Switch to cmake.<br/>The man page has been moved to the main tree. |
||
+ | * DEB dolphin: The man page has been moved to the main tree.<br/>Modify the rules into line with the usual. |
||
+ | * DEB kbibtex: Switch to cmake. |
||
+ | * DEB libtdeldap: Switch to cmake.<br/>Switch to common TDE cdbs rules. |
||
+ | * DEB dbus-1-tqt: Add usual cmake options. |
||
+ | * DEB kshutdown: Switch to cmake.<br/>The man page has been moved to the main tree. |
||
+ | * Add Ubuntu Cosmic symlink to packaging |
||
+ | * DEB avahi-tqt: Add CMake option WITH_ALL_OPTIONS. |
||
+ | * Rename qt_untranslated.ts to template.ts<br/>to make it clear for what purpose this file is intended. |
||
+ | * DEB kbookreader: Switch to cmake. |
||
+ | * DEB tdeio-sword: Switch to cmake. |
||
+ | * DEB kcmldap: Switch to cmake.<br/>Switch to common TDE cdbs rules. |
||
+ | * DEB knights: Switch to cmake.<br/>Switch to common TDE cdbs rules.<br/>The man page has been moved to the main tree. |
||
+ | * DEB defaultsettings: Rename kdelogo => tdelogo in tdmdistrc configuration file. |
||
+ | * DEB tdebase: Rename kdelogo => tdelogo in the tdm configuration during tdm upgrade. |
||
+ | * DEB kpilot: Switch to cmake. |
||
+ | * RPM: fix kxmleditor, qalculate-tde, tde-style-baghira, tqscintilla on r14.0.x |
||
+ | * RPM: update docker scripts |
||
+ | * RPM: update trinity-filesystem build |
||
+ | * RPM: update build scripts |
||
+ | * RPM: fix tdenetworkmanager build |
||
+ | * RPM: switch kplayer to cmake |
||
+ | * RPM: switch kpicosim to cmake |
||
+ | * RPM: update knowit build |
||
+ | * RPM: switch gwenview-i18n to cmake |
||
+ | * RPM: fix dolphin build |
||
+ | * DEB tdeio-apt: Switch to cmake.<br/>Removed Ubuntu specific kdedeg_logo. |
||
+ | * DEB gwenview-i18n: Switch to cmake. |
||
+ | * DEB desktop-effects-tde: Install TQt/TDE version instead of Qt4/KDE4. |
||
+ | * DEB potracegui: Switch to cmake.<br/>The man page has been moved to the main tree. |
||
+ | * RPM: update build script |
||
+ | * DEB kvpnc: Switch to cmake.<br/>The man page has been moved to the main tree. |
||
+ | * DEB kcpuload: Adjust after changing the directory structure of the application. |
||
+ | * DEB kpicosim: Switch to cmake.<br/>Switch to common TDE cdbs rules.<br/>The man page has been moved to the main tree. |
||
+ | * DEB knowit: Switch to cmake.<br/>Switch to common TDE cdbs rules.<br/>The man page has been moved to the main tree. |
||
+ | * RPM: update build scripts |
||
+ | * RPM: fix krename build with cmake |
||
+ | * RPM: remove obsolete spec file |
||
+ | * RPM: update docker build script for opensuse tumbleweed |
||
+ | * RPM: update build scripts |
||
+ | * RPM: update tdepim icons |
||
+ | * RPM: fix abakus build |
||
+ | * RPM: add new icons to tdepim |
||
+ | * RPM: add libattr-devel dependency to tdelibs-devel |
||
+ | * RPM: remove obsolete icon in tdeutils |
||
+ | * RPM: fix tdebase build on opensuse tumbleweed |
||
+ | * RPM: add manpage to knetstats |
||
+ | * RPM: fix tdetoys build on opensuse tumbleweed, add manpages |
||
+ | * RPM: add docker build script for Fedora 29 |
||
+ | * RPM: do not build kmrml in tdegraphics |
||
+ | * RPM: add 'tar' package to el6 docker image |
||
+ | * RPM: rename libqt3-jni package to libtqt3-jni |
||
+ | * RPM: remove obsolete patches |
||
+ | * RPM: update build scripts |
||
+ | * RPM: update packages for Fedora 29 |
||
+ | * RPM: add libattr dependency to tdebase |
||
+ | * RPM: fix tdeadmin build after removing toggle_log.png |
||
+ | * RPM: fix tdebase after renaming kdelogo => tdelogo |
||
+ | * RPM: fix tdebase build on Fedora 29 |
||
+ | * RPM: fix build on Fedora 29 |
||
+ | * DEB tdelibs: Add ksysv-trinity (<< 4:14.0.6~) to Conflicts<br/>for tdelibs-data-trinity to ensure smooth upgrade. |
||
+ | * DEB tdetoys: The man pages has been moved to the main tree. |
||
+ | * RPM: merge redhat directory with master branch |
||
+ | * DEB tdeadmin: Remove icon crystalsvg/16x16/actions/toggle_log.png from ksysv.<br/>The icon will be part of the tdelibs. |
||
+ | * DEB: fixed logrotate of tdm.log. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=894 #894] |
||
+ | * DEB: added missing applications icons for Kleopatra. Icons have been<br/>taken from GnuPG/KDE version of Kleopatra, which is available under GPL<br/>version >= 2. |
||
+ | * DEB tdepim: Add pinentry icon for Kleopatra's GpgME backend. |
||
+ | * DEB: add missing icons for Kleopatra's GpgME backends. |
||
+ | * DEB tdebase: Add kdf-trinity (<< 4:14.0.6~) to Conflicts<br/>for tdebase-data-trinity to ensure smooth upgrade. |
||
+ | * DEB: fix installation conflict between kdf and tdebase-data caused by commit 34ac65a3c2. |
||
+ | * DEB tdebase: Simplify lists for installing icons.<br/>This solves the installation of new icons from PR TDE/tdebase#18. |
||
+ | * DEB: removed no longer necessary dependency on gettext. |
||
+ | * DEB: Removed an unused debian/cdbs/buildvars.mk file. |
||
+ | * DEB: Remove a mechanism for updating the uploaders list. |
||
+ | * DEB: Remove the translation templates update during building. |
||
+ | * DEB: renamed kdelogo pics to tdelogo pics. This related to PR tdebase#12 |
||
+ | * DEB tdmtheme: Switch to cmake. |
||
+ | * DEB kdirstat: Switch to cmake.<br/>The man page has been moved to the main tree. |
||
+ | * DEB ksplash-engine-moodin: Switch to cmake.<br/>Switch to common TDE cdbs rules. |
||
+ | * DEB kkbswitch: Switch to cmake.<br/>Keyboard layout for xkb is split into a separate package. |
||
+ | * DEB krename: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB knetstats: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB knmap: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB kbiff: Switch to cmake |
||
+ | * DEB knutclient: Switch to cmake<br/>Switch to common TDE cdbs rules<br/>The man page has been moved to the main tree |
||
+ | * DEB ksensors: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB: tdebindings - fixed conflict in debug symbols packages related to libksjembed1 and libkjsembed-dev packages. |
||
+ | * DEB tdesudo: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB kvkbd: Switch to cmake |
||
+ | * DEB klcddimmer: Switch to cmake |
||
+ | * DEB kcmautostart: Switch to cmake<br/>Switch to common TDE cdbs rules |
||
+ | * DEB kiosktool: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB tqca-tls: Remove unnecessary dirs from the package |
||
+ | * DEB tdeio-umountwrapper: Switch to cmake |
||
+ | * DEB tdeio-ftps: Switch to cmake |
||
+ | * DEB tqtinterface: Cleanup unused cmake build options |
||
+ | * DEB: added tdebindings-trinity and tdebindings-trinity-dev metapackages. |
||
+ | * DEB yakuake: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB knetload: Switch to cmake<br/>The man page has been moved to the main tree |
||
+ | * DEB tdeadmin: Switch to cmake |
||
+ | * DEB kcpuload: The man page has been moved to the main tree<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=1043 #1043] |
||
+ | * DEB: KMail: moved procmail from Recommend to Suggests.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2104 #2104] |
||
+ | * DEB: removed unused dependency on libopensync for KPilot. |
||
+ | * DEB kcpuload: switch to cmake<br/>Switch packaging rules to cdbs |
||
+ | * DEB: Fixed recommended and suggested packages for soundkonverter. This<br/>resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=711 #711] |
||
+ | * Removed extension from icon name in desktop file. This resolves bug<br/>2424. |
||
+ | * Removed unusued mlt and mlt++ libraries. |
Latest revision as of 12:16, 30 March 2019
common
admin
- Drop definition of deprecated substitution type ksize_t.
This avoids FTBFS on FreeBSD 12. - Remove unwanted -i option for perl.
This resolves bug #2984 - Fix misplaced 'fi'
- Removed unnecessary executable flag from Doxyfile.global.
cmake
- Fix installation of base soname for libraries with release number in the name.
This resolves regression from prior commit. - Add a function that determines the filename of the library
for the target. This replaces get_target_property( LOCATION )
that is deprecated due to CMP0026. - Update tde_setup_gcc_visibility macro
+ In the test include kdemacros.h with detected full path to avoid FTBFS.
+ Do not test gcc visibility on TDE unless the current module uses TDE.
+ Do not test gcc visibility on TQt unless the current module uses TQt.
+ Improve test for gcc visibility on TQt to make it more accurate. - Update tde_setup_dbus macro
+ Old versions of dbus do not include a definition for system_bus_services_dir.
+ The value for system_bus_services_dir is derived from session_bus_services_dir. - Add tde_setup_dbus macro.
This resolves issue #20 - Add tde_setup_largefiles macro.
The macro sets the necessary definitions so that the default libc
filesystem interface will be for large files on all architectures. - Use tde_setup_msgfmt in tde_create_translation if needed.
- Add tde_setup_msgfmt macro.
- Add tde_setup_gcc_visibility macro.
For the GCC visibility setting, a test is performed
whether the system is UNIX-type and also whether TQt
and tdelibs are built with GCC visibility support. - Update TDEL10n module
+ Use IS_ABSOLUTE ${file} instead of ${file} MATCHES "^/". - Update tde_create_tarball macro
+ Use external tar for ensure files owner in tarball.
+ Add an option to specify compression program. - Fix tde_create_tarball macro
+ The destination path for the installation was not properly used.
+ Dependency on source files was wrong when SOURCEDIR was used. - Update TDEL10n module
+ Add ability to skip the contents of selected <property> tags.
+ Fixed incorrect processing of the unpaired tags. - Add tde_create_tarball macro.
- Update TDEL10n module
+ Add ability to specify a template with strings that should not be extracted.
+ Fixed detection of required programs. - Update TDEL10n module
+ Added ability to extract strings from documentation. - Update TDEL10n module
+ Use excludes also on files for extracting attributes.
+ Add ability to extract multiple attributes for one source_spec.
+ Add function to prepare attributes from XML files for xgettext.
+ Use tde_l10n_prepare_xmlattr function instead of extractattr script.
+ Handle working files for multiple extractions from the same source file. - Update TDEL10n module
+ Add option to determine comments to extract. - Update TDEL10n module
+ Add a way to disable default keywords. - Update TDEL10n module
+ Fix unwanted double processing of resource files. - Update TDEL10n module
+ Implement tde_l10n_preparetips using the tde_l10n_prepare_xml function. - Update TDEL10n module
+ Use tde_l10n_prepare_xml function instead of extractrc script. - Update TDEL10n module
+ Fix tde_l10n_prepare_xml when processing a line
that contains only word "no". - Update TDEL10n module
+ Add new options to function tde_l10n_prepare_xml
-- override the context by using the tag attribute
-- preserve / remove leading empty lines - Update TDEL10n module
+ Added function to prepare XML files for xgettext. - Update TDEL10n module
+ Fix unwanted semicolons processing within CMake
on extracted resources and attributes. - Update TDEL10n module
+ Fix unwanted semicolons processing within CMake. - Update TDEL10n module
+ Added ability to merge additional template. - Update TDEL10n module
+ CMP0007 setting is no longer needed. - Update TDEL10n module
+ Allow missed keyword CATALOG, if the catalog name is the first argument. - Update TDEL10n module
+ Added options for determining the destination directory. - Update TDEL10n module
+ Little modification in code formatting.
+ Added comment about editing the list inside foreach. - Update TDEL10n module
+ Use file( READ ) during updating references for resources
because file( STRINGS ) has problems with special characters. - Update TDEL10n module
+ Changed the concept of naming functions and macros.
+ Now all the functions and macros begin with "tde_l10n_". - Update TDEL10n module
+ Added automatic handling of the "_translatorinfo" file. - Update TDEL10n module
+ Added the ability to process tips files. - Update TDEL10n module
+ Input files with the extension ".tde_l10n" are considered
as temporary modified source files.
+ Location information for such files in generated POT file
will be modified to refer to the corresponding original
files without the extension ".tde_l10n".
+ After the POT file is generated, these temporary modified
source files will be automatically deleted. - Update TDEL10n module
+ Added option to exclude files from processing. - Update TDEL10n module
+ Added the ability to extract strings using extractattr.
+ Added a description of using the tde_create_l10n_template macro. - Fix small typing errors in the tde_create_translation macro.
- Use POSITION_INDEPENDENT_CODE property for CMake >= 2.8.9.
This resolves bug #2985 - Add TDEL10n module
dependencies
qt3
- bmp image: check for out of range image size.
Make the decoder fail early to avoid spending time and memory on
attempting to decode a corrupt image file.
Based on Qt5 patch for CVE-2018-19873. - Check for QImage allocation failure in qasyncimageio.
Since image files easily can be (or corrupt files claim to be) huge,
it is worth checking for out of memory situations.
Based on Qt5 patch for CVE-2018-19870. - Add the definition _WANT_SEMUN to ensure the definition of the semun structure.
This resolves bug #2991
Thanks to Nikolaus Klepp for initial patch. - Make use of QString::utf8() and QString::local8Bit() safe for conversion to char*.
- Enable gcc visibility support for *BSD builds.
- Rename qt_untranslated.ts to template.ts
to make it clear for what purpose this file is intended. - Improved class name used in previous commit. Suggestion comes from Slavek :-)
- Fixed FTBFS caused by name conflict with new postgres server dev 11
package. - Repair damaged UTF-8 characters in TS files
Arabic translations taken from arabeyes-i18n - Removed unnecessary executable flag. This relates to bug #2153
- Fix FTBFS with stricter C++11
tqt3
- bmp image: check for out of range image size.
Make the decoder fail early to avoid spending time and memory on
attempting to decode a corrupt image file.
Based on Qt5 patch for CVE-2018-19873. - Check for TQImage allocation failure in qasyncimageio.
Since image files easily can be (or corrupt files claim to be) huge,
it is worth checking for out of memory situations.
Based on Qt5 patch for CVE-2018-19870. - Add the definition _WANT_SEMUN to ensure the definition of the semun structure.
This resolves bug #2991
Thanks to Nikolaus Klepp for initial patch. - Make use of TQString::utf8() and TQString::local8Bit() safe for conversion to char*.
- Enable gcc visibility support for *BSD builds.
- Rename qt_untranslated.ts to template.ts
to make it clear for what purpose this file is intended. - Improved class name used in previous commit. Suggestion comes from
Slavek :-) - Fixed FTBFS caused by name conflict with new postgres server dev 11 package.
- Repair damaged UTF-8 characters in TS files
Arabic translations taken from arabeyes-i18n - Removed unnecessary executable flag. This relates to bug #2153
- Fix FTBFS with stricter C++11
tqtinterface
- Prevent to use GNU sed extension feature
It is GNU sed extension feature to use "\n" in insert string,
so it should be replaced with portable way.
This resolves bug #2986 - cmake: Add BUILD_ALL and WITH_ALL_OPTIONS for consistency with other modules
Added warning for building TQt interface based on Qt4
akode
- Add missing AKODE_EXPORT on exported functions.
- Update CMake rules
+ Add WITH_GCC_VISIBILITY option
+ Use common tde_setup_gcc_visibility
+ Add TestBigEndian and tde_setup_largefiles
arts
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Fix FTBFS with stricter C++11
avahi-tqt
- Update CMake rules
+ Add WITH_GCC_VISIBILITY option
+ Use common tde_setup_gcc_visibility
+ Add TestBigEndian and tde_setup_largefiles
dbus-1-tqt
- Add missing TQDBUS_EXPORT.
- Update CMake rules
+ Add WITH_GCC_VISIBILITY option
+ Use common tde_setup_gcc_visibility
+ Add TestBigEndian and tde_setup_largefiles - add a function to handle maps of objectpaths
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
dbus-tqt
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Fix inadvertly renamed QT_THREAD_SUPPORT
sip4-tqt
- Removed unnecessary executable flag. This relates to bug #2153
tqscintilla
- Removed unnecessary executable flag. This relates to bug #2153
tqca
- Fixed incorrect TTQ rename (TTQ -> TQ)
tqca-tls
- Fix portability for expr(1) usage
"match" operand for expr(1) is GNU extension.
Change to use the standard way to match regex with expr(1).
main
tdelibs
- Fix CMake build dependencies for tests.
- Removed "DEVELOPMENT" from TDE version in preparation for R14.0.6 release.
- Update Kate syntax highlight files from
http://kate-editor.org/syntax/2.5/ sources. - tdehwlib: Fix the flag setting whether the storage device contains the file system.
This resolves bug #2232, bug #2607 and bug #2946 - Use system libdir when searching for dynamically loaded libraries.
This prevents finding an incorrect architecture on multi-arch systems. - Fixed support for logind power state calls.
This resolves bug #2661 and bug #2975 - Fix SSL initialization for OpenSSL >= 1.1.
- Fix openssl >= 1.1 detection without pkg-config file.
- Use a common test for dbus detection and paths configuration.
- Use common test for large files support.
Drop hardcoded definition -D_LARGEFILE64_SOURCE=1. - Use common GCC visibility test.
- Fix if-else syntax for the case missing OSS support
- Change to always build and install KACL
It is used by others even if missing POSIX ACL support. - Add some missing supplement macros for MIDI support
They are used but not defined for missing OSS support. - Change to define __STDC_LIMIT_MACROS first
<stdint.h> (or other system headers handling the macro) may be included
indirectly from other header files (<sys/types.h> is a reasonable one). - Convert GETMNTINFO_USES_STATVFS check to CMake
Fix to build on such platforms, it is used but not checked with CMake. - Update CMakeL10n rules
+ Add rule to update template with common texts - tde.pot.
+ Add the X-POT option to ensure that the common texts are part of tdelibs.pot. - Fixed access to TDE wallets created before R14.0.6 that uses special
non-ascii characters in their password. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
- Rename translation context QXml => TQXml
to match the translation context in TQt3. - Deleted blank line at the beginning of the file.
This prevented proper processing by extractrc. - Small adjustments in Kate syntax highlighting files.
+ Modify the line break in <language> tag in cpp.xml.
+ Remove UTF8 BOM from ppd.xml.
+ It allows processing by extractattr. - add some missing icons, these have been converted/resized from the highest resolution available
- KPasswordEdit: Add a password conversion to local8Bit()
using setCodecForCStrings. This resolves bug #2961 - fix issue #3 utempter detection
- Conversion exitkde -> exittde in knotify.evertsrc file. This relates to
bug #2283 - Fixed potential FTBFS in htmlattrs.c. This relates to bug #2850
The FTBFS seems to happen only for some users, so this fix should help
in such cases. - Removed unnecessary executable flag. This relates to bug #2153
- Improved description of "what's this" for placeholder in Find and
Replace dialog. This relates to bug #2558 - Fix FTBFS with stricter C++11
- Updated version number to R14.0.6 [DEVELOPMENT].
- related to bug #2674, *-device-input-keyboard.png was missing in
theme crystalsvg for icons.
tdebase
- tdm: Do not run tdekbdledsync on remote displays.
This relates to bug #1834 - Fix openssl >= 1.1 detection without pkg-config file.
- Port TIME_WITH_SYS_TIME to CMake.
This resolves FTBFS from commit 05dc8500dd. - Add $DISPLAY to kdesktop_lock_lockfile file name.
This resolves bug #2998
Thanks to Russell Brown for analyzing the problem and propose a solution. - Ensure include of sys/stat.h
It is required for mkdir(2), chmod(2) and mkfifo(2). - Port HAVE_SYS_TIME_H to CMake
It is used, but not checked with CMake. - resolve ambiguous log() overload
log() may accept `float` or `double` for C++, so passing `int` is ambiguous.
Change to exactly pass valiables as `double` to log(), it is expected here. - Use common test for large files support.
Drop hardcoded definition -D_LARGEFILE64_SOURCE. - Use common GCC visibility test.
- Fix FTBFS when build -DWITH_XRANDR=OFF
- fix bug #2996, thanks to Alexander Golubev for the bug report and the suggestion to solve It
- Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Update TIMEZONES list. - Fixed size used by TDE Control Center -> TDE Components. This relates to
bug #1023 - Fixed mistake in commit b3f07ed6c2, where the wrong icon (kwikdisk) was used for kcmdf (diskfree).
- add icons for control center modules, this relates to bug #1023
- rename kdelogo.xpm to tdelogo.png
- rename kdelogo into tdelogo
- this relates to bug #2618
- Conversion startkde -> starttde, exitkde -> exittde in r14-xdg-upd file and related usage in code. This resolves bug #2282 and 2283.
- fix issue #10
- Add includes to UI files to resolve FTBFS.
Partially cherry-picked from 661ed658. - kdesktop lockprocess: Removed unnecessary include linux/stat.h
This resolves FTBFS with glibc 2.28 - Removed unnecessary executable flag. This relates to bug #2153
- New patch for bug #2852 Should fix previous commit.
- Fixed order building in tdm. This resolves bug #2852
- Removed hard-coded reference to /opt/trinity. This resolves bug #680
- Some missing desktop icons in tdebase
kdcop not part of TDE menu in R14.0.x, so excluded from this commit. - tdeioslave nfs: Add support for libtirpc
as a replacement for deprecated SunRPC from glibc >= 2.26
This resolves bug #2962 - Fixed typedef-related warnings from compiler.
- Added missing ; at the end of japanese lines. This relates to bug #2952
- Improved description of "what's this" for placeholder in Find and
Replace dialog. This resolves to bug #2558 - Fix FTBFS with stricter C++11
- Fixed corrupted japanese translations. This relates to bug #2952
tdepim
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
- Use TQString for debugging output with unicode strings
- Add unicode string support to the ktnef parser library
- Update About Info for kmail, kontact and korganizer, this relates to bug #2401
- Added missing applications icons for Kleopatra.
Icons have been taken from GnuPG/KDE version of Kleopatra, which is
available under GPL version >= 2. - Add missing icons for Kleopatra's GpgME backends.
- korganizer: fixed SEGFAULT when deleting recurring TODOs.
This resolves bug #2335 and 2682. - Add includes to UI files to resolve FTBFS
- Fix inadvertly renamed QT_THREAD_SUPPORT
- Removed unnecessary executable flag. This relates to bug #2153
- Fix FTBFS with stricter C++11
- Fixed corrupted japanese translations. This relates to bug #2952
tdemultimedia
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
- Fixed incorrect TTQ rename (TTQ -> TQ)
- Replace deprecated ustat using fstatfs
This resolves FTBFS with glibc 2.28 - Add includes to UI files to resolve FTBFS
- Fix FTBFS with stricter C++11
tdenetwork
- LibVNCClient: don't leak uninitialised memory to remote
The pad fields of the rfbClientCutTextMsg and rfbKeyEventMsg could contain arbitray memory belonging to the process,
don't leak this to the remote.
Closes #252 - LibVNCClient: fix possible infinite loop
Closes #251 - Limit client cut text length to 1 MB
This patch constrains a client cut text length to 1 MB. Otherwise
a client could make server allocate 2 GB of memory and that seems to
be to much to classify it as a denial of service.
The limit also prevents from an integer overflow followed by copying
an uninitilized memory when processing msg.cct.length value larger
than SIZE_MAX or INT_MAX - sz_rfbClientCutTextMsg.
This patch also corrects accepting length value of zero (malloc(0) is
interpreted on differnet systems differently).
CVE-2018-7225
<https://github.com/LibVNC/libvncserver/issues/218> - Use socklen_t directly, instead of deprecated ksize_t.
This resolves FTBFS on FreeBSD 12. - Fix potential memory leak.
- Avoid divide-by-zero in raw encoding (OSX RealVNC)
OS X RealVNC server crashes out Remmina because the server can provoke
bytesPerLine to be zero. Assume this is coding for zero lines.
The condition could be checked before the calculation of bytesPerLine.
I don’t understand the preconditions of this code to say one way or the
other. - Use common CMake tests.
- Fix empty translation.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- change EXEC_PROCESS for EXECUTE_PROCESS, this solves issue #2
- Add includes to UI files to resolve FTBFS
- Removed unnecessary executable flag. This relates to bug #2153
- Fixed typedef-related warnings from compiler.
- Fix FTBFS with stricter C++11
tdegraphics
- Use common CMake tests.
- Add support for Poppler >= 0.72
GooString::getCString was renamed to GooString::c_str. - Fix empty translation.
- Add support for Poppler >= 0.71.
- Add CMakeL10n rules.
- Fix inadvertently renamed Orientation => Qt::Orientation.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Removed TQStringToGString, which is fundamentally wrong.
- Fixed konqueror crash related to pdf files. This resolves bug #2974
- Add includes to UI files to resolve FTBFS
- Fix inadvertly renamed QT_THREAD_SUPPORT
- Add support for Poppler >= 0.64
- Change the poppler test from 0.60 to 0.58
because the relevant code changes are related to 0.58 - Fix FTBFS with stricter C++11
- Fixed corrupted japanese translations. This relates to bug #2952
- Removed old strstream code and switch to sstream permanently.
Inspired by similar work on tdeadmin.
tdetoys
- Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- add man pages to amor, kodo, kteatime, ktux, kweather and kworldclock ; this remates to bug #1043
- Add includes to UI files to resolve FTBFS
tdeutils
- Use common CMake tests.
Drop hardcoded definition -D_LARGEFILE64_SOURCE. - CMakeL10n rules for tdefilereplace moved to tdewebdev.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- kcmdf icons are now part of tdebase. Removed from tdeutils to avoid
conflicts. - Add includes to UI files to resolve FTBFS
- Removed unnecessary executable flag. This relates to bug #2153
- KEdit: Removed unwanted flag setting that the file is not modified
This resolves issue #2 - Fix FTBFS with stricter C++11
tdeedu
- Add CMakeL10n rules.
- Fix inadvertly renamed QT_THREAD_SUPPORT
- Fixed corrupted japanese translations. This relates to bug #2952
- Switched from strstream to sstream.
- Fix FTBFS with stricter C++11
- Fix automake build dependencies
tdegames
- Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
- Fixed typedef-related warnings from compiler.
- Fix FTBFS with stricter C++11
- Fixed corrupted japanese translations. This relates to bug #2952
tdeaccessibility
- change large file support to more portable
It is not portable to use lseek64/off64_t directly.
Change to set large file support macro and use usual names. - Add CMakeL10n rules.
- Removed unnecessary executable flag. This relates to bug #2153
tdeaddons
- Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
tdeadmin
- Use common CMake tests.
- KDat: Add CMake test if the mtget contains mt_gstat.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
- Remove icon crystalsvg/16x16/actions/toggle_log.png from ksysv.
The icon will be part of the tdelibs. - Add includes to UI files to resolve FTBFS
- delete BUILD_OK.txt file
- cmake: Cleanup unused definitions from config.h
Cleanup unnecessary tests from ConfigureChecks
Add missing tests to ConfigureChecks - cmake knetworkconf: Add backend files processing
- cmake: Add detection whether the system is big endian
- cmake: Add option for GCC hidden visibility
- cmake lilo-config: Always add the USE_KDE definition
There is no reason to build a TQt-only frontend in TDE
Fix the names of the auxiliary library targets
Fix includes folders - cmake kuser: Remove the ldap library linking
- update BUILD_OK with missing files that must be to processed
- add missing icons in kuser and kdat
- last attempt regarding lilo-config build
- add header def in config.h.cmake/ConfigureChecks.cmake
- add headers check to ConfigureChecks.cmake
- cosmetic in CMakeLists.txt
- fill in BUILG_OK.txt with latest build fail/pass
- kuser is building.
added DCOP-shared tdefx tdetexteditor tdentlm to the linker. - First bach of cmake files in order to convert tdeadmin
from autotools to cmake building system. - Fix FTBFS with stricter C++11
- Minor change to remove unnecessary strstream include.
- According to the doc, TDEIO::NetAccess::del should have two parameters
- the typedef specifier gets ignored in the declaration anyway.
- TDECmdLineArgs::init should be initialize with TDEAboutData
- Removed test for sstream because it is now used by default.
- remove strstream in ktview.cpp, strstream has been deprecated since C++98
tdeartwork
- Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Fixes bug #1020
- Add includes to UI files to resolve FTBFS
- Fix FTBFS with stricter C++11
tdebindings
- Fixed incorrect TTQ rename (TTQ -> TQ)
- Removed unnecessary executable flag. This relates to bug #2153
tdesdk
- Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
- Fixed typedef-related warnings from compiler.
tdevelop
- Add CMake check if the getline function is defined
instead of listing the systems and versions that need to be defined.
This resolves FTBFS on FreeBSD 12. - Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS
- Fix inadvertly renamed QT_THREAD_SUPPORT
- Removed unnecessary executable flag. This relates to bug #2153
- Fixed typedef-related warnings from compiler.
- Fix FTBFS with stricter C++11
tdewebdev
- Add CMakeL10n rules.
- Quanta: Remove tarballs for toolbars from source code.
- Quanta: Change Automake rules to make tarballs for toolbars created during building.
- Quanta: Change CMake rules to make tarballs for toolbars created during building.
- Quanta: Extract source files for toolbars contained in tarballs.
- CMakeL10n rules for tdefilreplace moved from tdeutils.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- rename kdelogo2.png icon to tdelogo2.png, this relates to bug #2618
- Add includes to UI files to resolve FTBFS
- Removed unnecessary executable flag. This relates to bug #2153
- Removed extension from icon name in desktop file. This relates to bug
2424. - Removed unnecessary defines for sstream.
tde-i18n
- Merge translation files from master branch.
- Update translation template.
- Merge translation files from master branch.
- Update translation template.
- Move tdefilereplace translation template from tdeutils to tdewebdev.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevtipofday
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevtipofday/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevelop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevelop/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevdesigner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevdesigner/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdewalletmanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdewalletmanager/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdefilereplace
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdefilereplace/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/superkaramba
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/superkaramba/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/ktimer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ktimer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/ksim
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ksim/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kregexpeditor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kregexpeditor/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/klaptopdaemon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/klaptopdaemon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kjots
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kjots/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/khexedit2part
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit2part/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/khexedit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kgpg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kgpg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kedit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kedit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kdf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kdf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmtdewallet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmtdewallet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmlirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmlirc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcharselectapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselectapplet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcharselect
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselect/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcalc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcalc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/ark
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ark/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kworldclock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kworldclock/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kweather
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kweather/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/ktux
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/ktux/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kteatime
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kteatime/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kodo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kodo/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kmoon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kmoon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/amor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/amor/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/umbrello
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/umbrello/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdeio_svn
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdeio_svn/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdefile_diff
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_diff/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdecachegrind
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdecachegrind/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/spy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/spy/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kuiviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kuiviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kompare
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kompare/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kbugbuster
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbugbuster/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kbabel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbabel/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/cervisia
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/cervisia/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/tdeio_sieve
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/tdeio_sieve/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/tdefile_palm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/tdefile_palm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/tdeabc_slox
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/tdeabc_slox/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/scalixadmin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/scalixadmin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/libtdepim
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libtdepim/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/libkpgp
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libkpgp/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/libkleopatra
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libkleopatra/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/libkcal
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libkcal/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kwatchgnupg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kwatchgnupg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/ktnef
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/ktnef/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kres_groupwise
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kres_groupwise/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/korn
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korn/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/korganizer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korganizer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kontact
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kontact/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/knotes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/knotes/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/knode
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/knode/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kmobile
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmobile/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kmail_text_calendar_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmail_text_calendar_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kmail
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmail/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kleopatra
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kleopatra/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kitchensync
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kitchensync/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kgantt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kgantt/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kdgantt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kdgantt/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kcmkontactnt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kcmkontactnt/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kcmkabconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kcmkabconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/karm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/karm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kandy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kandy/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kalarm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kalarm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/kaddressbook
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kaddressbook/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdepim/akregator
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/akregator/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/tdefileshare
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/tdefileshare/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kwifimanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kwifimanager/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/ksirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/ksirc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/krfb
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/krfb/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/krdc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/krdc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kppplogview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kppplogview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kppp
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kppp/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kpf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kpf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kopete
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kopete/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/knewsticker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/knewsticker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kget
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kget/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdenetwork/kdict
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kdict/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/tdemid
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/tdemid/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/tdeio_audiocd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/tdeio_audiocd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/noatun
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/noatun/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/libkcddb
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/libkcddb/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/kscd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kscd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/krec
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/krec/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/kmix
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kmix/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/kaudiocreator
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kaudiocreator/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/kaboodle
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kaboodle/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/juk
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/juk/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/audiocd_encoder_vorbis
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/audiocd_encoder_vorbis/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/audiocd_encoder_lame
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/audiocd_encoder_lame/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/artscontrol
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/artscontrol/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdemultimedia/artsbuilder
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/artsbuilder/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/timezones
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/timezones/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdetexteditor_isearch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_isearch/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdetexteditor_insertfile
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_insertfile/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdetexteditor_docwordcompletion
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_docwordcompletion/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdetexteditor_autobookmarker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_autobookmarker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdeprint
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdeprint/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdelibs
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdelibs/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/tdeio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdeio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/ppdtranslations
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/ppdtranslations/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/knotify
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/knotify/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/katepart
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/katepart/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdelibs/cupsdconf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/cupsdconf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/tdeiconedit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdeiconedit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/tdefile_png
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_png/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/tdefile_pdf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_pdf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/tdefile_jpeg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_jpeg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/tdefile_exr
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_exr/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/libkscan
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/libkscan/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kviewviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kviewshell
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewshell/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kviewscannerplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewscannerplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kviewpresenterplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewpresenterplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kviewbrowserplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewbrowserplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kuickshow
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kuickshow/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/ksvgplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/ksvgplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/ksnapshot
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/ksnapshot/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kpovmodeler
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kpovmodeler/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kpdf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kpdf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kooka
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kooka/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kolourpaint
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kolourpaint/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kmrml
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kmrml/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kghostview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kghostview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kfax
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kfax/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kdvi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kdvi/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kdjview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kdjview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kcoloredit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kcoloredit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kcmkamera
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kcmkamera/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kcm_kviewcanvasconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kcm_kviewcanvasconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/twin4
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/twin4/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/lskat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/lskat/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/libtdegames
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libtdegames/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/libksirtet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libksirtet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ktuberling
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktuberling/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ktron
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktron/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kspaceduel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kspaceduel/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksokoban
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksokoban/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksnake
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksnake/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksmiletris
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksmiletris/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kshisen
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kshisen/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksame
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksame/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kreversi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kreversi/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kpoker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpoker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kpat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpat/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/konquest
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/konquest/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kolf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kolf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/knetwalk
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/knetwalk/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kmines
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmines/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kmahjongg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmahjongg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/klines
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/klines/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kjumpingcube
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kjumpingcube/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kgoldrunner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kgoldrunner/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kenolaba
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kenolaba/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kbounce
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbounce/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kblackbox
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kblackbox/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kbattleship
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbattleship/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kbackgammon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbackgammon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/katomic
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/katomic/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/atlantik
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/atlantik/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/tdefile_kig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/tdefile_kig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/libtdeedu
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/libtdeedu/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kwordquiz
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kwordquiz/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kvoctrain
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kvoctrain/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kverbos
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kverbos/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kturtle
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kturtle/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/ktouch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/ktouch/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kstars
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kstars/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kpercentage
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kpercentage/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kmplot
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kmplot/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/klettres
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klettres/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/klatin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klatin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kiten
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kiten/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/khangman
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/khangman/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kgeography
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kgeography/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/keduca
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/keduca/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kbruch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kbruch/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kanagram
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kanagram/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kalzium
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kalzium/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/blinken
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/blinken/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/twin_lib
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin_lib/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/twin_clients
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin_clients/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/twin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdmgreet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdmgreet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdmconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdmconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tderandr
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tderandr/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdeprintfax
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeprintfax/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdeio_print
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_print/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdeio_media
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_media/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdeio_man
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_man/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdehtmlkttsd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdehtmlkttsd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdefontinst
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdefontinst/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdedebugdialog
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdedebugdialog/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/quicklauncher
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/quicklauncher/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/privacy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/privacy/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/nsplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/nsplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/naughtyapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/naughtyapplet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/libtaskmanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/libtaskmanager/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kxkb
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kxkb/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kthememanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kthememanager/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/ksystraycmd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksystraycmd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/ksysguard
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksysguard/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/ksplashthemes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksplashthemes/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/ksmserver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksmserver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kpersonalizer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kpersonalizer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kpager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kpager/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/konsole
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/konsole/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/konqueror
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/konqueror/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kmenuedit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kmenuedit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/klipper
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/klipper/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kicker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kicker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/khotkeys
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/khotkeys/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/khelpcenter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/khelpcenter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kfindpart
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kfindpart/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kdialog
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdialog/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kdesktop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdesktop/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kdcop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdcop/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcontrol
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcontrol/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmxinerama
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmxinerama/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmtwinrules
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtwinrules/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmtwindecoration
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtwindecoration/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmtdeio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtdeio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmtdednssd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtdednssd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmtaskbar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtaskbar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmsmserver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmsmserver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmsmartcard
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmsmartcard/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmsamba
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmsamba/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmnic
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmnic/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmmedia
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmmedia/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmlayout
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmlayout/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkwm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkwm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkurifilt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkurifilt/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkonsole
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkonsole/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkonqhtml
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkonqhtml/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkonq
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkonq/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkicker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkicker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkeys
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkeys/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmkded
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkded/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcminput
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcminput/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcminfo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcminfo/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmicons
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmicons/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmiccconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmiccconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmhtmlsearch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmhtmlsearch/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmdisplayconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmdisplayconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmcss
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcss/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmcrypto
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcrypto/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmcomponentchooser
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcomponentchooser/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmcolors
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcolors/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmcgi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcgi/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmbackground
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmbackground/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmarts
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmarts/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmaccess
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmaccess/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kate
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kate/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kasbarextension
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kasbarextension/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kappfinder
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kappfinder/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kaccess
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kaccess/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/filetypes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/filetypes/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/twin_art_clients
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/twin_art_clients/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/tdepartsaver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/tdepartsaver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/kxsconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/kxsconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/klock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/klock/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/secpolicy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/secpolicy/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/kuser
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kuser/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/ksysv
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/ksysv/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/kpackage
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kpackage/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/knetworkconf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/knetworkconf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/kdat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kdat/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/kcron
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kcron/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeadmin/kcmlilo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kcmlilo/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - wakeup
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-wakeup/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - nexscope
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-nexscope/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - ffrs
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-ffrs/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - dub
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-dub/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - alsaplayerui
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-alsaplayerui/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/ksig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/ksig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - news
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-news/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - metabar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-metabar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - mediaplayer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-mediaplayer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - delicious
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-delicious/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - webarchiver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-webarchiver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - validators
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-validators/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - uachanger
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-uachanger/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - tdehtmlsettings
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-tdehtmlsettings/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - rellinks
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-rellinks/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - minitools
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-minitools/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - imgallery
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-imgallery/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - fsview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-fsview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - domtreeviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-domtreeviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - dirfilter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-dirfilter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - crashes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-crashes/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - babelfish
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-babelfish/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - autorefresh
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-autorefresh/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kicker - ktimemon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-ktimemon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - xmltools
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-xmltools/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - textfilter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-textfilter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - snippets
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-snippets/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - openheader
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-openheader/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - modeline
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-modeline/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - make
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-make/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - kjswrapper
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-kjswrapper/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - insertcommand
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-insertcommand/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - htmltools
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-htmltools/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - helloworld
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-helloworld/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - fll_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - fll_initplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_initplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - filetemplates
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-filetemplates/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - cppsymbolviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-cppsymbolviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kaddressbook - kworldclock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-kworldclock/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kaddressbook - gmx
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-gmx/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/atlantikdesigner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/atlantikdesigner/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kttsd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kttsd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/ksayit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/ksayit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kmouth
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmouth/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kmousetool
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmousetool/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kmag
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmag/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kbstateapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kbstateapplet/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/quanta
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/quanta/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/kxsldbg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kxsldbg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/kommander
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kommander/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/klinkstatus
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/klinkstatus/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/kimagemapeditor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kimagemapeditor/ - Add translation templates for tdewebdev.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevtipofday
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevtipofday/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevelop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevelop/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevdesigner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevdesigner/ - Add translation templates for tdevelop.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/umbrello
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/umbrello/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdeio_svn
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdeio_svn/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdefile_ts
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_ts/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdefile_po
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_po/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdefile_diff
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_diff/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdefile_cpp
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_cpp/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdecachegrind
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdecachegrind/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/spy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/spy/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kuiviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kuiviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kstartperf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kstartperf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kres_bugzilla
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kres_bugzilla/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kompare
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kompare/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kbugbuster
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbugbuster/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kbabel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbabel/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/cvsservice
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/cvsservice/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/cervisia
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/cervisia/ - Add translation templates for tdesdk.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/twin_art_clients
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/twin_art_clients/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/tdestyle_phase_config
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/tdestyle_phase_config/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/tdepartsaver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/tdepartsaver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/kxsconfig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/kxsconfig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/klock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/klock/ - Add translation templates for tdeartwork.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - txt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-txt/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - mhtml
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-mhtml/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - lnk
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-lnk/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - html
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-html/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - folder
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-folder/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - desktop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-desktop/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/tdefile - cert
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-cert/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/rename - image
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/rename-image/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/rename - audio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/rename-audio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - wavecapture
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-wavecapture/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - wakeup
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-wakeup/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - tyler
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-tyler/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - tippecanoe
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-tippecanoe/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - synaescope
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-synaescope/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - pitchablespeed
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-pitchablespeed/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - nexscope
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-nexscope/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - lyrics
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-lyrics/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - ffrs
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-ffrs/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - dub
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-dub/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - charlatanui
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-charlatanui/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/noatun - alsaplayerui
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-alsaplayerui/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/ksig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/ksig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - news
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-news/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - metabar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-metabar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - mediaplayer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-mediaplayer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konqsidebar - delicious
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-delicious/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - webarchiver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-webarchiver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - validators
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-validators/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - uachanger
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-uachanger/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - tdehtmlsettings
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-tdehtmlsettings/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - searchbar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-searchbar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - rellinks
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-rellinks/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - minitools
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-minitools/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - microformat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-microformat/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - kuick-kcm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-kuick-kcm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - kuick
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-kuick/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - imgallery
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-imgallery/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - fsview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-fsview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - domtreeviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-domtreeviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - dirfilter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-dirfilter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - crashes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-crashes/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - babelfish
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-babelfish/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - autorefresh
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-autorefresh/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - ark
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-ark/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/konq - akregator
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-akregator/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kicker - mediacontrol
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-mediacontrol/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kicker - ktimemon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-ktimemon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kicker - kolourpicker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-kolourpicker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kicker - kmathapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-kmathapplet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kicker - kbinaryclock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-kbinaryclock/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - xmltools
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-xmltools/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - xmlcheck
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-xmlcheck/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - textfilter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-textfilter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - tabbarextension
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-tabbarextension/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - snippets
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-snippets/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - pybrowse
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-pybrowse/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - openheader
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-openheader/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - modeline
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-modeline/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - make
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-make/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - kjswrapper
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-kjswrapper/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - insertcommand
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-insertcommand/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - htmltools
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-htmltools/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - helloworld
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-helloworld/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - fll_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - fll_initplugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_initplugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - filetemplates
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-filetemplates/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kate - cppsymbolviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-cppsymbolviewer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kaddressbook - kworldclock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-kworldclock/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/kaddressbook - gmx
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-gmx/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaddons/atlantikdesigner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/atlantikdesigner/ - Add translation templates for tdeaddons.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/libKTTSD
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/libkttsd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kttsd
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kttsd/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/ksayit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/ksayit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kmouth
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmouth/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kmousetool
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmousetool/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kmag
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmag/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeaccessibility/kbstateapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kbstateapplet/ - Add translation templates for tdeaccessibility.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/twin4
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/twin4/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/lskat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/lskat/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/libtdegames
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libtdegames/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/libksirtet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libksirtet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ktuberling
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktuberling/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ktron
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktron/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kspaceduel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kspaceduel/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksokoban
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksokoban/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksnake
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksnake/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksmiletris
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksmiletris/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksirtet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksirtet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kshisen
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kshisen/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/ksame
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksame/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kreversi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kreversi/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kpoker
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpoker/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kpat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpat/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/konquest
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/konquest/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kolf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kolf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/knetwalk
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/knetwalk/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kmines
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmines/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kmahjongg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmahjongg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/klines
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/klines/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/klickety
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/klickety/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kjumpingcube
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kjumpingcube/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kgoldrunner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kgoldrunner/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kfouleggs
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kfouleggs/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kenolaba
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kenolaba/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kbounce
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbounce/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kblackbox
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kblackbox/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kbattleship
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbattleship/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kbackgammon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbackgammon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/katomic
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/katomic/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/kasteroids
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kasteroids/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegames/atlantik
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/atlantik/ - Add translation templates for tdegames.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/tdefile_kig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/tdefile_kig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/tdefile_drgeo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/tdefile_drgeo/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/libtdeedu
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/libtdeedu/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kwordquiz
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kwordquiz/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kvoctrain
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kvoctrain/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kverbos
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kverbos/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kturtle
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kturtle/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/ktouch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/ktouch/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kstars
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kstars/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kpercentage
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kpercentage/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kmplot
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kmplot/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/klettres
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klettres/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/klatin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klatin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kiten
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kiten/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kig
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kig/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/khangman
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/khangman/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kgeography
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kgeography/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/keduca
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/keduca/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kbruch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kbruch/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kanagram
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kanagram/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/kalzium
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kalzium/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeedu/blinken
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/blinken/ - Add translation templates for tdeedu.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdewalletmanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdewalletmanager/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdessh
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdessh/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdelirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdelirc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdefilereplace
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdefilereplace/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/superkaramba
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/superkaramba/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/ktimer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ktimer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/ksim
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ksim/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kregexpeditor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kregexpeditor/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kmilod
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilod/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kmilo_thinkpad
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_thinkpad/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kmilo_powerbook
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_powerbook/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kmilo_kvaio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_kvaio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kmilo_generic
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_generic/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kmilo_delli8k
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_delli8k/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/klaptopdaemon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/klaptopdaemon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kjots
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kjots/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/khexedit2part
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit2part/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/khexedit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kgpg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kgpg/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kfloppy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kfloppy/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kedit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kedit/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kdf
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kdf/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmthinkpad
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmthinkpad/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmtdewallet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmtdewallet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmlirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmlirc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmlaptop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmlaptop/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcmkvaio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmkvaio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcharselectapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselectapplet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcharselect
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselect/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kcalc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcalc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/irkick
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/irkick/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/ark
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ark/ - Add translation templates for tdeutils.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kworldclock
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kworldclock/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kweather
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kweather/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/ktux
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/ktux/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kteatime
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kteatime/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kodo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kodo/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kmoon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kmoon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/kfifteenapplet
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kfifteenapplet/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdetoys/amor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/amor/ - Add translation templates for tdetoys.
- Update translation files tdegraphics / tdeiconedit
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_xpm
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_xbm
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_tiff
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_tga
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_rgb
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_ps
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_pnm
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_png
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_pdf
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_pcx
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_jpeg
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_ico
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_gif
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_exr
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_dvi
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_dds
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / tdefile_bmp
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / libkscan
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / libkfaximgage
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kviewviewer
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kviewshell
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kviewscannerplugin
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kviewpresenterplugin
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kvieweffectsplugin
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kviewcanvas
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kviewbrowserplugin
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kview_scale
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kview
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kuickshow
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / ksvgplugin
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / ksnapshot
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kruler
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kpovmodeler
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kpdf
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kooka
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kolourpaint
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kmrml
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kghostview
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kgamma
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kfaxview
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kfax
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kdvi
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kdjview
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kcoloredit
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kcmkamera
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kcm_kviewviewerpluginsconfig
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kcm_kviewpluginsconfig
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kcm_kviewgeneralconfig
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Update translation files tdegraphics / kcm_kviewcanvasconfig
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Add translation templates for tdegraphics.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates for tdenetwork.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates for tdemultimedia.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates for tdepim.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates for tdeadmin.
- Move kpilot translations to kpilot application.
- Drop fuzzy flag for translations labeled due to the previous issue
with removing / restoring a semicolon. - Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Update translations templates.
- Drop fuzzy flag for translations labeled due to the previous issue
with removing / restoring a semicolon. - Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Updated translation templates.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates for tdebase.
Add missing header in PO files. - Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates for tdelibs.
- Rename translation contexts
+ QXml => TQXml
+ QFont => TQFont
+ QAccel => TQAccel
+ QMessageBox => TQMessageBox
There was a change in line wrapping as a result of merging strings using msguniq. - rename kdelogo.xpm to tdelogo.png, kdelogo.png to tdelogo.png and kdelogo2.png to tdelogo2.png ; this relates to bug #2618
- Translated using Weblate (Czech)
Currently translated at 100.0% (15 of 15 strings)
Translation: tdebase/twin_lib
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin_lib/cs/ - Translated using Weblate (Czech)
Currently translated at 98.3% (181 of 184 strings)
Translation: tdebase/twin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin/cs/ - Translated using Weblate (Czech)
Currently translated at 98.9% (184 of 186 strings)
Translation: tdebase/kcmkeys
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkeys/cs/ - Small fixes not related to translations
+ repair damaged UTF-8 characters
+ remove incorrect header lines
+ delete a badly named file
libraries
libkdcraw
- Fix FTBFS with stricter C++11
libksquirrel
- Fix FTBFS with stricter C++11
libtdeldap
- Fix access to ldap configuration files on non-controller (workstation) systems
- Properly set umask on login
- Correctly set permissions on LDAP configuration file to only allow owner / group, since this file contains a multi-master replication password in plain text
- cmake: Add missing CheckSymbolExists include.
- Use common CMake tests.
- Add KDE_EXPORT to public library symbols.
This allows build with gcc hidden visibility. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Add includes to UI files to resolve FTBFS.
- Update CMake rules
+ Set the library version to 1.0.0.
(partially - conversion to the cmake building system
libtqt-perl
- Fixed incorrect TTQ rename (TTQ -> TQ)
- Fix inadvertly renamed QT_THREAD_SUPPORT
python-trinity
- Fixed incorrect TTQ rename (TTQ -> TQ)
pytdeextensions
- Removed extension from icon name in desktop file. This relates to bug
2424.
applications
abakus
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/abakus
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/abakus/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Fix missing semicolon in translations.
- Updated translation templates.
- Update CMakeL10n rules for a simplified use.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Update translation templates.
Adaptation to the changed macro naming concept. - Added translation using Weblate (Czech)
- Add CMakeL10n rules.
Create translation template.
amarok
- Merge translation files from master branch.
- Update translation template.
- Fix FTBFS caused by latest mysql library.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/amarok
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/amarok/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template. - Fixed typedef-related warnings from compiler.
- Fix FTBFS with stricter C++11
basket
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/basket
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/basket/ - Update translation template.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template. - Fix automake build dependencies
bibletime
- Add CMakeL10n rules.
Update translation template. - Fix FTBFS due to improper automoc
desktop-effects-tde
- Update CMakeL10n rules
+ Add the X-POT option to include the common texts to template. - Add CMakeL10n rules.
Update translation template. - Rename DesktopEffectsKDE => DesktopEffectsTDE
- Fix python-tqt module import.
Qt3 => TQt Conversion. - Drop Qt4 / KDE4 parts.
digikam
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/digikam
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/digikam/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/digikam
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/digikam/ - Add CMakeL10n rules.
Create translation template. - Fix inadvertently renamed Orientation => Qt::Orientation.
dolphin
- fix issue #2, add WITH_ALL_OPTIONS, clean up CMakeLists.txt from libvisual and write config.h.cmake up
- resolves issue #2, add a man page
- cmake: Add rules to build documentation and translations.
This partially resolves issue #2 - Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/dolphin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/dolphin/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. - Add CMakeL10n rules.
Update translation template.
Fix plural format in existing translations. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
filelight
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/filelight
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/filelight/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: /
Translate-URL: - Add CMakeL10n rules.
Create translation template.
Modify CMake rules for translations
to make them independent of languages. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
- Removed extension from icon name in desktop file. This relates to bug
2424. - Fix FTBFS with stricter C++11
gtk-qt-engine
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/gtk-qt-engine
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gtk-qt-engine/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/gtk-qt-engine
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gtk-qt-engine/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
- Removed extension from icon name in desktop file. This relates to bug
2424.
gtk3-tqt-engine
- Fix the path for installing GTK3 libraries.
Second attempt because GTK3_LIBDIR already contains GTK3_PREFIX. - Fix the path for installing GTK3 libraries.
gwenview
- Add CMakeL10n rules.
- Workaround for parallel build
gwenview-i18n
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/gwenview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gwenview/ - Update translation template.
- Rename Venda translation to "ve".
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/gwenview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gwenview/ - Add translation template.
- Conversion to the CMake building system.
k3b
- Use common CMake tests.
- Add CMakeL10n rules.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
k3b-i18n
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k3b - setup
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-setup/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k3b - lib
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-lib/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k3b - device
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-device/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k3b
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k3b - lib
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-lib/ - Update translation files
Updated by Aktualizovat PO soubory aby odpovídaly těm POT (msgmerge) hook in Weblate. - Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add translation templates.
Modify CMake rules for translations
to make them independent of languages. - Translated using Weblate (Czech)
Currently translated at 91.0% (633 of 695 strings)
Translation: applications/k3b-lib
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-lib/cs/ - Translated using Weblate (Czech)
Currently translated at 100.0% (45 of 45 strings)
Translation: applications/k3b-device
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-device/cs/ - Translated using Weblate (Czech)
Currently translated at 87.7% (1542 of 1757 strings)
Translation: applications/k3b
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b/cs/
k9copy
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k9copy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k9copy/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/k9copy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k9copy/ - Add CMakeL10n rules.
Create translation template. - Translated using Weblate (Czech)
Currently translated at 63.4% (217 of 342 strings)
Translation: applications/k9copy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k9copy/cs/ - Add includes to UI files to resolve FTBFS.
- Removed unnecessary executable flag.
- Fixed typedef-related warnings from compiler.
- Removed extension from icon name in desktop file. This relates to bug
2424.
kaffeine
- Remove 'xx' translation file.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kaffeine
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kaffeine/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kaffeine
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kaffeine/ - Add CMakeL10n rules.
Create translation template.
kasablanca
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kasablanca
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kasablanca/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kasablanca
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kasablanca/ - Add CMakeL10n rules.
Update translation template. - Removed unnecessary executable flag.
- Fix FTBFS due to improper automoc
katapult
- Add KDE_EXPORT to public library symbols.
This allows build with gcc hidden visibility. - Add includes to UI files to resolve FTBFS.
- conversion to the cmake building system
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/katapult
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/katapult
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/katapult/ - Add CMakeL10n rules.
Create translation template.
kbarcode
- Merge translation files from master branch.
- Update translation template.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - automake: add WITH_NATIVE_GNU_BARCODE and WITH_JAVASCRIPT build options
- cmake: add WITH_NATIVE_GNU_BARCODE and WITH_JAVASCRIPT build options
- conversion to the cmake building system
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbarcode
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbarcode/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbarcode
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbarcode/ - Add CMakeL10n rules.
Create translation template. - Fixed typedef-related warnings from compiler.
- related to bug #2424
Application desktop files should not contain icon extension
kbfx
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbfx
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbfx/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbfx
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbfx/ - Add CMakeL10n rules.
Create translation template. - Manually applied changes from commit 88ae250af0.
- Add includes to UI files to resolve FTBFS.
- Fix inadvertly renamed QT_THREAD_SUPPORT
kbibtex
- Fix build with standalone libiconv.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - conversion to the cmake building system
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbibtex
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbibtex/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbibtex
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbibtex/ - Add CMakeL10n rules.
Update translation template.
kbiff
- Merge translation files from master branch.
- Convert translation to UTF-8.
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kbiff
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbiff/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template. - Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones. - Convert zh_TW translation from Big5 to UTF-8.
- Change from TQFont::defaultFont to TQApplication::font
The definition of -UTQT_NO_COMPAT is no longer needed. - cmake: Add options WITH_SSL and WITH_MLED
Fix test for SSL => is not needed, because is used KSSL from tdelibs
Fix test for ASUS Mail LED support in ACPI - correct HAVE_SYS_SELECT_H and HAVE_PATHS_H
- some cleanup
- cmake conversion
kbookreader
- Use common CMake tests.
- Update translation template.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Add includes to UI files to resolve FTBFS.
- conversion to the cmake buildidng system
- Add CMakeL10n rules.
Update translation template.
kchmviewer
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kchmviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kchmviewer/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kchmviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kchmviewer/ - Rename Dutch translation to "nl".
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kchmviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kchmviewer/ - Add CMakeL10n rules.
Update translation template. - Removed unnecessary executable flag.
- Fixed typedef-related warnings from compiler.
kcmautostart
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kcm-autostart
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kcm-autostart/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template. - conversion to the cmake building system
kcmldap
- Use common CMake tests.
- Update translation template.
- Fix krb5 detection without pkgconfig file.
- Update translation template.
- Added controlled conversions to char* instead of automatic ascii conversions.
- Fix invalid data type for the "hidden" property.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Fix FTBFS due to improper automoc.
- Add includes to UI files to resolve FTBFS.
- cmake: Add krb5 library detection.
Add krb5 include directories. - conversion to the cmake building system
- Add CMakeL10n rules.
Create translation template.
kcmldapcontroller
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
kcmldapmanager
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
kcpuload
- Fix FTBFS on FreeBSD
Taken from FreeBSD patches. - Use common CMake tests.
- Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - Fix structure of directories
- should prevent a buffer overflow in tagbuffer
- add a man page kcpuload, relates to bug #1043
- cmake: Fix the installation of the icons used in the application
- cmake conversion kcpuload
kdbg
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdbg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdbg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/ - Add CMakeL10n rules.
Create translation template. - Fix FTBFS due to improper automoc
kdiff3
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdiff3
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdiff3 - plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3-plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdiff3 - diff_ext
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3-diff_ext/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdiff3
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3/ - Add CMakeL10n rules.
Update translation templates. - Remove incorrect header lines from PO files
- Removed unnecessary executable flag.
kdirstat
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdirstat
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdirstat/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template. - Removed obsolete CHECK_PTR and replaced CHECK_PTR/Q_CHECK_PTR with TQ_CHECK_PTR.
- Fix forward class declaration.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Removed obsolete TQCollection and replaced with TQPtrCollection.
The definition of -UTQT_NO_COMPAT is no longer needed. - Removed unnecessary executable flag.
- cmake: Install tdeconf_update scripts as programs.
- conversion to the cmake building system
kdpkg
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdpkg - install
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdpkg-install/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kdpkg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdpkg/ - Update translation template.
- Update translation files kdpkg - install
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template.
keep
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/keep
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/keep/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/keep
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/keep/ - Add CMakeL10n rules.
Create translation template.
kerberostray
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
kerry
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kerry - kcm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry-kcm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kerry
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kerry - kcm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry-kcm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kerry
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry/ - Add CMakeL10n rules.
Create translation template.
kftpgrabber
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kftpgrabber
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kftpgrabber/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kftpgrabber
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kftpgrabber/ - Add CMakeL10n rules.
Create translation template.
kgtk-qt3
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kgtk-qt3
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kgtk-qt3/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kgtk-qt3
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kgtk-qt3/ - Fix charset in translation.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kgtk-qt3
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kgtk-qt3/ - Add CMakeL10n rules.
Update translation templates. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
kile
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kile
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kile/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kile
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kile/ - Add CMakeL10n rules.
Create translation template.
kima
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kima
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kima/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kima
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kima/ - Add CMakeL10n rules.
Update translation template.
kiosktool
- Use common CMake tests.
- Remove 'xx' translation file.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kiosktool
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kiosktool/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template.
Modify CMake rules for translations
to make them independent of languages. - Add includes to UI files to resolve FTBFS
- add an option to build kcm-autostart, set by 'OFF' as default
- cmake: Add helpbooks for other languages
- conversion to the cmake building system
- Removed unnecessary executable flag.
kkbswitch
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kkbswitch
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kkbswitch/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template. - Removed unnecessary executable flag.
- cmake: Install tdeconf_update scripts as programs.
- converios to the cmake building system
klcddimmer
- Use common CMake tests.
- Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - Add includes to UI files to resolve FTBFS
- conversion to the cmake building system
kmplayer
- Remove 'xx' translation file.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kmplayer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmplayer/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kmplayer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmplayer/ - Add CMakeL10n rules.
Create translation template. - Fix automake build dependencies
Workaround for parallel build - Relate to bug #2424
kmyfirewall
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
kmymoney
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kmymoney
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kmymoney
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/ - Add CMakeL10n rules.
Update translation template. - Use the context attribute in the UI files
to determine the translation context. - Translated using Weblate (Czech)
Currently translated at 88.3% (2354 of 2663 strings)
Translation: applications/kmymoney
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/cs/ - Removed unnecessary executable flag.
knemo
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knemo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knemo/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knemo - kcm
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knemo-kcm/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knemo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knemo/ - Add CMakeL10n rules.
Create translation template.
knetload
- Use common CMake tests.
- Remove 'xx' translation file.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knetload
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetload/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template.
Modify CMake rules for translations
to make them independent of languages. - conversion to cmake build system
- Removed unnecessary executable flag.
knetstats
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knetstats
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetstats/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template.
Modify CMake rules for translations
to make them independent of languages. - Fix structure of directories
- Add includes to UI files to resolve FTBFS.
- conversion to the cmake building system
knetworkmanager8
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knetworkmanager8
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetworkmanager8/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knetworkmanager8
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetworkmanager8/ - Add CMakeL10n rules.
Create translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
knights
- Use common CMake tests.
- Change MatchOver sound to notify.wav, because matchover.wav not exists.
- Remove tarballs for themes from source code.
- Change Automake rules to make tarballs for themes created during building.
- Change CMake rules to make tarballs for themes created during building.
- Extract files for themes contained in tarballs.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knights
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/ - Update translation template.
- Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones. - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knights
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/ - Update translation template.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knights
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/ - Update build rules for documentation:
+ Removed French documentation because it contains nothing.
+ Modified automake rules for documentation in subdirectories.
+ Added cmake rule for installing documentation. - arts is required not requested as optional
- conversion to the cmake building system
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knights
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/ - Add CMakeL10n rules.
Update translation template. - newBuff pointer should be freed with delete[]
- Fixed typedef-related warnings from compiler.
- Removed extension from icon name in desktop file. This relates to bug
2424. - Icons in .desktop file should not have extension.
knmap
- Use common CMake tests.
- Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - Add a man page taken from tde-packaging.
- Fix incorrect use of TQString() inside i18n().
Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Removed obsolete Qt2's ASSERT and replace with Q_ASSERT.
The definition of -UTQT_NO_COMPAT is no longer needed. - Removed unnecessary executable flag.
- conversion to the cmake building system
- config user path should be .trinity not .kde
knowit
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knowit
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knowit/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Updated translation templates.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Updated translation template. - Change file permissions to remove execute bit
- conversion to the cmake building system
- htmlfile should get an assignment not a comparison
- Removed extension from icon name in desktop file. This relates to bug
2424.
knutclient
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/knutclient
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knutclient/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - cmake: Removed the definition of -UTQT_NO_COMPAT - seems unnecessary.
- Removed unnecessary executable flag.
- conversion to cmake building system
- Removed unnecessary executable flag.
koffice
- Fix empty translation.
- Add CMakeL10n rules.
- Kivio: Add xml header into stencils files.
- Add freetype detection using pkg-config.
- Fixed FTBFS caused by missing KartonText.
- Fixed incorrect TTQ rename (TTQ -> TQ)
- Removed unnecessary executable flag.
- Fixed typedef-related warnings from compiler. Also fixed warning on
keximdb, indirectly. - Switch from strstream to sstream.
koffice-i18n
- Merge translation files from master branch.
- Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - thesaurus_tool
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-thesaurus_tool/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kword
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kword/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kugar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kugar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kspreadinsertcalendar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadinsertcalendar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kspreadcalc_calc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadcalc_calc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kspread
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspread/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kscreenshot_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscreenshot_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kscan_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscan_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kpresenter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kpresenter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kplato
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kplato/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - koshell
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koshell/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - koproperty
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koproperty/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kofficefilters
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kofficefilters/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kivio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kivio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kformula
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformula/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kformdesigner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformdesigner/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kexi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kexi/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kchart
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kchart/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - karbon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-karbon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - example
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-example/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - chalk
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-chalk/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - tdefile_koffice
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_koffice/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - thesaurus_tool
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-thesaurus_tool/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - tdefile_ooo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_ooo/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - tdefile_gnumeric
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_gnumeric/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - tdefile_abiword
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_abiword/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kword
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kword/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kugar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kugar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kthesaurus
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kthesaurus/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kspreadinsertcalendar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadinsertcalendar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kspreadcalc_calc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadcalc_calc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kspread
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspread/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kscreenshot_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscreenshot_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kscan_plugin
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscan_plugin/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kpresenter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kpresenter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kplato
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kplato/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kounavail
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kounavail/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - koshell
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koshell/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - koproperty
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koproperty/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kofficefilters
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kofficefilters/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - koconverter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koconverter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kivio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kivio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kformula
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformula/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kformdesigner
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformdesigner/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kexi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kexi/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - kchart
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kchart/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - karbon
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-karbon/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - example
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-example/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice - chalk
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-chalk/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/koffice
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice/ - Add translation template.
- Translated using Weblate (Czech)
Currently translated at 75.8% (2393 of 3153 strings)
Translation: applications/koffice - kspread
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspread/cs/
konversation
- Merge translation files from master branch.
- Update translation template.
- Add netinet/in.h include.
This resolves FTBFS on FreeBSD. - Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/konversation
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/konversation/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/konversation
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/konversation/ - Add CMakeL10n rules.
Create translation template.
Modify CMake rules for translations
to make them independent of languages. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
kopete-otr
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kopete-otr
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kopete-otr/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kopete-otr
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kopete-otr/ - Add CMakeL10n rules.
Create translation template.
kpicosim
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- cmake: Fix FTBS if no translations are available
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - conversion to the cmake building system
- Change file permissions to remove execute bit
kpilot
- Use common CMake tests.
- Add KDE_EXPORT on PluginUtility namespace.
This resolves issue #1 - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kpilot
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpilot/ - Update translation template.
- Fix FTBFS from commit c2446367.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kpilot
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpilot/ - Add CMakeL10n rules.
Create translation template. - Migration to standard TDE CMake build system.
Add common cmake module. - Fix export of symbols to work properly with hidden visibility.
- Move translations from tde-i18n/tdepim.
- Fixed typedef-related warnings from compiler.
kpowersave
- Use common CMake tests.
- Merge translation files from master branch.
- Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kpowersave
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpowersave/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kpowersave
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpowersave/ - Add CMakeL10n rules.
Create translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS
krecipes
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/krecipes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krecipes/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/krecipes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krecipes/ - Fix empty translation.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/krecipes
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krecipes/ - Add CMakeL10n rules.
Create translation template. - Removed unnecessary executable flag.
- Fixed typedef-related warnings from compiler.
krename
- Use mode_t in chmod instead of unsigned int.
This resolves FTBFS on FreeBSD. - Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/krename
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krename/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Fix inifinite loop while parsing subdirs.
Improved clarity of the original while loop. - Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed.
Fix unnecessary use of TQString() over i18n().
Resolved use of deprecated NetAccess methods. - conversion to the cmake building system
- Fixed typedef-related warnings from compiler.
- 'MiniIcon' should also not have an extension.
- related to bug #2424
krusader
- Merge translation files from master branch.
- Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/krusader
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krusader/ - Update translation template.
- Fix empty translation.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/krusader
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krusader/ - Add CMakeL10n rules.
Create translation template. - Removed unnecessary executable flag.
- Removed extension from icon name in desktop file. This relates to bug
2424.
kscope
- Fix automake build dependencies.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kscope
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kscope/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kscope
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kscope/ - Add CMakeL10n rules.
Update translation template.
ksensors
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ksensors
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksensors/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template. - Remove autoResize from CheckAllSensors check box
The definition of -UTQT_NO_COMPAT is no longer needed. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - cmake: Cleanup installation of the application icon
- convert to cmake building system
- Fix FTBFS due to improper automoc
kshowmail
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kshowmail
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshowmail/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kshowmail
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshowmail/ - Add CMakeL10n rules.
Update translation template.
kshutdown
- Better solution for previous commit is used.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Use common CMake tests.
- conversion to the cmake building system
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kshutdown
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshutdown/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kshutdown
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshutdown/ - Add CMakeL10n rules.
Create translation template. - Remove incorrect header lines from PO files
ksplash-engine-moodin
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- cmake: Delete src/themes/Architecture
because this is not part of the r14.0.x branch. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - conversion to the cmake building system
ksquirrel
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ksquirrel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksquirrel/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ksquirrel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksquirrel/ - Add CMakeL10n rules.
Update translation template.
kstreamripper
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
ksystemlog
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ksystemlog
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksystemlog/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ksystemlog
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksystemlog/ - Add CMakeL10n rules.
Update translation template.
ktechlab
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ktechlab
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktechlab/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ktechlab
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktechlab/ - Add CMakeL10n rules.
Create translation template.
ktorrent
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ktorrent
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktorrent/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/ktorrent
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktorrent/ - Add CMakeL10n rules.
Create translation template. - Fixed corrupted japanese translations. This resolves bug #2952
kvirc
- Merge translation files from master branch.
- Update translation template.
- Removing an unwanted temporary work file.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - torrent
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-torrent/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - theme
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-theme/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - sharedfileswindow
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-sharedfileswindow/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - perlcore
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-perlcore/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - perl
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-perl/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - options
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-options/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - notifier
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-notifier/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - mediaplayer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-mediaplayer/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - logview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-logview/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - filetransferwindow
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-filetransferwindow/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - editor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-editor/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - dcc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-dcc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - about
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-about/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/ - Add CMakeL10n rules.
Create translation template. - Fix empty translation.
Fix charset in translation. - Translated using Weblate (Czech)
Currently translated at 96.4% (2495 of 2588 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/projects/applications/kvirc/cs/ - Fixed incorrect TTQ rename (TTQ -> TQ)
- Repair damaged UTF-8 characters in PO files
- Removed unnecessary executable flag.
- Workaround for parallel build
kvkbd
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - clean up header in CMakeList, remove unused variable, this fixes issue #3
- Inappropriately used TQString::fromUtf8() moved to place where it is needed.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - convert to the cmake building system
- delete empty files, this fixes issue #1
kvpnc
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvpnc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvpnc/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Update translation template. - Install application specific icons in the application directory.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Add includes to UI files to resolve FTBFS.
- conversion to the cmake building system
- Removed unnecessary executable flag.
mplayerthumbs
- conversion to the cmake building system
- Add CMakeL10n rules.
Create translation template.
piklab
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/piklab
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/piklab/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/piklab
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/piklab/ - Add CMakeL10n rules.
Update translation template. - Removed unnecessary executable flag.
potracegui
- Use common CMake tests.
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Update translation template.
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - Add includes to UI files to resolve FTBFS.
- correct user linker flags
- conversion to the cmake building system
rosegarden
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/rosegarden
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/rosegarden/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/rosegarden
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/rosegarden/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Removed extension from icon name in desktop file. This relates to bug
2424. - Fix minor leftover from strstream to sstream conversion not done in previous
commit. - Switched from strstream to sstream.
smb4k
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/smb4k
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/smb4k/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/smb4k
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/smb4k/ - Add CMakeL10n rules.
Create translation template.
soundkonverter
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/soundkonverter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/soundkonverter/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/soundkonverter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/soundkonverter/ - Add CMakeL10n rules.
Create translation template. - Removed unnecessary executable flag. This relates to bug #2153
tde-guidance
- Fixed incorrect TTQ rename (TTQ -> TQ)
- Removed extension from icon name in desktop file. This relates to bug
2424.
tde-style-lipstik
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
tde-style-qtcurve
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tde-style-qtcurve
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tde-style-qtcurve/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tde-style-qtcurve
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tde-style-qtcurve/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
tde-systemsettings
- Update translation template.
- Add CMakeL10n rules.
Create translation template.
tdeio-apt
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdeio-apt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-apt/ - Update translation template.
- Change from TQRegExp::match to TQRegExp::search.
The definition of -UTQT_NO_COMPAT is no longer needed. - conversion to the cmake building system
- Removing an unwanted temporary work file.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdeio-apt
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-apt/ - Add CMakeL10n rules.
Create translation template. - Rename Polish translation to "pl".
tdeio-ftps
- Use common CMake tests.
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Fix pointer comparison
This resolves issue #1 - cmake: Adjusted test for time.h, added test of strtoll function
- add 'WITH_ALL_OPTIONS' and 'BUILD_ALL' as building parameters for consistency
- cmake conversion
tdeio-locate
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdeio-locate
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdeio-locate/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
tdeio-sword
- Use common CMake tests.
- Update translation template.
- Fix FTBFS with older GCC.
- remove unnecessaries in the search for the sword library and correct src/CMakeLists.txt accordingly
- Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - conversion to the cmake building system
- Add CMakeL10n rules.
Create translation template.
tdeio-umountwrapper
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - cmake conversion
tdenetworkmanager
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdenetworkmanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdenetworkmanager/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdenetworkmanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdenetworkmanager/ - Modified CMakeL10n rules to include strings from vpn-plugins.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdenetworkmanager
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdenetworkmanager/ - Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS
tdepowersave
- Use common CMake tests.
- Merge translation files from master branch.
- Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdepowersave
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdepowersave/ - Update translation template.
- Fix mistake in merge from prior commit.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdepowersave
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdepowersave/ - Add CMakeL10n rules.
Create translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS
tderadio
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - v4lradio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-v4lradio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - timecontrol
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-timecontrol/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - recording
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-recording/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - radio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-radio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - gui-error-log
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-error-log/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - gui-docking-menu
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-docking-menu/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - v4lradio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-v4lradio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - timeshifter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-timeshifter/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - timecontrol
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-timecontrol/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - streaming
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-streaming/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - soundserver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-soundserver/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - recording
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-recording/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - radio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-radio/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - oss-sound
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-oss-sound/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - lirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-lirc/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - gui-standard-display
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-standard-display/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - gui-quickbar
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-quickbar/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - gui-error-log
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-error-log/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - gui-docking-menu
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-docking-menu/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - convert-presets
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-convert-presets/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio - alsa-sound
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-alsa-sound/ - Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tderadio
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio/ - Add CMakeL10n rules.
Create translation template.
tdesudo
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - convert to the cmake building system
tdesvn
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdesvn
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdesvn/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdesvn
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdesvn/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS.
:x - Fix inadvertly renamed QT_THREAD_SUPPORT
tdmtheme
- Use common CMake tests.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations. - Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. - conversion to the cmake building system
- Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
tellico
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tellico
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tellico/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tellico
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tellico/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
tork
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tork
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tork
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/ - Add CMakeL10n rules.
Update translation template.
wlassistant
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/wlassistant
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/wlassistant/ - Update translation template.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/wlassistant
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/wlassistant/ - Add CMakeL10n rules.
Update translation template. - Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Add includes to UI files to resolve FTBFS
yakuake
- Use common CMake tests.
- Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/yakuake
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/yakuake/ - Update translation template.
- Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
- Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate. - Add CMakeL10n rules.
Create translation template.
Modify CMake rules for translations
to make them independent of languages. - Add includes to UI files to resolve FTBFS
- Removed unnecessary commented code. This makes the previous commit
cleaner. - reduce scope of pointer variables, this resolves issue #2
- Those directories aren't needed to build yakuake.
- cmake conversion
packaging
packaging
- DEB kvpnc: Prefer the default libgcrypt-dev instead of the specific version.
This solves the conflict between packages on Ubuntu 14.04 (Trusty). - RPM: update build scripts for pclinuxos
- RPM: update build scripts for R14.0.6
- RPM: update build scripts for TDE R14.0.6
- FreeBSD: Update for final release R14.0.6
Add ports for bunch of applications. - DEB trinity-slax: Create an initial kpersonalizerrc.
- DEB tdebindings: Enable build with Java on ppc64el.
- RPM: fix dependencies on newly cmake built packages
- RPM: fix dependencies in Makefile
- RPM: fix gcc visibility in TQT3
- RPM: switch many packages to cmake
- DEB mplayerthumbs: Switch to cmake.
- DEB kbarcode: Switch to cmake.
The man page has been moved to the main tree. - Add sudo to dependencies for LDAP bonding / controller packages
- Fix missing SASL recommendations in LDAP client control modules on Debian and Ubuntu
- DEB katapult: Switch to cmake.
The man page has been moved to the main tree. - DEB dolphin: The man page has been moved to the main tree.
Modify the rules into line with the usual. - DEB kbibtex: Switch to cmake.
- DEB libtdeldap: Switch to cmake.
Switch to common TDE cdbs rules. - DEB dbus-1-tqt: Add usual cmake options.
- DEB kshutdown: Switch to cmake.
The man page has been moved to the main tree. - Add Ubuntu Cosmic symlink to packaging
- DEB avahi-tqt: Add CMake option WITH_ALL_OPTIONS.
- Rename qt_untranslated.ts to template.ts
to make it clear for what purpose this file is intended. - DEB kbookreader: Switch to cmake.
- DEB tdeio-sword: Switch to cmake.
- DEB kcmldap: Switch to cmake.
Switch to common TDE cdbs rules. - DEB knights: Switch to cmake.
Switch to common TDE cdbs rules.
The man page has been moved to the main tree. - DEB defaultsettings: Rename kdelogo => tdelogo in tdmdistrc configuration file.
- DEB tdebase: Rename kdelogo => tdelogo in the tdm configuration during tdm upgrade.
- DEB kpilot: Switch to cmake.
- RPM: fix kxmleditor, qalculate-tde, tde-style-baghira, tqscintilla on r14.0.x
- RPM: update docker scripts
- RPM: update trinity-filesystem build
- RPM: update build scripts
- RPM: fix tdenetworkmanager build
- RPM: switch kplayer to cmake
- RPM: switch kpicosim to cmake
- RPM: update knowit build
- RPM: switch gwenview-i18n to cmake
- RPM: fix dolphin build
- DEB tdeio-apt: Switch to cmake.
Removed Ubuntu specific kdedeg_logo. - DEB gwenview-i18n: Switch to cmake.
- DEB desktop-effects-tde: Install TQt/TDE version instead of Qt4/KDE4.
- DEB potracegui: Switch to cmake.
The man page has been moved to the main tree. - RPM: update build script
- DEB kvpnc: Switch to cmake.
The man page has been moved to the main tree. - DEB kcpuload: Adjust after changing the directory structure of the application.
- DEB kpicosim: Switch to cmake.
Switch to common TDE cdbs rules.
The man page has been moved to the main tree. - DEB knowit: Switch to cmake.
Switch to common TDE cdbs rules.
The man page has been moved to the main tree. - RPM: update build scripts
- RPM: fix krename build with cmake
- RPM: remove obsolete spec file
- RPM: update docker build script for opensuse tumbleweed
- RPM: update build scripts
- RPM: update tdepim icons
- RPM: fix abakus build
- RPM: add new icons to tdepim
- RPM: add libattr-devel dependency to tdelibs-devel
- RPM: remove obsolete icon in tdeutils
- RPM: fix tdebase build on opensuse tumbleweed
- RPM: add manpage to knetstats
- RPM: fix tdetoys build on opensuse tumbleweed, add manpages
- RPM: add docker build script for Fedora 29
- RPM: do not build kmrml in tdegraphics
- RPM: add 'tar' package to el6 docker image
- RPM: rename libqt3-jni package to libtqt3-jni
- RPM: remove obsolete patches
- RPM: update build scripts
- RPM: update packages for Fedora 29
- RPM: add libattr dependency to tdebase
- RPM: fix tdeadmin build after removing toggle_log.png
- RPM: fix tdebase after renaming kdelogo => tdelogo
- RPM: fix tdebase build on Fedora 29
- RPM: fix build on Fedora 29
- DEB tdelibs: Add ksysv-trinity (<< 4:14.0.6~) to Conflicts
for tdelibs-data-trinity to ensure smooth upgrade. - DEB tdetoys: The man pages has been moved to the main tree.
- RPM: merge redhat directory with master branch
- DEB tdeadmin: Remove icon crystalsvg/16x16/actions/toggle_log.png from ksysv.
The icon will be part of the tdelibs. - DEB: fixed logrotate of tdm.log. This resolves bug #894
- DEB: added missing applications icons for Kleopatra. Icons have been
taken from GnuPG/KDE version of Kleopatra, which is available under GPL
version >= 2. - DEB tdepim: Add pinentry icon for Kleopatra's GpgME backend.
- DEB: add missing icons for Kleopatra's GpgME backends.
- DEB tdebase: Add kdf-trinity (<< 4:14.0.6~) to Conflicts
for tdebase-data-trinity to ensure smooth upgrade. - DEB: fix installation conflict between kdf and tdebase-data caused by commit 34ac65a3c2.
- DEB tdebase: Simplify lists for installing icons.
This solves the installation of new icons from PR TDE/tdebase#18. - DEB: removed no longer necessary dependency on gettext.
- DEB: Removed an unused debian/cdbs/buildvars.mk file.
- DEB: Remove a mechanism for updating the uploaders list.
- DEB: Remove the translation templates update during building.
- DEB: renamed kdelogo pics to tdelogo pics. This related to PR tdebase#12
- DEB tdmtheme: Switch to cmake.
- DEB kdirstat: Switch to cmake.
The man page has been moved to the main tree. - DEB ksplash-engine-moodin: Switch to cmake.
Switch to common TDE cdbs rules. - DEB kkbswitch: Switch to cmake.
Keyboard layout for xkb is split into a separate package. - DEB krename: Switch to cmake
The man page has been moved to the main tree - DEB knetstats: Switch to cmake
The man page has been moved to the main tree - DEB knmap: Switch to cmake
The man page has been moved to the main tree - DEB kbiff: Switch to cmake
- DEB knutclient: Switch to cmake
Switch to common TDE cdbs rules
The man page has been moved to the main tree - DEB ksensors: Switch to cmake
The man page has been moved to the main tree - DEB: tdebindings - fixed conflict in debug symbols packages related to libksjembed1 and libkjsembed-dev packages.
- DEB tdesudo: Switch to cmake
The man page has been moved to the main tree - DEB kvkbd: Switch to cmake
- DEB klcddimmer: Switch to cmake
- DEB kcmautostart: Switch to cmake
Switch to common TDE cdbs rules - DEB kiosktool: Switch to cmake
The man page has been moved to the main tree - DEB tqca-tls: Remove unnecessary dirs from the package
- DEB tdeio-umountwrapper: Switch to cmake
- DEB tdeio-ftps: Switch to cmake
- DEB tqtinterface: Cleanup unused cmake build options
- DEB: added tdebindings-trinity and tdebindings-trinity-dev metapackages.
- DEB yakuake: Switch to cmake
The man page has been moved to the main tree - DEB knetload: Switch to cmake
The man page has been moved to the main tree - DEB tdeadmin: Switch to cmake
- DEB kcpuload: The man page has been moved to the main tree
This relates to bug #1043 - DEB: KMail: moved procmail from Recommend to Suggests.
This resolves bug #2104 - DEB: removed unused dependency on libopensync for KPilot.
- DEB kcpuload: switch to cmake
Switch packaging rules to cdbs - DEB: Fixed recommended and suggested packages for soundkonverter. This
resolves bug #711 - Removed extension from icon name in desktop file. This resolves bug
2424. - Removed unusued mlt and mlt++ libraries.