Difference between pages "Changelog For R14.0.6" and "Changelog For R14.0.7"

From Trinity Desktop Project Wiki
(Difference between pages)
Jump to navigation Jump to search
imported>SlavekB
(Update 20190330)
 
imported>SlavekB
(Update 20190609)
 
Line 1: Line 1:
 
= common =
 
= common =
== 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]
 
* Fix misplaced 'fi'
 
* Removed unnecessary executable flag from Doxyfile.global.
 
 
 
== cmake ==
 
== cmake ==
  +
* Use cache for TQt executables paths.<br/>This allows these values to be pre-defined<br/>- for example, to optimize cross-build.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tde-common-cmake/issues/28 #28]
* Fix installation of base soname for libraries with release number in the name.<br/>This resolves regression from prior commit.
 
  +
* Update tde_add_check_executable macro<br/>+ Add support for test arguments.
* 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_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.
 
* Add tde_setup_dbus macro.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tde-common-cmake/issues/20 #20]
 
* Add tde_setup_largefiles macro.<br/>The macro sets the necessary definitions so that the default libc<br/>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.<br/>For the GCC visibility setting, a test is performed<br/>whether the system is UNIX-type and also whether TQt<br/>and tdelibs are built with GCC visibility support.
 
* Update TDEL10n module<br/>+ Use IS_ABSOLUTE ${file} instead of ${file} MATCHES "^/".
 
* Update tde_create_tarball macro<br/>+ Use external tar for ensure files owner in tarball.<br/>+ Add an option to specify compression program.
 
* Fix tde_create_tarball macro<br/>+ The destination path for the installation was not properly used.<br/>+ Dependency on source files was wrong when SOURCEDIR was used.
 
* Update TDEL10n module<br/>+ Add ability to skip the contents of selected <property> tags.<br/>+ Fixed incorrect processing of the unpaired tags.
 
* Add tde_create_tarball macro.
 
* Update TDEL10n module<br/>+ Add ability to specify a template with strings that should not be extracted.<br/>+ Fixed detection of required programs.
 
* Update TDEL10n module<br/>+ Added ability to extract strings from documentation.
 
* Update TDEL10n module<br/>+ Use excludes also on files for extracting attributes.<br/>+ Add ability to extract multiple attributes for one source_spec.<br/>+ Add function to prepare attributes from XML files for xgettext.<br/>+ Use tde_l10n_prepare_xmlattr function instead of extractattr script.<br/>+ Handle working files for multiple extractions from the same source file.
 
* Update TDEL10n module<br/>+ Add option to determine comments to extract.
 
* Update TDEL10n module<br/>+ Add a way to disable default keywords.
 
* Update TDEL10n module<br/>+ Fix unwanted double processing of resource files.
 
* Update TDEL10n module<br/>+ Implement tde_l10n_preparetips using the tde_l10n_prepare_xml function.
 
* Update TDEL10n module<br/>+ Use tde_l10n_prepare_xml function instead of extractrc script.
 
* Update TDEL10n module<br/>+ Fix tde_l10n_prepare_xml when processing a line<br/> that contains only word "no".
 
* Update TDEL10n module<br/>+ Add new options to function tde_l10n_prepare_xml<br/>-- override the context by using the tag attribute<br/>-- preserve / remove leading empty lines
 
* Update TDEL10n module<br/>+ Added function to prepare XML files for xgettext.
 
* Update TDEL10n module<br/>+ Fix unwanted semicolons processing within CMake<br/> on extracted resources and attributes.
 
* Update TDEL10n module<br/>+ Fix unwanted semicolons processing within CMake.
 
* Update TDEL10n module<br/>+ Added ability to merge additional template.
 
* Update TDEL10n module<br/>+ CMP0007 setting is no longer needed.
 
* Update TDEL10n module<br/>+ Allow missed keyword CATALOG, if the catalog name is the first argument.
 
* Update TDEL10n module<br/>+ Added options for determining the destination directory.
 
* Update TDEL10n module<br/>+ Little modification in code formatting.<br/>+ Added comment about editing the list inside foreach.
 
* Update TDEL10n module<br/>+ Use file( READ ) during updating references for resources<br/> because file( STRINGS ) has problems with special characters.
 
* Update TDEL10n module<br/>+ Changed the concept of naming functions and macros.<br/>+ Now all the functions and macros begin with "tde_l10n_".
 
* Update TDEL10n module<br/>+ Added automatic handling of the "_translatorinfo" file.
 
* Update TDEL10n module<br/>+ Added the ability to process tips files.
 
* Update TDEL10n module<br/>+ Input files with the extension ".tde_l10n" are considered<br/> as temporary modified source files.<br/>+ Location information for such files in generated POT file<br/> will be modified to refer to the corresponding original<br/> files without the extension ".tde_l10n".<br/>+ After the POT file is generated, these temporary modified<br/> source files will be automatically deleted.
 
* Update TDEL10n module<br/>+ Added option to exclude files from processing.
 
* Update TDEL10n module<br/>+ Added the ability to extract strings using extractattr.<br/>+ 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.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2985 #2985]
 
* Add TDEL10n module
 
   
 
= dependencies =
 
= dependencies =
 
== qt3 ==
 
== qt3 ==
  +
* The TDE integration library (libqtkde) will be searched for<br/>in the Qt plugins directory, instead of the TDE plugins<br/>directory, which cannot be known at Qt build time.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/qt3/issues/3 #3]
* 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.
 
  +
* This fixes bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=639 #639]<br/>Add desktop files for:<br/>- assistant-qt3<br/>- designer-qt3<br/>- linguist-qt3<br/>- qtconfig-qt3<br/>These files have been made with the contribution of Laurent Dard's<br/>patch (see bugzilla:639) with little change/addition from I.<br/>Add 'sysshare' option to the configure script.
* 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.
 
  +
* Reintroduced debug, warning and fatal functions since this are part of<br/>R14.0.x API.
* 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.
 
  +
* Added timestamp to debug functions (qDebug, qWarning, qFatal).
* 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<br/>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<br/>package.
 
* Repair damaged UTF-8 characters in TS files<br/>Arabic translations taken from arabeyes-i18n
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* Fix FTBFS with stricter C++11
 
   
 
== tqt3 ==
 
== tqt3 ==
  +
* The TDE integration library (libtqtkde) will be searched for<br/>in the TQt plugins directory, instead of the TDE plugins<br/>directory, which cannot be known at TQt build time.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3/issues/3 #3]
* 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.
 
  +
* This fixes bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=639 #639]<br/>Add desktop files for:<br/>- tqassistant<br/>- tqdesigner<br/>- tqlinguist<br/>- tqtconfig<br/>These files have been made with the contribution of Laurent Dard's<br/>patch (see bugzilla:639) with little change/addition from I.<br/>Add 'sysshare' option to the configure script.
* 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.
 
  +
* Reintroduced debug, warning and fatal functions since this are part of<br/>R14.0.x API.
* 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.
 
  +
* Added timestamp to debug functions (tqDebug, tqWarning, tqFatal).
* 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<br/>to make it clear for what purpose this file is intended.
 
* Improved class name used in previous commit. Suggestion comes from<br/>Slavek :-)
 
* Fixed FTBFS caused by name conflict with new postgres server dev 11 package.
 
* Repair damaged UTF-8 characters in TS files<br/>Arabic translations taken from arabeyes-i18n
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* Fix FTBFS with stricter C++11
 
   
 
== tqtinterface ==
 
== tqtinterface ==
  +
* Removed unnecessary files and drop dependency on admin module.
* Prevent to use GNU sed extension feature<br/>It is GNU sed extension feature to use "\n" in insert string,<br/>so it should be replaced with portable way.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2986 #2986]
 
* cmake: Add BUILD_ALL and WITH_ALL_OPTIONS for consistency with other modules<br/>Added warning for building TQt interface based on Qt4
 
   
 
== akode ==
 
== akode ==
  +
* Removed automake files.
* Add missing AKODE_EXPORT on exported functions.
 
* Update CMake rules<br/>+ Add WITH_GCC_VISIBILITY option<br/>+ Use common tde_setup_gcc_visibility<br/>+ 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 ==
 
== avahi-tqt ==
  +
* Removed unused autotools files and changed file names to conform to .cmake<br/>convention for configuration files.
* Update CMake rules<br/>+ Add WITH_GCC_VISIBILITY option<br/>+ Use common tde_setup_gcc_visibility<br/>+ Add TestBigEndian and tde_setup_largefiles
 
   
 
== dbus-1-tqt ==
 
== dbus-1-tqt ==
  +
* Removed unused files.
* Add missing TQDBUS_EXPORT.
 
  +
* Removed dependency on admin module.
* Update CMake rules<br/>+ Add WITH_GCC_VISIBILITY option<br/>+ Use common tde_setup_gcc_visibility<br/>+ 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 ==
 
== dbus-tqt ==
  +
* Removed unnecessary files and drop dependency on admin module.
* Use common CMake tests.
 
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
* Fix inadvertly renamed QT_THREAD_SUPPORT
 
   
== sip4-tqt ==
+
== libart-lgpl ==
  +
* cmake: Add tests.
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
  +
* Add support for GCC hidden visibility.
  +
* Move the art_config.h generation to the configure script.<br/>Cleanup of generated automake files.
  +
* conversion to the cmake building system<br/>Cleanup of generated headers.<br/>Add common cmake submodule.
  +
* Use pkg-config to get values in libart2-config.
   
== tqscintilla ==
+
== libr ==
  +
* Clean automake files and unusued 'po' folder.
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
 
== tqca ==
 
* Fixed incorrect TTQ rename (TTQ -> TQ)
 
 
== tqca-tls ==
 
* Fix portability for expr(1) usage<br/>"match" operand for expr(1) is GNU extension.<br/>Change to use the standard way to match regex with expr(1).
 
   
 
= main =
 
= main =
 
== tdelibs ==
 
== tdelibs ==
  +
* Added some checks in KSSL (in TDEIO) to correctly recognize LibreSSL (which is a fork of OpenSSL 1.0.1b)<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/28 #28]
* Fix CMake build dependencies for tests.
 
  +
* Added timestamp to debug backend (kdDebug, kdWarning, ...).
* Removed "DEVELOPMENT" from TDE version in preparation for R14.0.6 release.
 
  +
* Updated version number to R14.0.7 [DEVELOPMENT].
* 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 common test for large files support.<br/>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<br/>It is used by others even if missing POSIX ACL support.
 
* Add some missing supplement macros for MIDI support<br/>They are used but not defined for missing OSS support.
 
* Change to define __STDC_LIMIT_MACROS first<br/><stdint.h> (or other system headers handling the macro) may be included<br/>indirectly from other header files (<sys/types.h> is a reasonable one).
 
* Convert GETMNTINFO_USES_STATVFS check to CMake<br/>Fix to build on such platforms, it is used but not checked with CMake.
 
* Update CMakeL10n rules<br/>+ Add rule to update template with common texts - tde.pot.<br/>+ 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<br/>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<br/>to match the translation context in TQt3.
 
* Deleted blank line at the beginning of the file.<br/>This prevented proper processing by extractrc.
 
* Small adjustments in Kate syntax highlighting files.<br/>+ Modify the line break in <language> tag in cpp.xml.<br/>+ Remove UTF8 BOM from ppd.xml.<br/>+ 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()<br/>using setCodecForCStrings. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2961 #2961]
 
* fix issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/3 #3] utempter detection
 
* Conversion exitkde -> exittde in knotify.evertsrc file. This relates to<br/>bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2283 #2283]
 
* Fixed potential FTBFS in htmlattrs.c. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2850 #2850]<br/>The FTBFS seems to happen only for some users, so this fix should help<br/>in such cases.
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* Improved description of "what's this" for placeholder in Find and<br/>Replace dialog. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2558 #2558]
 
* Fix FTBFS with stricter C++11
 
* Updated version number to R14.0.6 [DEVELOPMENT].
 
* related to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2674 #2674], *-device-input-keyboard.png was missing in<br/>theme crystalsvg for icons.
 
   
 
== tdebase ==
 
== tdebase ==
  +
* mediamanager: cleaned up use of medium name map.
* tdm: Do not run tdekbdledsync on remote displays.<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=1834 #1834]
 
  +
* Install the TDE integration library (libtqtkde) into TQt<br/>plugins directory, instead of the TDE plugins directory.
* Fix openssl >= 1.1 detection without pkg-config file.
 
  +
* kdcop: added popup menu to result list to conveniently copy the selected<br/>item (functionality was already available from Edit menu but not so user<br/>friendly).
* 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.
+
* Fixed bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=925 #925] ("SAK driven secure dialog is not available for use"<br/>message in .xsession-errors even when SAK is disabled).
  +
* Fixed use of SAK in lock process when autologin is used in TDM.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2945 #2945]<br/>Manually cherry-picked from commit 7aa9258f.
* 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 GCC visibility test.
 
* Fix FTBFS when build -DWITH_XRANDR=OFF
 
* fix bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2996 #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.<br/>Update TIMEZONES list.
 
* Fixed size used by TDE Control Center -> TDE Components. This relates to<br/>bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=1023 #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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=1023 #1023]
 
* rename kdelogo.xpm to tdelogo.png
 
* rename kdelogo into tdelogo
 
* this relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2618 #2618]
 
* Conversion startkde -> starttde, exitkde -> exittde in r14-xdg-upd file and related usage in code. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2282 #2282] and 2283.
 
* fix issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/10 #10]
 
* Add includes to UI files to resolve FTBFS.<br/>Partially cherry-picked from 661ed658.
 
* kdesktop lockprocess: Removed unnecessary include linux/stat.h<br/>This resolves FTBFS with glibc 2.28
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* New patch for bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2852 #2852] Should fix previous commit.
 
* Fixed order building in tdm. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2852 #2852]
 
* Removed hard-coded reference to /opt/trinity. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=680 #680]
 
* Some missing desktop icons in tdebase<br/>kdcop not part of TDE menu in R14.0.x, so excluded from this commit.
 
* tdeioslave nfs: Add support for libtirpc<br/>as a replacement for deprecated SunRPC from glibc >= 2.26<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2962 #2962]
 
* Fixed typedef-related warnings from compiler.
 
* Added missing ; at the end of japanese lines. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
* Improved description of "what's this" for placeholder in Find and<br/>Replace dialog. This resolves to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2558 #2558]
 
* Fix FTBFS with stricter C++11
 
* Fixed corrupted japanese translations. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
   
 
== tdepim ==
 
== tdepim ==
  +
* Make the folder assurance read-only.<br/>Patch by Szokovacs Robert <szo at szo dot hu>, thanks!<br/>BUG: 144035<br/>Cherry-picked from: 243dfe72a65603f6fdc36b78585cb21125e88c7d
* Use common CMake tests.
 
  +
* Typo fix<br/>WAS: global typo fix<br/>Cherry-picked from: 70eeef7c6e39b0a396fd81a703f9b90f511058c4
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
  +
* A signal handler that calls for example waitpid has to save errno before and<br/>restore it afterwards.<br/>Cherry-picked from: 70b4927d847f52c865e0c6c91323eeb3295a99eb
* Add CMakeL10n rules.
 
  +
* The use of the static keyword is deprecated when declaring objects in a namespace scope....<br/>- The C++ Standard, ISO/IEC 14882:1998, section 7.3.1.1 paragraph 2<br/>Cherry-picked from: a16596e1c16c3d5509d6d3f37ed9287ea61ef9df
* Use TQString for debugging output with unicode strings
 
  +
* Use static const instead of #define<br/>Cherry-picked from: c247b0607d3315a43f21c417ef261ab8eb2979e1
* Add unicode string support to the ktnef parser library
 
  +
* Default port for imap and imaps. Before after typing imap://server/ in<br/>konqueror, slave would try to connect to port 0.<br/>Cherry-picked from: b35c00016dd671aca964907d76aa5a2ed4bc15cc
* Update About Info for kmail, kontact and korganizer, this relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2401 #2401]
 
  +
* "x" -> 'x' micro-optimization.<br/>Cherry-picked from: b75a062ffed7a7e0e7cd284d5885ec8744a7cbd3
* Added missing applications icons for Kleopatra.<br/>Icons have been taken from GnuPG/KDE version of Kleopatra, which is<br/>available under GPL version >= 2.
 
  +
* Mischael's fix for "IMAP KIO process dies (due to trailing nulls?)"<br/>BUG: 153885<br/>Cherry-picked from: 1d8208d3815088eea3c36767acb0c5a0a1a61ec8
* Add missing icons for Kleopatra's GpgME backends.
 
  +
* Removed useless 'true &&' statement<br/>Cherry-picked from: 6965c8b9dac4bb0383a520a829b6689ea597764f
* korganizer: fixed SEGFAULT when deleting recurring TODOs.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2335 #2335] and 2682.
 
  +
* Fix mailAddress:getStr when rawComment is non-empty<br/>WAS: Fix the rest of 152692, another interesting QCString -> QByteArray gotcha.<br/>Seems to work ok with more email adresses now.<br/>CCBUG: 152692<br/>Partially cherry-picked from: 9df2cbd9db920123c7ab51c63ea927f0af5545aa
* Add includes to UI files to resolve FTBFS
 
  +
* Make getStr const correct.<br/>Cherry-picked from: 925d1f70010bc111ad9f4a3e910d689aa4e27181
* Fix inadvertly renamed QT_THREAD_SUPPORT
 
  +
* fixup the Copyrights<br/>Cherry-picked from: edcd66a23bc102ec914c4a8702dc12b7241840c6
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
  +
* Fix a small typo in API docs of imap4 kio-slave: send -> sent<br/>Cherry-picked from: 62950207dbc59863ddb0cf5ca01271fbac0df4c3
* Fix FTBFS with stricter C++11
 
  +
* - avoid unnecessary string conversion.<br/>Partial cherry pick from: 35f536ddb27633e8cac40eb4c99c5b370fdb14cb
* Fixed corrupted japanese translations. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
  +
* Bugfix: KMail: Detach from message observation when destructing KMReaderWin
  +
* libkcal tests: small improvement to cmake code to avoid having to escape quotes.
  +
* Disabled libical tests if libical version is less than 1.0.<br/>On old libical versions, DST change date is wrong and this would fail<br/>some of the tests. This is not a bug in TDE but in old libical libraries.<br/>Starting from libical 1.0, the bug seems to have been fixed.
  +
* Fixed support for libical version prior to 3. This is required for libkcal tests to work fine on older distributions.
  +
* Fixed bug in libkcal related to timezones in DT field.<br/>Fixed execution of libkcal tests.<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2719 #2719]
  +
* Fixed building of libkcal tests. Some of the tests still fails when<br/>executed. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2719 #2719]<br/>Special thanks to Emanoil Kotsev for providing an<br/>inital patch for the same bug, from which I reused a small section of code.
   
 
== tdemultimedia ==
 
== tdemultimedia ==
  +
* Fix for time_t != long<br/>`time_t` may not be `long`, for examples, unsigned (long) int,<br/>long long int (64bit integer type on 32bit arch), double, and so on.<br/>Change to use difftime(3) to retrieve seconds.
* Use common CMake tests.
 
  +
* Remove unsed platform endian detection<br/>Used part had been commented out over 8 years ago.<br/>Variety of include files are not sufficient and may cause build failure<br/>because of missing header file.
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
  +
* Remove traditional `errno` usage<br/>On modern POSIX environments, `errno` may not be simple `int` type,<br/>and <errno.h> is sufficient for `errno` and its symbolic values.
* Add CMakeL10n rules.
 
* Fixed incorrect TTQ rename (TTQ -> TQ)
 
* Replace deprecated ustat using fstatfs<br/>This resolves FTBFS with glibc 2.28
 
* Add includes to UI files to resolve FTBFS
 
* Fix FTBFS with stricter C++11
 
   
 
== tdenetwork ==
 
== tdenetwork ==
  +
* Fix FTBFS from commit 2c188798.<br/>On Linux, utmp.h is necessary even if utmpx.h is present.
* 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
 
  +
* kppp: fix to build on NetBSD
* LibVNCClient: fix possible infinite loop<br/>Closes #251
 
  +
* Change to check `strerror` and `fdopen` with CMake<br/>It is hard to update list of "available" platforms.
* 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>
 
  +
* Change to just include <utmpx.h> over <utmp.h><br/>Including deprecated <utmp.h> over standard <utmpx.h> may<br/>cause unwanted side effects, for example, enables old-code-compatibility<br/>functions and override utmpx functions.
* Use socklen_t directly, instead of deprecated ksize_t.<br/>This resolves FTBFS on FreeBSD 12.
 
  +
* Change to dclare `strlcat` and `strlcpy` conditionally<br/>They should be declared only for the case missing.<br/>Current prototype signatures should be for suppliment implementations<br/>in TDE core library.<br/>It may differ than platform builtin one, 3rd argment is `size_t',<br/>so it cause prototype mismatch for the case `size_t` != `unsigned long`.
* 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.
 
* 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 [https://mirror.git.trinitydesktop.org/gitea/TDE/tdenetwork/issues/2 #2]
 
* Add includes to UI files to resolve FTBFS
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* Fixed typedef-related warnings from compiler.
 
* Fix FTBFS with stricter C++11
 
   
 
== tdegraphics ==
 
== tdegraphics ==
  +
* Add support fo Poppler >= 0.76<br/>Follow Catalog::find_page argments change and GooList removal.
* Use common CMake tests.
 
* Add support for Poppler >= 0.72<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2974 #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<br/>because the relevant code changes are related to 0.58
 
* Fix FTBFS with stricter C++11
 
* Fixed corrupted japanese translations. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
* Removed old strstream code and switch to sstream permanently.<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=1043 #1043]
 
* Add includes to UI files to resolve FTBFS
 
   
 
== tdeutils ==
 
== tdeutils ==
  +
* Use `getvfsnumber()` to retrieve filesystem name on OSF/1 (Tru64)
* Use common CMake tests.<br/>Drop hardcoded definition -D_LARGEFILE64_SOURCE.
 
  +
* Change and simplify `statvfs` conditions in FileSystemStats<br/>`getfsstat` v.s. `getvfsstat` condition is different than<br/>`statfs` v.s. `statvfs`, so split each condition and simplify.<br/>For `get(v)fsstat` side, changed to check and use `getmntinfo`, because<br/>it is better than `get(v)fsstat` with fixed buffer size, and easier<br/>than improve it with dynamic buffer allocation.
* CMakeL10n rules for tdefilereplace moved to tdewebdev.
 
  +
* Fix NetBSD APM support<br/>NetBSD APM is supported other than i386 too, emulate API,<br/>so change to detect with MI support header.<br/>Additionally, catch up support codes to others.
* Add CMakeL10n rules.
 
  +
* Fix if-def condition same as *.cpp
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
  +
* Recent NetBSD explicitly need uvm/uvm_extern.h
* kcmdf icons are now part of tdebase. Removed from tdeutils to avoid<br/>conflicts.
 
  +
* Fix to build on NetBSD missing statfs from BSD44 feature
* Add includes to UI files to resolve FTBFS
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* KEdit: Removed unwanted flag setting that the file is not modified<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdeutils/issues/2 #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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
* Switched from strstream to sstream.
 
* Fix FTBFS with stricter C++11
 
* Fix automake build dependencies
 
   
 
== tdegames ==
 
== tdegames ==
  +
* cmake: Removed useless usage of<br/>`get_target_property( BIN2C_EXE bin2c LOCATION)`<br/>This resolves the CMake warning on CMP0026.
* 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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
 
== tdeaccessibility ==
 
* change large file support to more portable<br/>It is not portable to use lseek64/off64_t directly.<br/>Change to set large file support macro and use usual names.
 
* Add CMakeL10n rules.
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #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.<br/>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<br/>Cleanup unnecessary tests from ConfigureChecks<br/>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<br/>There is no reason to build a TQt-only frontend in TDE<br/>Fix the names of the auxiliary library targets<br/>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.<br/>added DCOP-shared tdefx tdetexteditor tdentlm to the linker.
 
* First bach of cmake files in order to convert tdeadmin<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=1020 #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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #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<br/>instead of listing the systems and versions that need to be defined.<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2618 #2618]
 
* Add includes to UI files to resolve FTBFS
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
* Removed extension from icon name in desktop file. This relates to bug<br/>2424.
 
* Removed unnecessary defines for sstream.
 
   
 
== tde-i18n ==
 
== tde-i18n ==
Line 375: Line 109:
 
* Merge translation files from master branch.
 
* Merge translation files from master branch.
 
* Update translation template.
 
* Update translation template.
* Move tdefilereplace translation template from tdeutils to tdewebdev.
+
* Merge translation files from master branch.
  +
* Update translation template.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdevelop/tdevtipofday<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevtipofday/
 
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdevelop/tdevelop<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevelop/
 
  +
* Update translation template.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdevelop/tdevdesigner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevdesigner/
 
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/tdewalletmanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdewalletmanager/
 
  +
* Update translation template.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/tdefilereplace<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdefilereplace/
 
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/superkaramba<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/superkaramba/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/ktimer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ktimer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/ksim<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ksim/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kregexpeditor<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kregexpeditor/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/klaptopdaemon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/klaptopdaemon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kjots<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kjots/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/khexedit2part<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit2part/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/khexedit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kgpg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kgpg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kedit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kedit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kdf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kdf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmtdewallet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmtdewallet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmlirc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmlirc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcharselectapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselectapplet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcharselect<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselect/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcalc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcalc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/ark<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ark/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kworldclock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kworldclock/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kweather<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kweather/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/ktux<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/ktux/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kteatime<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kteatime/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kodo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kodo/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kmoon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kmoon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/amor<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/amor/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/umbrello<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/umbrello/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdeio_svn<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdeio_svn/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdefile_diff<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_diff/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdecachegrind<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdecachegrind/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/spy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/spy/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kuiviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kuiviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kompare<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kompare/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kbugbuster<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbugbuster/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kbabel<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbabel/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/cervisia<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/cervisia/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/tdeio_sieve<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/tdeio_sieve/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/tdefile_palm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/tdefile_palm/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/tdeabc_slox<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/tdeabc_slox/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/scalixadmin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/scalixadmin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/libtdepim<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libtdepim/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/libkpgp<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libkpgp/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/libkleopatra<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libkleopatra/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/libkcal<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/libkcal/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kwatchgnupg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kwatchgnupg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/ktnef<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/ktnef/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kres_groupwise<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kres_groupwise/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/korn<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korn/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/korganizer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korganizer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kontact<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kontact/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/knotes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/knotes/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/knode<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/knode/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kmobile<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmobile/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kmail_text_calendar_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmail_text_calendar_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kmail<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmail/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kleopatra<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kleopatra/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kitchensync<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kitchensync/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kgantt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kgantt/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kdgantt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kdgantt/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kcmkontactnt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kcmkontactnt/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kcmkabconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kcmkabconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/karm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/karm/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kandy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kandy/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kalarm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kalarm/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/kaddressbook<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kaddressbook/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdepim/akregator<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/akregator/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/tdefileshare<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/tdefileshare/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kwifimanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kwifimanager/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/ksirc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/ksirc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/krfb<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/krfb/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/krdc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/krdc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kppplogview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kppplogview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kppp<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kppp/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kpf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kpf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kopete<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kopete/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/knewsticker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/knewsticker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kget<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kget/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdenetwork/kdict<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdenetwork/kdict/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/tdemid<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/tdemid/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/tdeio_audiocd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/tdeio_audiocd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/noatun<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/noatun/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/libkcddb<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/libkcddb/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/kscd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kscd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/krec<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/krec/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/kmix<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kmix/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/kaudiocreator<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kaudiocreator/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/kaboodle<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/kaboodle/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/juk<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/juk/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/audiocd_encoder_vorbis<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/audiocd_encoder_vorbis/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/audiocd_encoder_lame<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/audiocd_encoder_lame/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/artscontrol<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/artscontrol/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdemultimedia/artsbuilder<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdemultimedia/artsbuilder/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/timezones<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/timezones/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdetexteditor_isearch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_isearch/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdetexteditor_insertfile<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_insertfile/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdetexteditor_docwordcompletion<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_docwordcompletion/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdetexteditor_autobookmarker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdetexteditor_autobookmarker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdeprint<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdeprint/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdelibs<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdelibs/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/tdeio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/tdeio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/ppdtranslations<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/ppdtranslations/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/knotify<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/knotify/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/katepart<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/katepart/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdelibs/cupsdconf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdelibs/cupsdconf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/tdeiconedit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdeiconedit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/tdefile_png<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_png/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/tdefile_pdf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_pdf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/tdefile_jpeg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_jpeg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/tdefile_exr<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/tdefile_exr/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/libkscan<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/libkscan/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kviewviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kviewshell<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewshell/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kviewscannerplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewscannerplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kviewpresenterplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewpresenterplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kviewbrowserplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kviewbrowserplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kuickshow<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kuickshow/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/ksvgplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/ksvgplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/ksnapshot<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/ksnapshot/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kpovmodeler<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kpovmodeler/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kpdf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kpdf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kooka<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kooka/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kolourpaint<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kolourpaint/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kmrml<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kmrml/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kghostview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kghostview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kfax<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kfax/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kdvi<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kdvi/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kdjview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kdjview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kcoloredit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kcoloredit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kcmkamera<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kcmkamera/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegraphics/kcm_kviewcanvasconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kcm_kviewcanvasconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/twin4<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/twin4/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/lskat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/lskat/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/libtdegames<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libtdegames/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/libksirtet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libksirtet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ktuberling<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktuberling/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ktron<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktron/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kspaceduel<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kspaceduel/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksokoban<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksokoban/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksnake<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksnake/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksmiletris<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksmiletris/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kshisen<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kshisen/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksame<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksame/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kreversi<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kreversi/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kpoker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpoker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kpat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpat/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/konquest<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/konquest/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kolf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kolf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/knetwalk<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/knetwalk/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kmines<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmines/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kmahjongg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmahjongg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/klines<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/klines/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kjumpingcube<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kjumpingcube/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kgoldrunner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kgoldrunner/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kenolaba<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kenolaba/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kbounce<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbounce/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kblackbox<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kblackbox/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kbattleship<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbattleship/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kbackgammon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbackgammon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/katomic<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/katomic/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/atlantik<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/atlantik/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/tdefile_kig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/tdefile_kig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/libtdeedu<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/libtdeedu/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kwordquiz<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kwordquiz/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kvoctrain<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kvoctrain/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kverbos<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kverbos/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kturtle<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kturtle/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/ktouch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/ktouch/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kstars<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kstars/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kpercentage<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kpercentage/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kmplot<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kmplot/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/klettres<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klettres/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/klatin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klatin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kiten<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kiten/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/khangman<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/khangman/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kgeography<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kgeography/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/keduca<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/keduca/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kbruch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kbruch/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kanagram<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kanagram/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kalzium<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kalzium/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/blinken<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/blinken/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/twin_lib<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin_lib/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/twin_clients<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin_clients/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/twin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdmgreet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdmgreet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdmconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdmconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tderandr<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tderandr/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdeprintfax<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeprintfax/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdeio_print<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_print/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdeio_media<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_media/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdeio_man<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_man/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdehtmlkttsd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdehtmlkttsd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdefontinst<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdefontinst/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/tdedebugdialog<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdedebugdialog/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/quicklauncher<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/quicklauncher/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/privacy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/privacy/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/nsplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/nsplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/naughtyapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/naughtyapplet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/libtaskmanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/libtaskmanager/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kxkb<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kxkb/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kthememanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kthememanager/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/ksystraycmd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksystraycmd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/ksysguard<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksysguard/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/ksplashthemes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksplashthemes/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/ksmserver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksmserver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kpersonalizer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kpersonalizer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kpager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kpager/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/konsole<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/konsole/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/konqueror<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/konqueror/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kmenuedit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kmenuedit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/klipper<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/klipper/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kicker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kicker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/khotkeys<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/khotkeys/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/khelpcenter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/khelpcenter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kfindpart<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kfindpart/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kdialog<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdialog/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kdesktop<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdesktop/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kdcop<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdcop/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcontrol<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcontrol/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmxinerama<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmxinerama/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmtwinrules<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtwinrules/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmtwindecoration<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtwindecoration/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmtdeio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtdeio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmtdednssd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtdednssd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmtaskbar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmtaskbar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmsmserver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmsmserver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmsmartcard<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmsmartcard/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmsamba<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmsamba/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmnic<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmnic/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmmedia<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmmedia/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmlayout<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmlayout/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkwm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkwm/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkurifilt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkurifilt/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkonsole<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkonsole/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkonqhtml<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkonqhtml/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkonq<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkonq/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkicker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkicker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkeys<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkeys/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmkded<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkded/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcminput<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcminput/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcminfo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcminfo/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmicons<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmicons/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmiccconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmiccconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmhtmlsearch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmhtmlsearch/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmdisplayconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmdisplayconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmcss<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcss/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmcrypto<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcrypto/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmcomponentchooser<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcomponentchooser/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmcolors<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcolors/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmcgi<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmcgi/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmbackground<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmbackground/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmarts<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmarts/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kcmaccess<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmaccess/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kate<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kate/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kasbarextension<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kasbarextension/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kappfinder<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kappfinder/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/kaccess<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kaccess/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdebase/filetypes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/filetypes/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/twin_art_clients<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/twin_art_clients/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/tdepartsaver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/tdepartsaver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/kxsconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/kxsconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/klock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/klock/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/secpolicy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/secpolicy/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/kuser<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kuser/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/ksysv<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/ksysv/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/kpackage<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kpackage/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/knetworkconf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/knetworkconf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/kdat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kdat/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/kcron<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kcron/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeadmin/kcmlilo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeadmin/kcmlilo/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - wakeup<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-wakeup/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - nexscope<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-nexscope/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - ffrs<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-ffrs/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - dub<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-dub/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - alsaplayerui<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-alsaplayerui/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/ksig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/ksig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - news<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-news/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - metabar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-metabar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - mediaplayer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-mediaplayer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - delicious<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-delicious/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - webarchiver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-webarchiver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - validators<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-validators/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - uachanger<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-uachanger/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - tdehtmlsettings<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-tdehtmlsettings/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - rellinks<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-rellinks/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - minitools<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-minitools/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - imgallery<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-imgallery/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - fsview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-fsview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - domtreeviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-domtreeviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - dirfilter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-dirfilter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - crashes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-crashes/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - babelfish<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-babelfish/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - autorefresh<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-autorefresh/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kicker - ktimemon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-ktimemon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - xmltools<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-xmltools/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - textfilter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-textfilter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - snippets<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-snippets/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - openheader<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-openheader/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - modeline<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-modeline/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - make<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-make/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - kjswrapper<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-kjswrapper/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - insertcommand<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-insertcommand/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - htmltools<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-htmltools/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - helloworld<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-helloworld/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - fll_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - fll_initplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_initplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - filetemplates<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-filetemplates/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - cppsymbolviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-cppsymbolviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kaddressbook - kworldclock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-kworldclock/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kaddressbook - gmx<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-gmx/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/atlantikdesigner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/atlantikdesigner/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kttsd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kttsd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/ksayit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/ksayit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kmouth<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmouth/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kmousetool<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmousetool/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kmag<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmag/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kbstateapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kbstateapplet/
 
 
* Update translation template.
 
* Update translation template.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdewebdev/quanta<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/quanta/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdewebdev/kxsldbg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kxsldbg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdewebdev/kommander<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kommander/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdewebdev/klinkstatus<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/klinkstatus/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdewebdev/kimagemapeditor<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kimagemapeditor/
 
* Add translation templates for tdewebdev.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdevelop/tdevtipofday<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevtipofday/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdevelop/tdevelop<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevelop/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdevelop/tdevdesigner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevdesigner/
 
* Add translation templates for tdevelop.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/umbrello<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/umbrello/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdeio_svn<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdeio_svn/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdefile_ts<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_ts/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdefile_po<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_po/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdefile_diff<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_diff/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdefile_cpp<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdefile_cpp/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/tdecachegrind<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdecachegrind/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/spy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/spy/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kuiviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kuiviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kstartperf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kstartperf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kres_bugzilla<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kres_bugzilla/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kompare<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kompare/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kbugbuster<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbugbuster/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/kbabel<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kbabel/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/cvsservice<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/cvsservice/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdesdk/cervisia<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/cervisia/
 
* Add translation templates for tdesdk.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/twin_art_clients<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/twin_art_clients/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/tdestyle_phase_config<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/tdestyle_phase_config/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/tdepartsaver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/tdepartsaver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/kxsconfig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/kxsconfig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeartwork/klock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/klock/
 
* Add translation templates for tdeartwork.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - txt<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-txt/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - mhtml<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-mhtml/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - lnk<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-lnk/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - html<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-html/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - folder<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-folder/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - desktop<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-desktop/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/tdefile - cert<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/tdefile-cert/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/rename - image<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/rename-image/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/rename - audio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/rename-audio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - wavecapture<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-wavecapture/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - wakeup<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-wakeup/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - tyler<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-tyler/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - tippecanoe<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-tippecanoe/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - synaescope<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-synaescope/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - pitchablespeed<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-pitchablespeed/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - nexscope<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-nexscope/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - lyrics<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-lyrics/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - ffrs<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-ffrs/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - dub<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-dub/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - charlatanui<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-charlatanui/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/noatun - alsaplayerui<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/noatun-alsaplayerui/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/ksig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/ksig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - news<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-news/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - metabar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-metabar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - mediaplayer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-mediaplayer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konqsidebar - delicious<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konqsidebar-delicious/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - webarchiver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-webarchiver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - validators<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-validators/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - uachanger<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-uachanger/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - tdehtmlsettings<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-tdehtmlsettings/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - searchbar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-searchbar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - rellinks<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-rellinks/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - minitools<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-minitools/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - microformat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-microformat/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - kuick-kcm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-kuick-kcm/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - kuick<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-kuick/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - imgallery<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-imgallery/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - fsview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-fsview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - domtreeviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-domtreeviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - dirfilter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-dirfilter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - crashes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-crashes/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - babelfish<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-babelfish/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - autorefresh<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-autorefresh/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - ark<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-ark/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/konq - akregator<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/konq-akregator/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kicker - mediacontrol<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-mediacontrol/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kicker - ktimemon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-ktimemon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kicker - kolourpicker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-kolourpicker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kicker - kmathapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-kmathapplet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kicker - kbinaryclock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kicker-kbinaryclock/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - xmltools<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-xmltools/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - xmlcheck<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-xmlcheck/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - textfilter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-textfilter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - tabbarextension<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-tabbarextension/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - snippets<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-snippets/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - pybrowse<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-pybrowse/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - openheader<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-openheader/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - modeline<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-modeline/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - make<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-make/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - kjswrapper<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-kjswrapper/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - insertcommand<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-insertcommand/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - htmltools<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-htmltools/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - helloworld<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-helloworld/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - fll_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - fll_initplugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-fll_initplugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - filetemplates<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-filetemplates/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kate - cppsymbolviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kate-cppsymbolviewer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kaddressbook - kworldclock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-kworldclock/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/kaddressbook - gmx<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/kaddressbook-gmx/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaddons/atlantikdesigner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaddons/atlantikdesigner/
 
* Add translation templates for tdeaddons.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/libKTTSD<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/libkttsd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kttsd<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kttsd/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/ksayit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/ksayit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kmouth<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmouth/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kmousetool<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmousetool/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kmag<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kmag/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeaccessibility/kbstateapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeaccessibility/kbstateapplet/
 
* Add translation templates for tdeaccessibility.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/twin4<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/twin4/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/lskat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/lskat/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/libtdegames<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libtdegames/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/libksirtet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/libksirtet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ktuberling<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktuberling/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ktron<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ktron/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kspaceduel<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kspaceduel/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksokoban<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksokoban/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksnake<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksnake/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksmiletris<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksmiletris/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksirtet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksirtet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kshisen<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kshisen/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/ksame<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/ksame/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kreversi<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kreversi/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kpoker<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpoker/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kpat<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kpat/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/konquest<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/konquest/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kolf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kolf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/knetwalk<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/knetwalk/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kmines<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmines/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kmahjongg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kmahjongg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/klines<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/klines/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/klickety<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/klickety/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kjumpingcube<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kjumpingcube/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kgoldrunner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kgoldrunner/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kfouleggs<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kfouleggs/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kenolaba<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kenolaba/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kbounce<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbounce/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kblackbox<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kblackbox/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kbattleship<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbattleship/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kbackgammon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kbackgammon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/katomic<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/katomic/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/kasteroids<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/kasteroids/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdegames/atlantik<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegames/atlantik/
 
* Add translation templates for tdegames.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/tdefile_kig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/tdefile_kig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/tdefile_drgeo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/tdefile_drgeo/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/libtdeedu<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/libtdeedu/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kwordquiz<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kwordquiz/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kvoctrain<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kvoctrain/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kverbos<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kverbos/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kturtle<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kturtle/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/ktouch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/ktouch/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kstars<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kstars/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kpercentage<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kpercentage/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kmplot<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kmplot/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/klettres<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klettres/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/klatin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/klatin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kiten<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kiten/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kig<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kig/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/khangman<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/khangman/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kgeography<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kgeography/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/keduca<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/keduca/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kbruch<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kbruch/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kanagram<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kanagram/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/kalzium<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/kalzium/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeedu/blinken<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeedu/blinken/
 
* Add translation templates for tdeedu.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/tdewalletmanager<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdewalletmanager/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/tdessh<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdessh/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/tdelirc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdelirc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/tdefilereplace<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdefilereplace/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/superkaramba<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/superkaramba/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/ktimer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ktimer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/ksim<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ksim/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kregexpeditor<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kregexpeditor/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kmilod<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilod/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kmilo_thinkpad<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_thinkpad/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kmilo_powerbook<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_powerbook/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kmilo_kvaio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_kvaio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kmilo_generic<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_generic/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kmilo_delli8k<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kmilo_delli8k/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/klaptopdaemon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/klaptopdaemon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kjots<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kjots/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/khexedit2part<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit2part/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/khexedit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/khexedit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kgpg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kgpg/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kfloppy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kfloppy/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kedit<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kedit/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kdf<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kdf/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmthinkpad<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmthinkpad/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmtdewallet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmtdewallet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmlirc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmlirc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmlaptop<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmlaptop/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcmkvaio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcmkvaio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcharselectapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselectapplet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcharselect<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcharselect/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/kcalc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kcalc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/irkick<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/irkick/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdeutils/ark<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/ark/
 
* Add translation templates for tdeutils.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kworldclock<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kworldclock/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kweather<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kweather/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/ktux<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/ktux/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kteatime<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kteatime/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kodo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kodo/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kmoon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kmoon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/kfifteenapplet<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kfifteenapplet/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: tdetoys/amor<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/amor/
 
* Add translation templates for tdetoys.
 
* Update translation files tdegraphics / tdeiconedit<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_xpm<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_xbm<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_tiff<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_tga<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_rgb<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_ps<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_pnm<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_png<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_pdf<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_pcx<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_jpeg<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_ico<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_gif<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_exr<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_dvi<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_dds<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / tdefile_bmp<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / libkscan<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / libkfaximgage<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kviewviewer<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kviewshell<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kviewscannerplugin<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kviewpresenterplugin<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kvieweffectsplugin<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kviewcanvas<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kviewbrowserplugin<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kview_scale<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kview<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kuickshow<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / ksvgplugin<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / ksnapshot<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kruler<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kpovmodeler<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kpdf<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kooka<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kolourpaint<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kmrml<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kghostview<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kgamma<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kfaxview<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kfax<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kdvi<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kdjview<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kcoloredit<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kcmkamera<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kcm_kviewviewerpluginsconfig<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kcm_kviewpluginsconfig<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kcm_kviewgeneralconfig<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Update translation files tdegraphics / kcm_kviewcanvasconfig<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Add translation templates for tdegraphics.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add translation templates for tdenetwork.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add translation templates for tdemultimedia.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add translation templates for tdepim.
 
* Update translation files<br/>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<br/>with removing / restoring a semicolon.
 
* Update translation files<br/>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<br/>with removing / restoring a semicolon.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Updated translation templates.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add translation templates for tdebase.<br/>Add missing header in PO files.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add translation templates for tdelibs.
 
* Rename translation contexts<br/>+ QXml => TQXml<br/>+ QFont => TQFont<br/>+ QAccel => TQAccel<br/>+ QMessageBox => TQMessageBox<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2618 #2618]
 
* Translated using Weblate (Czech)<br/>Currently translated at 100.0% (15 of 15 strings)<br/>Translation: tdebase/twin_lib<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin_lib/cs/
 
* Translated using Weblate (Czech)<br/>Currently translated at 98.3% (181 of 184 strings)<br/>Translation: tdebase/twin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin/cs/
 
* Translated using Weblate (Czech)<br/>Currently translated at 98.9% (184 of 186 strings)<br/>Translation: tdebase/kcmkeys<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmkeys/cs/
 
* Small fixes not related to translations<br/>+ repair damaged UTF-8 characters<br/>+ remove incorrect header lines<br/>+ delete a badly named file
 
   
 
= libraries =
 
= libraries =
 
== libkdcraw ==
 
== libkdcraw ==
  +
* Merge translation files from master branch.
* Fix FTBFS with stricter C++11
 
  +
* Add CMakeL10n rules.<br/>Create translation template.
   
== libksquirrel ==
+
== libkexiv2 ==
  +
* conversion to the cmake building system
* Fix FTBFS with stricter C++11
 
   
== libtdeldap ==
+
== libkipi ==
  +
* Merge translation files from master branch.
* Fix access to ldap configuration files on non-controller (workstation) systems
 
  +
* Add CMakeL10n rules.<br/>Create translation template.
* 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.<br/>This allows build with gcc hidden visibility.
 
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.
 
* Add includes to UI files to resolve FTBFS.
 
* Update CMake rules<br/>+ Set the library version to 1.0.0.<br/>(partially
 
 
* conversion to the cmake building system
 
* conversion to the cmake building system
   
== libtqt-perl ==
+
== kipi-plugins ==
  +
* Merge translation files from master branch.
* Fixed incorrect TTQ rename (TTQ -> TQ)
 
  +
* Add CMakeL10n rules.<br/>Create translation templates.
* 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<br/>2424.
 
   
 
= applications =
 
= applications =
 
== abakus ==
 
== abakus ==
  +
* Merge translation files from master branch.
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/abakus<br/>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<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Update translation templates.<br/>Adaptation to the changed macro naming concept.
 
* Added translation using Weblate (Czech)
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== amarok ==
 
== amarok ==
 
* Merge translation files from master branch.
 
* Merge translation files from master branch.
* Update translation template.
 
* Fix FTBFS caused by latest mysql library.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/amarok<br/>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<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Fixed typedef-related warnings from compiler.
 
* Fix FTBFS with stricter C++11
 
   
 
== basket ==
 
== basket ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/basket<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/basket/
 
* Update translation template.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Fix automake build dependencies
 
   
  +
== compizconfig-backend-tdeconfig ==
== bibletime ==
 
  +
* Add KDE_EXPORT to public library symbols.<br/>This allows build with gcc hidden visibility.
* Add CMakeL10n rules.<br/>Update translation template.
 
  +
* conversion to the cmake building system
* Fix FTBFS due to improper automoc
 
 
== desktop-effects-tde ==
 
* Update CMakeL10n rules<br/>+ Add the X-POT option to include the common texts to template.
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Rename DesktopEffectsKDE => DesktopEffectsTDE
 
* Fix python-tqt module import.<br/>Qt3 => TQt Conversion.
 
* Drop Qt4 / KDE4 parts.
 
   
 
== digikam ==
 
== digikam ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/digikam<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/digikam/
 
  +
* Fix FTBFS due libkdcraw include directory.
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/digikam<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/digikam/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Fix inadvertently renamed Orientation => Qt::Orientation.
 
   
 
== dolphin ==
 
== dolphin ==
  +
* Merge translation files from master branch.
* 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]
 
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/dolphin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/dolphin/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
 
* Add CMakeL10n rules.<br/>Update translation template.<br/>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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/filelight<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/filelight/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: /<br/>Translate-URL:
 
* Add CMakeL10n rules.<br/>Create translation template.<br/>Modify CMake rules for translations<br/>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<br/>2424.
 
* Fix FTBFS with stricter C++11
 
   
 
== gtk-qt-engine ==
 
== gtk-qt-engine ==
  +
* Merge translation files from master branch.
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/gtk-qt-engine<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gtk-qt-engine/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/gtk-qt-engine<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gtk-qt-engine/
 
* Add CMakeL10n rules.<br/>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<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 ==
 
* Add CMakeL10n rules.
 
* Workaround for parallel build
 
   
 
== gwenview-i18n ==
 
== gwenview-i18n ==
  +
* Merge translation files from master branch.
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/gwenview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/gwenview/
 
* Update translation template.
 
* Rename Venda translation to "ve".
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/gwenview<br/>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 ==
 
== k3b-i18n ==
  +
* Merge translation files from master branch.
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k3b - setup<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-setup/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k3b - lib<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-lib/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k3b - device<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-device/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k3b<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k3b - lib<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-lib/
 
* Update translation files<br/>Updated by Aktualizovat PO soubory aby odpovídaly těm POT (msgmerge) hook in Weblate.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add translation templates.<br/>Modify CMake rules for translations<br/>to make them independent of languages.
 
* Translated using Weblate (Czech)<br/>Currently translated at 91.0% (633 of 695 strings)<br/>Translation: applications/k3b-lib<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-lib/cs/
 
* Translated using Weblate (Czech)<br/>Currently translated at 100.0% (45 of 45 strings)<br/>Translation: applications/k3b-device<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b-device/cs/
 
* Translated using Weblate (Czech)<br/>Currently translated at 87.7% (1542 of 1757 strings)<br/>Translation: applications/k3b<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k3b/cs/
 
   
 
== k9copy ==
 
== k9copy ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k9copy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k9copy/
 
  +
* Fix FTBFS for build with --enable-final.
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/k9copy<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/k9copy/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Translated using Weblate (Czech)<br/>Currently translated at 63.4% (217 of 342 strings)<br/>Translation: applications/k9copy<br/>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<br/>2424.
 
   
 
== kaffeine ==
 
== kaffeine ==
* Remove 'xx' translation file.
+
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kaffeine<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kaffeine/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kaffeine<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kaffeine/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== kasablanca ==
 
== kasablanca ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kasablanca<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kasablanca/
 
 
* Update translation template.
 
* Update translation template.
  +
* Fixed cppcheck errors in ftplib.cpp. This solves #3.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kasablanca<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kasablanca/
 
  +
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.
* Add CMakeL10n rules.<br/>Update translation template.
 
  +
* Add includes to UI files to resolve FTBFS.
* Removed unnecessary executable flag.
 
  +
* conversion to the cmake building system<br/>Removed cpp files generated from ui files.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kasablanca/issues/1 #1]
* Fix FTBFS due to improper automoc
 
   
 
== katapult ==
 
== katapult ==
  +
* Merge translation files from master branch.
* 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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== kbarcode ==
 
== kbarcode ==
 
* Merge translation files from master branch.
 
* 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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Fixed typedef-related warnings from compiler.
 
* related to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2424 #2424]<br/>Application desktop files should not contain icon extension
 
   
 
== kbfx ==
 
== kbfx ==
  +
* Merge translation files from master branch.
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbfx<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbfx/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbfx<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbfx/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Manually applied changes from commit 88ae250af0.
 
* Add includes to UI files to resolve FTBFS.
 
* Fix inadvertly renamed QT_THREAD_SUPPORT
 
   
 
== kbibtex ==
 
== kbibtex ==
  +
* Merge translation files from master branch.
* Fix build with standalone libiconv.
 
  +
* Add KDE_EXPORT to public library symbols.<br/>This fix build with gcc hidden visibility.
* 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
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbibtex<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbibtex/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kbibtex<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kbibtex/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
   
 
== kbiff ==
 
== kbiff ==
 
* Merge translation files from master branch.
 
* Merge translation files from master branch.
* Convert translation to UTF-8.
 
* 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Removed obsolete Qt2's TQList/TQListIterator classes and replaced<br/>with TQt3's TQPtrList/TQPtrListIterator ones.
 
* Convert zh_TW translation from Big5 to UTF-8.
 
* Change from TQFont::defaultFont to TQApplication::font<br/>The definition of -UTQT_NO_COMPAT is no longer needed.
 
* cmake: Add options WITH_SSL and WITH_MLED<br/>Fix test for SSL => is not needed, because is used KSSL from tdelibs<br/>Fix test for ASUS Mail LED support in ACPI
 
* correct HAVE_SYS_SELECT_H and HAVE_PATHS_H
 
* some cleanup
 
* cmake conversion
 
   
== kbookreader ==
+
== kchmviewer ==
  +
* Added linking to kdeextra library.<br/>This resolve FTBFS on some systems.<br/>Because the kdeextra library is linked as static, there<br/>is no reason to be installed as a separate library.
* Use common CMake tests.
 
* 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.
 
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.
  +
* Fix FTBFS for build without TDE integration.
* Add includes to UI files to resolve FTBFS.
 
  +
* Fix FTBFS for build with builtin libchm.
* conversion to the cmake buildidng system
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
== kchmviewer ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kchmviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kchmviewer/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kchmviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kchmviewer/
 
* Rename Dutch translation to "nl".
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kchmviewer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kchmviewer/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Removed unnecessary executable flag.
 
* Fixed typedef-related warnings from compiler.
 
 
== kcmautostart ==
 
* Use common CMake tests.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kcm-autostart<br/>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<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
* conversion to the cmake building system
 
* conversion to the cmake building system
   
== kcmldap ==
+
== kcmldapcontroller ==
* Use common CMake tests.
 
* Update translation template.
 
* Fix krb5 detection without pkgconfig file.
 
 
* Update translation template.
 
* Update translation template.
 
* Added controlled conversions to char* instead of automatic ascii conversions.
 
* Added controlled conversions to char* instead of automatic ascii conversions.
  +
* cmake: Add detection of slapi library without base slapi.so.
* Fix invalid data type for the "hidden" property.<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.
* Fix FTBFS due to improper automoc.
 
 
* Add includes to UI files to resolve FTBFS.
 
* Add includes to UI files to resolve FTBFS.
* cmake: Add krb5 library detection.<br/>Add krb5 include directories.
 
 
* conversion to the cmake building system
 
* conversion to the cmake building system
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== kcmldapcontroller ==
 
* Update translation template.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== kcmldapmanager ==
 
== kcmldapmanager ==
  +
* Added controlled conversions to char* instead of automatic ascii conversions.
* Update translation template.
 
  +
* Add includes to UI files to resolve FTBFS.
* Add CMakeL10n rules.<br/>Create translation template.
 
  +
* conversion to the cmake building system
 
== kcpuload ==
 
* Fix FTBFS on FreeBSD<br/>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.<br/>Create translation template.<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=1043 #1043]
 
* cmake: Fix the installation of the icons used in the application
 
* cmake conversion kcpuload
 
   
 
== kdbg ==
 
== kdbg ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdbg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/
 
 
* Update translation template.
 
* Update translation template.
  +
* Fix call of a member function dependent on a template parameter.<br/>We must make the access of 'push_back' dependent, too. Otherwise, name<br/>lookup does not find the name. Earlier compilers were more permissive and<br/>did find the name.<br/>(cherry picked from upstream commit 5f55847d441aba7742417e78c3b4fbe8344acc5e)
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdbg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/
 
  +
* Fix parsing of disassembly produced by gdb 7.1.<br/>Since gdb 7.1, the address does not start at the beginning of a line, and<br/>it can be prefixed by a pointer => that indicates the current instruction.<br/>(cherry picked from upstream commit 5c5f34852d30337ef7c23ef4e88d50ecee1c0703)
* Add CMakeL10n rules.<br/>Create translation template.
 
  +
* Grok gdb 7's <incomplete sequence> marker in strings.<br/>When a string ends in an incomplete multi-byte sequence, gdb adds an<br/><incomplete sequence...> fragment to the end of the string. Previously,<br/>this resulted in a parse error and incomplete variable information.<br/>Reported by Kevin Lemay.<br/>(cherry picked from upstream commit 03da8a5ec97c8c7b125b2bd453d2f1c3a018d477)
* Fix FTBFS due to improper automoc
 
  +
* Fix assembler code display with gdb 7.1 and later.<br/>The syntax of the 'disassemble' command changed in gdb 7.1: it now requires<br/>a comma between the two address expressions. Previously, KDbg showed an<br/>error message instead of assembler code when a plus in front of a source<br/>code line was clicked.<br/>Reported by Gerfried Essler.<br/>This reverts part of the previous commit.<br/>(cherry picked from upstream commit b6ee6a035abe41f7c0d59fbd830e895b6edeb748)
  +
* Drop gdb versionning.<br/>Cherry picked and adapted from commit 0efc808f from the original author<br/>of kdbg, code available at https://github.com/j6t/kdbg under GPL 2.0"<br/>Quote from the author:<br/>In early days of KDbg, it was important to use a suitable command to load<br/>a core file. This was before gdb 4.16. To pick the right command, the<br/>version number was parsed from gdb's greeting.<br/>At least with modern gdb the regular expression does not match anymore.<br/>So let's assume that nobody is using ancient gdb anymore, and always use<br/>the modern command.
  +
* Merge translation files from master branch.
  +
* drop some qt2 deprecated
  +
  +
== kdbusnotification ==
  +
* conversion to the cmake building system
   
 
== kdiff3 ==
 
== kdiff3 ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdiff3<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdiff3 - plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3-plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdiff3 - diff_ext<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3-diff_ext/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdiff3<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdiff3/
 
* Add CMakeL10n rules.<br/>Update translation templates.
 
* Remove incorrect header lines from PO files
 
* Removed unnecessary executable flag.
 
   
 
== kdirstat ==
 
== kdirstat ==
  +
* Merge translation files from master branch.
* 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/
 
  +
== kdpkg ==
  +
* Merge translation files from master branch.
 
* Update translation template.
 
* Update translation template.
  +
* Fix loading of package contents when package is selected through dialog box.
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
  +
* Fix hardcoded installation path.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kdpkg/issues/1 #1]
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add CMakeL10n rules.<br/>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.<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.
* Removed obsolete TQCollection and replaced with TQPtrCollection.<br/>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
 
* conversion to the cmake building system
 
== kdpkg ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdpkg - install<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdpkg-install/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kdpkg<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdpkg/
 
* Update translation template.
 
* Update translation files kdpkg - install<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.
 
* Add CMakeL10n rules.<br/>Update translation template.
 
   
 
== keep ==
 
== keep ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/keep<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/keep/
 
  +
* Add includes to UI files to resolve FTBFS.
* Update translation template.
 
  +
* 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/keep<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/keep/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== kerberostray ==
 
== kerberostray ==
  +
* cmake: Fix detection of older Heimdal versions.
* Update translation template.
 
  +
* Add includes to UI files to resolve FTBFS.
* Add CMakeL10n rules.<br/>Create translation template.
 
  +
* conversion to the cmake building system
   
 
== kerry ==
 
== kerry ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kerry - kcm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry-kcm/
 
  +
* Add includes to UI files to resolve FTBFS.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kerry<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry/
 
  +
* conversion to the cmake building system
  +
* Merge translation files from master branch.
 
* Update translation template.
 
* Update translation template.
  +
* fix issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kerry/issues/2 #2]
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kerry - kcm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry-kcm/
 
  +
* remove KDE_IS_VERSION
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kerry<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kerry/
 
  +
* silence some glib warnings, g_type_init() is deprecated since glib-2.36
* Add CMakeL10n rules.<br/>Create translation template.
 
  +
* Fixed missing end of line in kdError, which was calling assert failing<br/>backtrace to be displayed at run time.
   
 
== kftpgrabber ==
 
== kftpgrabber ==
  +
* Fixed lint messages related to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2409 #2409]
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kftpgrabber<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kftpgrabber/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kftpgrabber<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kftpgrabber/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== 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 template.
 
* 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/
 
* Fix charset in translation.
 
* 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/
 
* Add CMakeL10n rules.<br/>Update translation templates.
 
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
 
== kile ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kile<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kile/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kile<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kile/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== kima ==
 
== kima ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kima<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kima/
 
 
* Update translation template.
 
* Update translation template.
  +
* Add includes to UI files to resolve FTBFS.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kima<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kima/
 
  +
* conversion to the cmake building system
* Add CMakeL10n rules.<br/>Update translation template.
 
   
 
== kiosktool ==
 
== kiosktool ==
  +
* Merge translation files from master branch.
* Use common CMake tests.
 
* 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>Create translation template.<br/>Modify CMake rules for translations<br/>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<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.
 
* 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.
 
* Add CMakeL10n rules.<br/>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.<br/>Create translation template.<br/>Add CMake rules to build translations.
 
* Add includes to UI files to resolve FTBFS
 
* conversion to the cmake building system
 
   
 
== kmplayer ==
 
== kmplayer ==
* Remove 'xx' translation file.
+
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kmplayer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmplayer/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kmplayer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmplayer/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Fix automake build dependencies<br/>Workaround for parallel build
 
* Relate to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2424 #2424]
 
 
== kmyfirewall ==
 
* Update translation template.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== kmymoney ==
 
== kmymoney ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kmymoney<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kmymoney<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Use the context attribute in the UI files<br/>to determine the translation context.
 
* Translated using Weblate (Czech)<br/>Currently translated at 88.3% (2354 of 2663 strings)<br/>Translation: applications/kmymoney<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/cs/
 
* Removed unnecessary executable flag.
 
   
 
== knemo ==
 
== knemo ==
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knemo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knemo/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knemo - kcm<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knemo-kcm/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knemo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knemo/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== knetload ==
 
* Use common CMake tests.
 
* 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>Create translation template.<br/>Modify CMake rules for translations<br/>to make them independent of languages.
 
* conversion to cmake build system
 
* Removed unnecessary executable flag.
 
 
== 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>Create translation template.<br/>Modify CMake rules for translations<br/>to make them independent of languages.
 
* Fix structure of directories
 
 
* Add includes to UI files to resolve FTBFS.
 
* Add includes to UI files to resolve FTBFS.
  +
* cmake: Search for ifconfig, route, and iwconfig<br/>instead of using predefined paths.
 
* conversion to the cmake building system
 
* conversion to the cmake building system
   
 
== knetworkmanager8 ==
 
== knetworkmanager8 ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knetworkmanager8<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetworkmanager8/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knetworkmanager8<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knetworkmanager8/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
   
 
== knights ==
 
== knights ==
  +
* Merge translation files from master branch.
* 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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knights<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/
 
* Update translation template.
 
* Removed obsolete Qt2's TQList/TQListIterator classes and replaced<br/>with TQt3's TQPtrList/TQPtrListIterator ones.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knights<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/
 
* 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.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/knights<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/
 
* Update build rules for documentation:<br/>+ Removed French documentation because it contains nothing.<br/>+ Modified automake rules for documentation in subdirectories.<br/>+ Added cmake rule for installing documentation.
 
* arts is required not requested as optional
 
* 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/knights<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/knights/
 
* Add CMakeL10n rules.<br/>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<br/>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.<br/>Create translation template.<br/>Add CMake rules to build translations.
 
* Add a man page taken from tde-packaging.
 
* Fix incorrect use of TQString() inside i18n().<br/>Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.
 
* Removed obsolete Qt2's ASSERT and replace with Q_ASSERT.<br/>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<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.
 
* 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.
 
* Updated translation templates.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add CMakeL10n rules.<br/>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<br/>2424.
 
 
== 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>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.
 
* 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<br/>keximdb, indirectly.
 
* Switch from strstream to sstream.
 
   
 
== koffice-i18n ==
 
== koffice-i18n ==
 
* Merge translation files from master branch.
 
* Merge translation files from master branch.
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - thesaurus_tool<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-thesaurus_tool/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kword<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kword/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kugar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kugar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kspreadinsertcalendar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadinsertcalendar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kspreadcalc_calc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadcalc_calc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kspread<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspread/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kscreenshot_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscreenshot_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kscan_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscan_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kpresenter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kpresenter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kplato<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kplato/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - koshell<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koshell/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - koproperty<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koproperty/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kofficefilters<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kofficefilters/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kivio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kivio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kformula<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformula/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kformdesigner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformdesigner/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kexi<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kexi/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kchart<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kchart/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - karbon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-karbon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - example<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-example/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - chalk<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-chalk/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - tdefile_koffice<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_koffice/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - thesaurus_tool<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-thesaurus_tool/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - tdefile_ooo<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_ooo/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - tdefile_gnumeric<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_gnumeric/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - tdefile_abiword<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-tdefile_abiword/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kword<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kword/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kugar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kugar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kthesaurus<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kthesaurus/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kspreadinsertcalendar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadinsertcalendar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kspreadcalc_calc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspreadcalc_calc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kspread<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kspread/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kscreenshot_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscreenshot_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kscan_plugin<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kscan_plugin/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kpresenter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kpresenter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kplato<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kplato/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kounavail<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kounavail/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - koshell<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koshell/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - koproperty<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koproperty/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kofficefilters<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kofficefilters/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - koconverter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-koconverter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kivio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kivio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kformula<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformula/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kformdesigner<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kformdesigner/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kexi<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kexi/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - kchart<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-kchart/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - karbon<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-karbon/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - example<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-example/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice - chalk<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice-chalk/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/koffice<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/koffice/
 
* Add translation template.
 
* Translated using Weblate (Czech)<br/>Currently translated at 75.8% (2393 of 3153 strings)<br/>Translation: applications/koffice - kspread<br/>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.<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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>Create translation template.<br/>Modify CMake rules for translations<br/>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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kopete-otr<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kopete-otr/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kopete-otr<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kopete-otr/
 
* Add CMakeL10n rules.<br/>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.<br/>Create translation template.<br/>Add CMake rules to build translations.
 
* conversion to the cmake building system
 
* Change file permissions to remove execute bit
 
   
 
== kpilot ==
 
== kpilot ==
* Use common CMake tests.
+
* Fixed support for tests in cmake.
* 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 template.
 
* Fix FTBFS from commit c2446367.
 
* 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/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Migration to standard TDE CMake build system.<br/>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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kpowersave<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpowersave/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kpowersave<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kpowersave/
 
* Add CMakeL10n rules.<br/>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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krecipes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krecipes/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krecipes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krecipes/
 
* Fix empty translation.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krecipes<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krecipes/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Removed unnecessary executable flag.
 
* Fixed typedef-related warnings from compiler.
 
 
== 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 template.
 
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
* Fix inifinite loop while parsing subdirs.<br/>Improved clarity of the original while loop.
 
* Update translation files<br/>Updated by Update PO files to match POT (msgmerge) hook in Weblate.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.<br/>Fix unnecessary use of TQString() over i18n().<br/>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 [https://bugs.trinitydesktop.org/show_bug.cgi?id=2424 #2424]
 
 
== krusader ==
 
* Merge translation files from master branch.
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krusader<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krusader/
 
* Update translation template.
 
* Fix empty translation.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/krusader<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/krusader/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Removed unnecessary executable flag.
 
* Removed extension from icon name in desktop file. This relates to bug<br/>2424.
 
 
== 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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
== 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Remove autoResize from CheckAllSensors check box<br/>The definition of -UTQT_NO_COMPAT 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.
 
* cmake: Cleanup installation of the application icon
 
* convert to cmake building system
 
* Fix FTBFS due to improper automoc
 
   
 
== kshowmail ==
 
== kshowmail ==
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kshowmail<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshowmail/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kshowmail<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshowmail/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
== kshutdown ==
 
* Better solution for previous commit is used.
 
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.
 
* Use common CMake tests.
 
* 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/kshutdown<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshutdown/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kshutdown<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kshutdown/
 
* Add CMakeL10n rules.<br/>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<br/>because this is not part of the r14.0.x branch.
 
* 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
 
 
== ksquirrel ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ksquirrel<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksquirrel/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ksquirrel<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksquirrel/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
== kstreamripper ==
 
* Update translation template.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== ksystemlog ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ksystemlog<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksystemlog/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ksystemlog<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksystemlog/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
== ktechlab ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ktechlab<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktechlab/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ktechlab<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktechlab/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== ktorrent ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ktorrent<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktorrent/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/ktorrent<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ktorrent/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Fixed corrupted japanese translations. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2952 #2952]
 
 
== kvirc ==
 
 
* Merge translation files from master branch.
 
* Merge translation files from master branch.
 
* Update translation template.
 
* Update translation template.
* Removing an unwanted temporary work file.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - torrent<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-torrent/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - theme<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-theme/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - sharedfileswindow<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-sharedfileswindow/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - perlcore<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-perlcore/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - perl<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-perl/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - options<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-options/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - notifier<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-notifier/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - mediaplayer<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-mediaplayer/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - logview<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-logview/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - filetransferwindow<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-filetransferwindow/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - editor<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-editor/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - dcc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-dcc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc - about<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-about/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/kvirc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Fix empty translation.<br/>Fix charset in translation.
 
* Translated using Weblate (Czech)<br/>Currently translated at 96.4% (2495 of 2588 strings)<br/>Translation: applications/kvirc<br/>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.<br/>Create translation template.<br/>Add CMake rules to build translations.
 
* clean up header in CMakeList, remove unused variable, this fixes issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kvkbd/issues/3 #3]
 
* Inappropriately used TQString::fromUtf8() moved to place where it is needed.<br/>The definition of -UTQT_NO_ASCII_CAST is no longer needed.
 
* convert to the cmake building system
 
* delete empty files, this fixes issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kvkbd/issues/1 #1]
 
 
== 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 template.
 
* 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.
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Install application specific icons in the application directory.
 
 
* 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.
* Add includes to UI files to resolve FTBFS.
 
 
* conversion to the cmake building system
 
* conversion to the cmake building system
  +
* Removed obsolete TQCollection and replace with TQPtrCollection.
* Removed unnecessary executable flag.
 
  +
* Removed obsolete CHECK_PTR and replaced CHECK_PTR/Q_CHECK_PTR with TQ_CHECK_PTR.
 
== mplayerthumbs ==
 
* conversion to the cmake building system
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== piklab ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/piklab<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/piklab/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/piklab<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/piklab/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Removed unnecessary executable flag.
 
 
== potracegui ==
 
* Use common CMake tests.
 
* Update translation files<br/>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.<br/>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<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 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/
 
* Add CMakeL10n rules.<br/>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<br/>2424.
 
* Fix minor leftover from strstream to sstream conversion not done in previous<br/>commit.
 
* Switched from strstream to sstream.
 
 
== smb4k ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/smb4k<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/smb4k/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/smb4k<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/smb4k/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
   
 
== soundkonverter ==
 
== soundkonverter ==
  +
* Merge translation files from master branch.
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/soundkonverter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/soundkonverter/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/soundkonverter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/soundkonverter/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Removed unnecessary executable flag. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2153 #2153]
 
 
== tde-guidance ==
 
* Fixed incorrect TTQ rename (TTQ -> TQ)
 
* Removed extension from icon name in desktop file. This relates to bug<br/>2424.
 
   
 
== tde-style-lipstik ==
 
== tde-style-lipstik ==
  +
* Add KDE_EXPORT to public library symbols.<br/>This allows build with gcc hidden visibility.
* Update translation template.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== 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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>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.<br/>Create translation template.
 
 
== 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 template.
 
* Change from TQRegExp::match to TQRegExp::search.<br/>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<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/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Rename Polish translation to "pl".
 
 
== tdeio-ftps ==
 
* Use common CMake tests.
 
* 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
 
* Fix pointer comparison<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdeio-ftps/issues/1 #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<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.
 
* 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.<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
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== tdeio-umountwrapper ==
 
* Use common CMake tests.
 
* 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.
 
* cmake conversion
 
 
== 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 template.
 
* 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/
 
* Modified CMakeL10n rules to include strings from vpn-plugins.
 
* 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/
 
* 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
 
* 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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdepowersave<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdepowersave/
 
* Update translation template.
 
* Fix mistake in merge from prior commit.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tdepowersave<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdepowersave/
 
* Add CMakeL10n rules.<br/>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<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - v4lradio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-v4lradio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - timecontrol<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-timecontrol/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - recording<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-recording/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - radio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-radio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - gui-error-log<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-error-log/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - gui-docking-menu<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-docking-menu/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - v4lradio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-v4lradio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - timeshifter<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-timeshifter/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - timecontrol<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-timecontrol/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - streaming<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-streaming/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - soundserver<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-soundserver/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - recording<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-recording/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - radio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-radio/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - oss-sound<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-oss-sound/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - lirc<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-lirc/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - gui-standard-display<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-standard-display/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - gui-quickbar<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-quickbar/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - gui-error-log<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-error-log/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - gui-docking-menu<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-gui-docking-menu/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - convert-presets<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-convert-presets/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio - alsa-sound<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio-alsa-sound/
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tderadio<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tderadio/
 
* Add CMakeL10n rules.<br/>Create translation template.
 
 
== tdesudo ==
 
* Use common CMake tests.
 
* 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.
 
* Add CMakeL10n rules.<br/>Create translation template.
 
* Added controlled conversions to char* instead of automatic ascii conversions.<br/>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<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 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/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
* Add includes to UI files to resolve FTBFS.<br/>: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.<br/>Create translation template.<br/>Add CMake rules to build translations.
 
* 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
 
* Removed obsolete Qt2's TQList/TQListIterator classes and replaced<br/>with TQt3's TQPtrList/TQPtrListIterator ones.
 
 
== 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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
* Avoid overriding user linker flags (LDFLAGS) for modules and shared libs
 
 
== tork ==
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tork<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/
 
* Update translation template.
 
* Update translation files<br/>Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.<br/>Translation: applications/tork<br/>Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/
 
* Add CMakeL10n rules.<br/>Update translation template.
 
 
== 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 template.
 
* 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/
 
* Add CMakeL10n rules.<br/>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<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.
 
* 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.
 
* Add CMakeL10n rules.<br/>Create translation template.<br/>Modify CMake rules for translations<br/>to make them independent of languages.
 
* Add includes to UI files to resolve FTBFS
 
* Removed unnecessary commented code. This makes the previous commit<br/>cleaner.
 
* reduce scope of pointer variables, this resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/yakuake/issues/2 #2]
 
* Those directories aren't needed to build yakuake.
 
* cmake conversion
 
   
 
= packaging =
 
= packaging =
 
== packaging ==
 
== packaging ==
  +
* DEB kerberostray: Switch to cmake.<br/>Switch to common TDE cdbs rules.
* DEB kvpnc: Prefer the default libgcrypt-dev instead of the specific version.<br/>This solves the conflict between packages on Ubuntu 14.04 (Trusty).
 
  +
* DEB: Resolve FTBFS in support for using the $(DEB_HOST_MULTIARCH) variable<br/>if the package does not contain any install and links files.
* RPM: update build scripts for pclinuxos
 
  +
* DEB tdebase: The TDE integration library (libtqtkde)<br/>will be installed into TQt plugins directory.
* RPM: update build scripts for R14.0.6
 
  +
* DEB: Added support for using the $(DEB_HOST_MULTIARCH) variable<br/>in the install and links files to the debian-tde.mk common rules.
* RPM: update build scripts for TDE R14.0.6
 
  +
* DEB: updated supported distros<br/>(partially
* FreeBSD: Update for final release R14.0.6<br/>Add ports for bunch of applications.
 
  +
* DEB qt3: Desktop files has been moved to the main tree.
* DEB trinity-slax: Create an initial kpersonalizerrc.
 
* DEB tdebindings: Enable build with Java on ppc64el.
+
* DEB tqt3: Desktop files has been moved to the main tree.
  +
* DEB kerry: Switch to cmake.<br/>The man page has been moved to the main tree.
* RPM: fix dependencies on newly cmake built packages
 
  +
* DEB knetworkmanager8: Disable build with --enable-final.<br/>Cleanup rules.
* RPM: fix dependencies in Makefile
 
  +
* DEB adept: Disable build with --enable-final.<br/>Cleanup rules.
* RPM: fix gcc visibility in TQT3
 
  +
* DEB keep: Switch to cmake.<br/>The man page has been moved to the main tree.
* RPM: switch many packages to cmake
 
  +
* DEB kdpkg: Switch to cmake.<br/>Switch to common TDE cdbs rules.<br/>The man page has been moved to the main tree.
* DEB mplayerthumbs: Switch to cmake.
 
* DEB kbarcode: Switch to cmake.<br/>The man page has been moved to the main tree.
+
* DEB kchmviewer: Switch to cmake.<br/>Switch to common TDE cdbs rules.<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 build scripts
  +
* DEB kshowmail: Switch to cmake.<br/>Add basic package documentation.<br/>The man page has been moved to the main tree.
* RPM: update packages for Fedora 29
 
  +
* DEB knemo: Switch to cmake.<br/>Add basic package documentation.
* RPM: add libattr dependency to tdebase
 
  +
* DEB tork: Disable build with --enable-final.<br/>Add basic package documentation.<br/>Cleanup rules.
* RPM: fix tdeadmin build after removing toggle_log.png
 
  +
* DEB rosegarden: Deactivate apidox build.
* RPM: fix tdebase after renaming kdelogo => tdelogo
 
  +
* DEB krusader: Disable build with --enable-final.<br/>Add basic package documentation.<br/>Cleanup rules.
* RPM: fix tdebase build on Fedora 29
 
  +
* DEB kftpgrabber: Disable build with --enable-final.<br/>Add basic package documentation.<br/>Cleanup rules.
* RPM: fix build on Fedora 29
 
  +
* DEB kdbg: Disable build with --enable-final.<br/>Add basic package documentation.<br/>Cleanup rules.
* DEB tdelibs: Add ksysv-trinity (<< 4:14.0.6~) to Conflicts<br/>for tdelibs-data-trinity to ensure smooth upgrade.
 
  +
* DEB k9copy: Add basic package documentation.
* DEB tdetoys: The man pages has been moved to the main tree.
 
  +
* DEB tdegames: Fix FTBFS related apidox<br/>that are now generated only for build-indep.
* 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 libart-lgpl: Switch to cmake.<br/>The man page has been moved to the main tree.
  +
* DEB: Merge debian-qt-kde.mk and kde.mk into one debian-tde.mk<br/>The debian-tde.mk rules are now unified for all packages.
* DEB: fixed logrotate of tdm.log. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=894 #894]
 
  +
* DEB: removed old distros.
* 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 kima: Switch to cmake.<br/>Switch to common TDE cdbs rules.
* DEB tdepim: Add pinentry icon for Kleopatra's GpgME backend.
 
* DEB: add missing icons for Kleopatra's GpgME backends.
+
* DEB trinity-keyring: Add a second key for the trinity archive.
  +
* DEB kasablanca: Switch to cmake.<br/>The man page has been moved to the main tree.
* DEB tdebase: Add kdf-trinity (<< 4:14.0.6~) to Conflicts<br/>for tdebase-data-trinity to ensure smooth upgrade.
 
  +
* DEB kcmldapcontroller: Switch to cmake.<br/>Switch to common TDE cdbs rules.
* DEB: fix installation conflict between kdf and tdebase-data caused by commit 34ac65a3c2.
 
  +
* DEB: Fix symlinks between distributions to refer to _base.
* DEB tdebase: Simplify lists for installing icons.<br/>This solves the installation of new icons from PR TDE/tdebase#18.
 
  +
* DEB: use _base folder for a distro instead of specific distros (squeeze and maverick).
* DEB: removed no longer necessary dependency on gettext.
 
  +
* DEB kdbusnotification: Switch to cmake.<br/>Switch to common TDE cdbs rules.
* DEB: Removed an unused debian/cdbs/buildvars.mk file.
 
  +
* DEB compizconfig-backend-tdeconfig: Switch to cmake.
* DEB: Remove a mechanism for updating the uploaders list.
 
  +
* tde-style-qtcurve now "suggests" gtk2-engines-qtcurve package rather<br/>than "recommending" it. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2561 #2561]<br/>Partially manually cherry-picked from commit ba0b1f9b548f2918a67de0915bf08a3bd7c33171
* DEB: Remove the translation templates update during building.
 
  +
* DEB: fixed building of libkcal tests. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2719 #2719]
* DEB: renamed kdelogo pics to tdelogo pics. This related to PR tdebase#12
 
* DEB tdmtheme: Switch to cmake.
+
* DEB tde-style-lipstik: Switch to cmake.<br/>Switch to common TDE cdbs rules.
  +
* DEB: Fixed support for tests with cmake in kpilot.
* 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 kcmldapmanager: 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 libkipi: Switch to cmake.
* DEB krename: Switch to cmake<br/>The man page has been moved to the main tree
+
* DEB libkexiv2: Switch to cmake.
* 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.
 

Revision as of 23:50, 9 June 2019

common

cmake

  • Use cache for TQt executables paths.
    This allows these values to be pre-defined
    - for example, to optimize cross-build.
    This resolves issue #28
  • Update tde_add_check_executable macro
    + Add support for test arguments.

dependencies

qt3

  • The TDE integration library (libqtkde) will be searched for
    in the Qt plugins directory, instead of the TDE plugins
    directory, which cannot be known at Qt build time.
    This resolves issue #3
  • This fixes bug #639
    Add desktop files for:
    - assistant-qt3
    - designer-qt3
    - linguist-qt3
    - qtconfig-qt3
    These files have been made with the contribution of Laurent Dard's
    patch (see bugzilla:639) with little change/addition from I.
    Add 'sysshare' option to the configure script.
  • Reintroduced debug, warning and fatal functions since this are part of
    R14.0.x API.
  • Added timestamp to debug functions (qDebug, qWarning, qFatal).

tqt3

  • The TDE integration library (libtqtkde) will be searched for
    in the TQt plugins directory, instead of the TDE plugins
    directory, which cannot be known at TQt build time.
    This resolves issue #3
  • This fixes bug #639
    Add desktop files for:
    - tqassistant
    - tqdesigner
    - tqlinguist
    - tqtconfig
    These files have been made with the contribution of Laurent Dard's
    patch (see bugzilla:639) with little change/addition from I.
    Add 'sysshare' option to the configure script.
  • Reintroduced debug, warning and fatal functions since this are part of
    R14.0.x API.
  • Added timestamp to debug functions (tqDebug, tqWarning, tqFatal).

tqtinterface

  • Removed unnecessary files and drop dependency on admin module.

akode

  • Removed automake files.

avahi-tqt

  • Removed unused autotools files and changed file names to conform to .cmake
    convention for configuration files.

dbus-1-tqt

  • Removed unused files.
  • Removed dependency on admin module.

dbus-tqt

  • Removed unnecessary files and drop dependency on admin module.

libart-lgpl

  • cmake: Add tests.
  • Add support for GCC hidden visibility.
  • Move the art_config.h generation to the configure script.
    Cleanup of generated automake files.
  • conversion to the cmake building system
    Cleanup of generated headers.
    Add common cmake submodule.
  • Use pkg-config to get values in libart2-config.

libr

  • Clean automake files and unusued 'po' folder.

main

tdelibs

  • Added some checks in KSSL (in TDEIO) to correctly recognize LibreSSL (which is a fork of OpenSSL 1.0.1b)
    This resolves issue #28
  • Added timestamp to debug backend (kdDebug, kdWarning, ...).
  • Updated version number to R14.0.7 [DEVELOPMENT].

tdebase

  • mediamanager: cleaned up use of medium name map.
  • Install the TDE integration library (libtqtkde) into TQt
    plugins directory, instead of the TDE plugins directory.
  • kdcop: added popup menu to result list to conveniently copy the selected
    item (functionality was already available from Edit menu but not so user
    friendly).
  • Fixed bug #925 ("SAK driven secure dialog is not available for use"
    message in .xsession-errors even when SAK is disabled).
  • Fixed use of SAK in lock process when autologin is used in TDM.
    This resolves bug #2945
    Manually cherry-picked from commit 7aa9258f.

tdepim

  • Make the folder assurance read-only.
    Patch by Szokovacs Robert <szo at szo dot hu>, thanks!
    BUG: 144035
    Cherry-picked from: 243dfe72a65603f6fdc36b78585cb21125e88c7d
  • Typo fix
    WAS: global typo fix
    Cherry-picked from: 70eeef7c6e39b0a396fd81a703f9b90f511058c4
  • A signal handler that calls for example waitpid has to save errno before and
    restore it afterwards.
    Cherry-picked from: 70b4927d847f52c865e0c6c91323eeb3295a99eb
  • The use of the static keyword is deprecated when declaring objects in a namespace scope....
    - The C++ Standard, ISO/IEC 14882:1998, section 7.3.1.1 paragraph 2
    Cherry-picked from: a16596e1c16c3d5509d6d3f37ed9287ea61ef9df
  • Use static const instead of #define
    Cherry-picked from: c247b0607d3315a43f21c417ef261ab8eb2979e1
  • Default port for imap and imaps. Before after typing imap://server/ in
    konqueror, slave would try to connect to port 0.
    Cherry-picked from: b35c00016dd671aca964907d76aa5a2ed4bc15cc
  • "x" -> 'x' micro-optimization.
    Cherry-picked from: b75a062ffed7a7e0e7cd284d5885ec8744a7cbd3
  • Mischael's fix for "IMAP KIO process dies (due to trailing nulls?)"
    BUG: 153885
    Cherry-picked from: 1d8208d3815088eea3c36767acb0c5a0a1a61ec8
  • Removed useless 'true &&' statement
    Cherry-picked from: 6965c8b9dac4bb0383a520a829b6689ea597764f
  • Fix mailAddress:getStr when rawComment is non-empty
    WAS: Fix the rest of 152692, another interesting QCString -> QByteArray gotcha.
    Seems to work ok with more email adresses now.
    CCBUG: 152692
    Partially cherry-picked from: 9df2cbd9db920123c7ab51c63ea927f0af5545aa
  • Make getStr const correct.
    Cherry-picked from: 925d1f70010bc111ad9f4a3e910d689aa4e27181
  • fixup the Copyrights
    Cherry-picked from: edcd66a23bc102ec914c4a8702dc12b7241840c6
  • Fix a small typo in API docs of imap4 kio-slave: send -> sent
    Cherry-picked from: 62950207dbc59863ddb0cf5ca01271fbac0df4c3
  • - avoid unnecessary string conversion.
    Partial cherry pick from: 35f536ddb27633e8cac40eb4c99c5b370fdb14cb
  • Bugfix: KMail: Detach from message observation when destructing KMReaderWin
  • libkcal tests: small improvement to cmake code to avoid having to escape quotes.
  • Disabled libical tests if libical version is less than 1.0.
    On old libical versions, DST change date is wrong and this would fail
    some of the tests. This is not a bug in TDE but in old libical libraries.
    Starting from libical 1.0, the bug seems to have been fixed.
  • Fixed support for libical version prior to 3. This is required for libkcal tests to work fine on older distributions.
  • Fixed bug in libkcal related to timezones in DT field.
    Fixed execution of libkcal tests.
    This resolves bug #2719
  • Fixed building of libkcal tests. Some of the tests still fails when
    executed. This relates to bug #2719
    Special thanks to Emanoil Kotsev for providing an
    inital patch for the same bug, from which I reused a small section of code.

tdemultimedia

  • Fix for time_t != long
    `time_t` may not be `long`, for examples, unsigned (long) int,
    long long int (64bit integer type on 32bit arch), double, and so on.
    Change to use difftime(3) to retrieve seconds.
  • Remove unsed platform endian detection
    Used part had been commented out over 8 years ago.
    Variety of include files are not sufficient and may cause build failure
    because of missing header file.
  • Remove traditional `errno` usage
    On modern POSIX environments, `errno` may not be simple `int` type,
    and <errno.h> is sufficient for `errno` and its symbolic values.

tdenetwork

  • Fix FTBFS from commit 2c188798.
    On Linux, utmp.h is necessary even if utmpx.h is present.
  • kppp: fix to build on NetBSD
  • Change to check `strerror` and `fdopen` with CMake
    It is hard to update list of "available" platforms.
  • Change to just include <utmpx.h> over <utmp.h>
    Including deprecated <utmp.h> over standard <utmpx.h> may
    cause unwanted side effects, for example, enables old-code-compatibility
    functions and override utmpx functions.
  • Change to dclare `strlcat` and `strlcpy` conditionally
    They should be declared only for the case missing.
    Current prototype signatures should be for suppliment implementations
    in TDE core library.
    It may differ than platform builtin one, 3rd argment is `size_t',
    so it cause prototype mismatch for the case `size_t` != `unsigned long`.

tdegraphics

  • Add support fo Poppler >= 0.76
    Follow Catalog::find_page argments change and GooList removal.

tdeutils

  • Use `getvfsnumber()` to retrieve filesystem name on OSF/1 (Tru64)
  • Change and simplify `statvfs` conditions in FileSystemStats
    `getfsstat` v.s. `getvfsstat` condition is different than
    `statfs` v.s. `statvfs`, so split each condition and simplify.
    For `get(v)fsstat` side, changed to check and use `getmntinfo`, because
    it is better than `get(v)fsstat` with fixed buffer size, and easier
    than improve it with dynamic buffer allocation.
  • Fix NetBSD APM support
    NetBSD APM is supported other than i386 too, emulate API,
    so change to detect with MI support header.
    Additionally, catch up support codes to others.
  • Fix if-def condition same as *.cpp
  • Recent NetBSD explicitly need uvm/uvm_extern.h
  • Fix to build on NetBSD missing statfs from BSD44 feature

tdegames

  • cmake: Removed useless usage of
    `get_target_property( BIN2C_EXE bin2c LOCATION)`
    This resolves the CMake warning on CMP0026.

tde-i18n

  • Merge translation files from master branch.
  • Update translation template.
  • Merge translation files from master branch.
  • Update translation template.
  • Merge translation files from master branch.
  • Update translation template.
  • Merge translation files from master branch.
  • Update translation template.
  • Merge translation files from master branch.
  • Update translation template.
  • Merge translation files from master branch.
  • Update translation template.

libraries

libkdcraw

  • Merge translation files from master branch.
  • Add CMakeL10n rules.
    Create translation template.

libkexiv2

  • conversion to the cmake building system

libkipi

  • Merge translation files from master branch.
  • Add CMakeL10n rules.
    Create translation template.
  • conversion to the cmake building system

kipi-plugins

  • Merge translation files from master branch.
  • Add CMakeL10n rules.
    Create translation templates.

applications

abakus

  • Merge translation files from master branch.

amarok

  • Merge translation files from master branch.

basket

  • Merge translation files from master branch.

compizconfig-backend-tdeconfig

  • Add KDE_EXPORT to public library symbols.
    This allows build with gcc hidden visibility.
  • conversion to the cmake building system

digikam

  • Merge translation files from master branch.
  • Fix FTBFS due libkdcraw include directory.

dolphin

  • Merge translation files from master branch.

gtk-qt-engine

  • Merge translation files from master branch.

gwenview-i18n

  • Merge translation files from master branch.

k3b-i18n

  • Merge translation files from master branch.

k9copy

  • Merge translation files from master branch.
  • Fix FTBFS for build with --enable-final.

kaffeine

  • Merge translation files from master branch.

kasablanca

  • Merge translation files from master branch.
  • Update translation template.
  • Fixed cppcheck errors in ftplib.cpp. This solves #3.
  • 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 cpp files generated from ui files.
    This resolves issue #1

katapult

  • Merge translation files from master branch.

kbarcode

  • Merge translation files from master branch.

kbfx

  • Merge translation files from master branch.

kbibtex

  • Merge translation files from master branch.
  • Add KDE_EXPORT to public library symbols.
    This fix build with gcc hidden visibility.

kbiff

  • Merge translation files from master branch.

kchmviewer

  • Added linking to kdeextra library.
    This resolve FTBFS on some systems.
    Because the kdeextra library is linked as static, there
    is no reason to be installed as a separate library.
  • Added controlled conversions to char* instead of automatic ascii conversions.
    The definition of -UTQT_NO_ASCII_CAST is no longer needed.
  • Fix FTBFS for build without TDE integration.
  • Fix FTBFS for build with builtin libchm.
  • conversion to the cmake building system

kcmldapcontroller

  • Update translation template.
  • Added controlled conversions to char* instead of automatic ascii conversions.
  • cmake: Add detection of slapi library without base slapi.so.
  • 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

kcmldapmanager

  • Added controlled conversions to char* instead of automatic ascii conversions.
  • Add includes to UI files to resolve FTBFS.
  • conversion to the cmake building system

kdbg

  • Merge translation files from master branch.
  • Update translation template.
  • Fix call of a member function dependent on a template parameter.
    We must make the access of 'push_back' dependent, too. Otherwise, name
    lookup does not find the name. Earlier compilers were more permissive and
    did find the name.
    (cherry picked from upstream commit 5f55847d441aba7742417e78c3b4fbe8344acc5e)
  • Fix parsing of disassembly produced by gdb 7.1.
    Since gdb 7.1, the address does not start at the beginning of a line, and
    it can be prefixed by a pointer => that indicates the current instruction.
    (cherry picked from upstream commit 5c5f34852d30337ef7c23ef4e88d50ecee1c0703)
  • Grok gdb 7's <incomplete sequence> marker in strings.
    When a string ends in an incomplete multi-byte sequence, gdb adds an
    <incomplete sequence...> fragment to the end of the string. Previously,
    this resulted in a parse error and incomplete variable information.
    Reported by Kevin Lemay.
    (cherry picked from upstream commit 03da8a5ec97c8c7b125b2bd453d2f1c3a018d477)
  • Fix assembler code display with gdb 7.1 and later.
    The syntax of the 'disassemble' command changed in gdb 7.1: it now requires
    a comma between the two address expressions. Previously, KDbg showed an
    error message instead of assembler code when a plus in front of a source
    code line was clicked.
    Reported by Gerfried Essler.
    This reverts part of the previous commit.
    (cherry picked from upstream commit b6ee6a035abe41f7c0d59fbd830e895b6edeb748)
  • Drop gdb versionning.
    Cherry picked and adapted from commit 0efc808f from the original author
    of kdbg, code available at https://github.com/j6t/kdbg under GPL 2.0"
    Quote from the author:
    In early days of KDbg, it was important to use a suitable command to load
    a core file. This was before gdb 4.16. To pick the right command, the
    version number was parsed from gdb's greeting.
    At least with modern gdb the regular expression does not match anymore.
    So let's assume that nobody is using ancient gdb anymore, and always use
    the modern command.
  • Merge translation files from master branch.
  • drop some qt2 deprecated

kdbusnotification

  • conversion to the cmake building system

kdiff3

  • Merge translation files from master branch.

kdirstat

  • Merge translation files from master branch.

kdpkg

  • Merge translation files from master branch.
  • Update translation template.
  • Fix loading of package contents when package is selected through dialog box.
  • Fix hardcoded installation path.
    This resolves issue #1
  • 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

keep

  • Merge translation files from master branch.
  • Add includes to UI files to resolve FTBFS.
  • conversion to the cmake building system

kerberostray

  • cmake: Fix detection of older Heimdal versions.
  • Add includes to UI files to resolve FTBFS.
  • conversion to the cmake building system

kerry

  • Merge translation files from master branch.
  • Add includes to UI files to resolve FTBFS.
  • conversion to the cmake building system
  • Merge translation files from master branch.
  • Update translation template.
  • fix issue #2
  • remove KDE_IS_VERSION
  • silence some glib warnings, g_type_init() is deprecated since glib-2.36
  • Fixed missing end of line in kdError, which was calling assert failing
    backtrace to be displayed at run time.

kftpgrabber

  • Fixed lint messages related to bug #2409

kima

  • Merge translation files from master branch.
  • Update translation template.
  • Add includes to UI files to resolve FTBFS.
  • conversion to the cmake building system

kiosktool

  • Merge translation files from master branch.

kmplayer

  • Merge translation files from master branch.

kmymoney

  • Merge translation files from master branch.

knemo

  • Add includes to UI files to resolve FTBFS.
  • cmake: Search for ifconfig, route, and iwconfig
    instead of using predefined paths.
  • conversion to the cmake building system

knetworkmanager8

  • Merge translation files from master branch.

knights

  • Merge translation files from master branch.

koffice-i18n

  • Merge translation files from master branch.

kpilot

  • Fixed support for tests in cmake.

kshowmail

  • 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.
  • conversion to the cmake building system
  • Removed obsolete TQCollection and replace with TQPtrCollection.
  • Removed obsolete CHECK_PTR and replaced CHECK_PTR/Q_CHECK_PTR with TQ_CHECK_PTR.

soundkonverter

  • Merge translation files from master branch.

tde-style-lipstik

  • 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.
  • conversion to the cmake building system

packaging

packaging

  • DEB kerberostray: Switch to cmake.
    Switch to common TDE cdbs rules.
  • DEB: Resolve FTBFS in support for using the $(DEB_HOST_MULTIARCH) variable
    if the package does not contain any install and links files.
  • DEB tdebase: The TDE integration library (libtqtkde)
    will be installed into TQt plugins directory.
  • DEB: Added support for using the $(DEB_HOST_MULTIARCH) variable
    in the install and links files to the debian-tde.mk common rules.
  • DEB: updated supported distros
    (partially
  • DEB qt3: Desktop files has been moved to the main tree.
  • DEB tqt3: Desktop files has been moved to the main tree.
  • DEB kerry: Switch to cmake.
    The man page has been moved to the main tree.
  • DEB knetworkmanager8: Disable build with --enable-final.
    Cleanup rules.
  • DEB adept: Disable build with --enable-final.
    Cleanup rules.
  • DEB keep: Switch to cmake.
    The man page has been moved to the main tree.
  • DEB kdpkg: Switch to cmake.
    Switch to common TDE cdbs rules.
    The man page has been moved to the main tree.
  • DEB kchmviewer: Switch to cmake.
    Switch to common TDE cdbs rules.
    The man page has been moved to the main tree.
  • RPM: update build scripts
  • DEB kshowmail: Switch to cmake.
    Add basic package documentation.
    The man page has been moved to the main tree.
  • DEB knemo: Switch to cmake.
    Add basic package documentation.
  • DEB tork: Disable build with --enable-final.
    Add basic package documentation.
    Cleanup rules.
  • DEB rosegarden: Deactivate apidox build.
  • DEB krusader: Disable build with --enable-final.
    Add basic package documentation.
    Cleanup rules.
  • DEB kftpgrabber: Disable build with --enable-final.
    Add basic package documentation.
    Cleanup rules.
  • DEB kdbg: Disable build with --enable-final.
    Add basic package documentation.
    Cleanup rules.
  • DEB k9copy: Add basic package documentation.
  • DEB tdegames: Fix FTBFS related apidox
    that are now generated only for build-indep.
  • DEB libart-lgpl: Switch to cmake.
    The man page has been moved to the main tree.
  • DEB: Merge debian-qt-kde.mk and kde.mk into one debian-tde.mk
    The debian-tde.mk rules are now unified for all packages.
  • DEB: removed old distros.
  • DEB kima: Switch to cmake.
    Switch to common TDE cdbs rules.
  • DEB trinity-keyring: Add a second key for the trinity archive.
  • DEB kasablanca: Switch to cmake.
    The man page has been moved to the main tree.
  • DEB kcmldapcontroller: Switch to cmake.
    Switch to common TDE cdbs rules.
  • DEB: Fix symlinks between distributions to refer to _base.
  • DEB: use _base folder for a distro instead of specific distros (squeeze and maverick).
  • DEB kdbusnotification: Switch to cmake.
    Switch to common TDE cdbs rules.
  • DEB compizconfig-backend-tdeconfig: Switch to cmake.
  • tde-style-qtcurve now "suggests" gtk2-engines-qtcurve package rather
    than "recommending" it. This relates to bug #2561
    Partially manually cherry-picked from commit ba0b1f9b548f2918a67de0915bf08a3bd7c33171
  • DEB: fixed building of libkcal tests. This relates to bug #2719
  • DEB tde-style-lipstik: Switch to cmake.
    Switch to common TDE cdbs rules.
  • DEB: Fixed support for tests with cmake in kpilot.
  • DEB kcmldapmanager: Switch to cmake.
    Switch to common TDE cdbs rules.
  • DEB libkipi: Switch to cmake.
  • DEB libkexiv2: Switch to cmake.