diff --git a/packages/gen-kde-l10n.sh b/packages/gen-kde-l10n.sh index 0cf3ad02..60e54d4f 100755 --- a/packages/gen-kde-l10n.sh +++ b/packages/gen-kde-l10n.sh @@ -1,321 +1,322 @@ #!/bin/bash # Copyright (C) 2016 Intevation GmbH # # This file is part of GPG4Win. # # GPG4Win is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # GPG4Win is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # Grab the latest kf5 translations and build a binary/source package for kleo. # Autogenerates NSIS Files that include translations for frameworks. # # This script needs installed packages to determine which frameworks # localizations exist set -e tmpdir=$(mktemp -d -p $(pwd)) VERSION=$(date +%Y%m%d%H%M) g4widir="$(readlink -f $(dirname $0)/../src/playground/install)" if [ ! -e "$g4widir" ]; then echo "Please build gpg4win first." echo "This script needs installed packages to determine which frameworks localizations exist" exit 1 fi # QFrameworks are frameworks that use qt translations QFRAMEWORKS="kconfig kcompletion kcodecs kcoreaddons kitemviews kwidgetsaddons kwindowsystem" # KFrameworks are frameworks that use KDE translations -KFRAMEWORKS="kconfigwidgets ki18n kiconthemes kxmlgui" +KFRAMEWORKS="kconfigwidgets ki18n kiconthemes kxmlgui kio kparts kjobwidgets kbookmarks" -POPREFIXES="kleopatra libkleo" +POPREFIXES="kleopatra libkleo okular" POFILES="libkleo/libkleopatra.po \ - kleopatra/kleopatra.po" + kleopatra/kleopatra.po \ + okular/okular.po" # See: https://websvn.kde.org/*checkout*/trunk/l10n-kf5/subdirs # and remove x-test LANGS=" af \ ar \ as \ ast \ az \ be \ be@latin \ bg \ bn \ bn_IN \ br \ bs \ ca \ ca@valencia \ crh \ cs \ csb \ cy \ da \ de \ el \ en \ en_GB \ eo \ es \ et \ eu \ fa \ fi \ fr \ fy \ ga \ gd \ gl \ gu \ ha \ he \ hi \ hne \ hr \ hsb \ hu \ hy \ ia \ id \ ie \ is \ it \ ja \ ka \ kab \ kk \ km \ kn \ ko \ ku \ lb \ lt \ lv \ mai \ mk \ ml \ mr \ ms \ mt \ my \ nb \ nds \ ne \ nl \ nn \ nso \ oc \ or \ pa \ pl \ ps \ pt \ pt_BR \ ro \ ru \ rw \ se \ si \ sk \ sl \ sq \ sr \ sr@ijekavian \ sr@ijekavianlatin \ sr@latin \ sv \ ta \ te \ tg \ th \ tn \ tok \ tr \ tt \ ug \ uk \ uz \ uz@cyrillic \ vi \ wa \ xh \ zh_CN \ zh_HK \ zh_TW" instfile=$tmpdir/inst-kde-l10n.nsi uninstfile=$tmpdir/uninst-kde-l10n.nsi cat > $instfile <> $instfile done cat >> $instfile << EOF !ifdef DEBUG Section "kde-l10n" SEC_kde_l10n !else Section "-kde-l10n" SEC_kde_l10n !endif SetOutPath "\$INSTDIR" EOF cat > $uninstfile </dev/null || true svn export --force svn://anonsvn.kde.org/home/kde/trunk/l10n-support/$lang/summit/messages/$pofile \ `basename $pofile` 2>/dev/null || true if [ ! -f `basename $pofile` ]; then echo "$pofile not found in $lang" fi done cd .. done l10ndir_bin=$tmpdir/kde-l10n-$VERSION-bin mkdir -p $l10ndir_bin cd $l10ndir_bin for lang in $LANGS; do if ! ls $l10ndir/$lang/kleopatra.po > /dev/null 2>&1; then # No kleo translations. Skip it. continue fi translated=$(msgfmt --statistics $l10ndir/$lang/kleopatra.po 2>&1 | tail -n 1 | cut -f 1 -d " ") if [ -n "$translated" -a "$translated" -lt "500" ]; then echo "Only $translated strings translated in $lang - skipping" continue fi if ! [ -e "$g4widir/share/locale/$lang/kf5_entry.desktop" ]; then # No desktop file. Won't show up in ui echo "$g4widir/share/locale/$lang/kf5_entry.desktop does not exist" continue fi mkdir -p $l10ndir_bin/share/locale/$lang/LC_MESSAGES echo " SetOutPath \"\$INSTDIR\\share\\locale\\$lang\"" >> $instfile echo " File \${kcfg_prefix}/share/locale/$lang/kf5_entry.desktop" >> $instfile echo " Delete \"\$INSTDIR\\share\\locale\\$lang\\kf5_entry.desktop\"" >> $uninstfile echo " SetOutPath \"\$INSTDIR\\share\\locale\\$lang\\LC_MESSAGES\"" >> $instfile for frame in $KFRAMEWORKS; do if [ -e "$g4widir/share/locale/$lang/LC_MESSAGES/${frame}5.mo" ]; then echo " File \${${frame}_prefix}/share/locale/$lang/LC_MESSAGES/${frame}5.mo" >> $instfile echo " Delete \"\$INSTDIR\\share\\locale\\$lang\\LC_MESSAGES\\${frame}5.mo\"" >> $uninstfile fi done for frame in $QFRAMEWORKS; do if [ -e "$g4widir/share/locale/$lang/LC_MESSAGES/${frame}5_qt.qm" ]; then echo " File \${${frame}_prefix}/share/locale/$lang/LC_MESSAGES/${frame}5_qt.qm" >> $instfile echo " Delete \"\$INSTDIR\\share\\locale\\$lang\\LC_MESSAGES\\${frame}5_qt.qm\"" >> $uninstfile fi done for pofile in $POFILES; do moname=$(basename $pofile | sed 's/\.po/\.mo/') poprefix="`dirname $pofile`_prefix" if msgfmt -o $l10ndir_bin/share/locale/$lang/LC_MESSAGES/$moname $l10ndir/$lang/`basename $pofile` 2>/dev/null; then echo " File \${$poprefix}/share/locale/$lang/LC_MESSAGES/$moname" >> $instfile echo " Delete \"\$INSTDIR\\share\\locale\\$lang\\LC_MESSAGES\\$moname\"" >> $uninstfile fi done echo "RMDir \"\$INSTDIR\\share\\locale\\$lang\\LC_MESSAGES\"" >> $uninstfile echo "RMDir \"\$INSTDIR\\share\\locale\\$lang\\LC_MESSAGES\"" >> $uninstfile echo "RMDir \"\$INSTDIR\\share\\locale\\$lang\"" >> $uninstfile cd .. done echo "RMDir \"\$INSTDIR\\share\\locale\"" >> $uninstfile echo "RMDir \"\$INSTDIR\\share\"" >> $uninstfile echo "RMDir \"\$INSTDIR\"" >> $uninstfile echo "SectionEnd" >> $uninstfile echo "SectionEnd" >> $instfile cd $tmpdir tar -cJf kde-l10n-$VERSION-src.tar.xz kde-l10n-$VERSION-src cd $l10ndir_bin tar -cJf ../kde-l10n-$VERSION-bin.tar.xz * cd .. checksum_bin=$(sha256sum kde-l10n-$VERSION-bin.tar.xz | cut -d ' ' -f 1) checksum_src=$(sha256sum kde-l10n-$VERSION-src.tar.xz | cut -d ' ' -f 1) curdate=$(date +%Y-%m-%d) echo "------------------------------ >8 ------------------------------" echo "# KDE-l10n" echo "# last changed: ${curdate}" echo "# by: $USER" echo "# verified: Tarball created by $USER." echo "file kde-l10n/kde-l10n-$VERSION-bin.tar.xz" echo "chk ${checksum_bin}" echo "" echo "file kde-l10n/kde-l10n-$VERSION-src.tar.xz" echo "chk ${checksum_src}" echo "------------------------------ >8 ------------------------------" echo "To upload:" >&2 echo "rsync -vP $tmpdir/kde-l10n-$VERSION-*.tar.xz trithemius.gnupg.org:/home/ftp/gcrypt/snapshots/kde-l10n/" >&2 echo "NOTE: TARBALLS ARE CURRENTLY NOT NEEDED. INSTALLATION HAPPENS FROM PACKAGE SOURCES" diff --git a/src/inst-kde-l10n.nsi b/src/inst-kde-l10n.nsi index ea279891..b8283df0 100644 --- a/src/inst-kde-l10n.nsi +++ b/src/inst-kde-l10n.nsi @@ -1,647 +1,785 @@ # THIS FILE IS GENERATED! See kde-l10n.sh # Copyright (C) 2016 Intevation GmbH # # This file is part of GPG4Win. # # GPG4Win is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # GPG4Win is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA !define kcfg_prefix ${ipdir}/kconfigwidgets-${gpg4win_pkg_kconfigwidgets_version} !define kconfigwidgets_prefix ${ipdir}/kconfigwidgets-${gpg4win_pkg_kconfigwidgets_version} !define ki18n_prefix ${ipdir}/ki18n-${gpg4win_pkg_ki18n_version} !define kiconthemes_prefix ${ipdir}/kiconthemes-${gpg4win_pkg_kiconthemes_version} !define kxmlgui_prefix ${ipdir}/kxmlgui-${gpg4win_pkg_kxmlgui_version} +!define kio_prefix ${ipdir}/kio-${gpg4win_pkg_kio_version} +!define kparts_prefix ${ipdir}/kparts-${gpg4win_pkg_kparts_version} +!define kjobwidgets_prefix ${ipdir}/kjobwidgets-${gpg4win_pkg_kjobwidgets_version} +!define kbookmarks_prefix ${ipdir}/kbookmarks-${gpg4win_pkg_kbookmarks_version} !define kconfig_prefix ${ipdir}/kconfig-${gpg4win_pkg_kconfig_version} !define kcompletion_prefix ${ipdir}/kcompletion-${gpg4win_pkg_kcompletion_version} !define kcodecs_prefix ${ipdir}/kcodecs-${gpg4win_pkg_kcodecs_version} !define kcoreaddons_prefix ${ipdir}/kcoreaddons-${gpg4win_pkg_kcoreaddons_version} !define kitemviews_prefix ${ipdir}/kitemviews-${gpg4win_pkg_kitemviews_version} !define kwidgetsaddons_prefix ${ipdir}/kwidgetsaddons-${gpg4win_pkg_kwidgetsaddons_version} !define kwindowsystem_prefix ${ipdir}/kwindowsystem-${gpg4win_pkg_kwindowsystem_version} !define kleopatra_prefix ${ipdir}/kleopatra-${gpg4win_pkg_kleopatra_version} !define libkleo_prefix ${ipdir}/libkleo-${gpg4win_pkg_libkleo_version} +!define okular_prefix ${ipdir}/okular-${gpg4win_pkg_okular_version} !ifdef DEBUG Section "kde-l10n" SEC_kde_l10n !else Section "-kde-l10n" SEC_kde_l10n !endif SetOutPath "$INSTDIR" SetOutPath "$INSTDIR\share\locale\bg" File ${kcfg_prefix}/share/locale/bg/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\bg\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/bg/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/bg/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/bg/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/bg/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/bg/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/bg/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/bg/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/bg/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/bg/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/bg/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/bg/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/bg/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/bg/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/bg/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/bg/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/bg/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\bs" File ${kcfg_prefix}/share/locale/bs/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\bs\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/bs/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/bs/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/bs/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/bs/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/bs/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/bs/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/bs/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/bs/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/bs/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/bs/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/bs/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/bs/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/bs/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/bs/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/bs/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/bs/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ca" File ${kcfg_prefix}/share/locale/ca/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ca\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ca/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ca/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ca/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ca/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ca/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ca/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ca/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ca/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ca/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ca/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ca/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ca/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ca/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ca/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ca/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ca/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ca@valencia" File ${kcfg_prefix}/share/locale/ca@valencia/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ca@valencia/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ca@valencia/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ca@valencia/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ca@valencia/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ca@valencia/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ca@valencia/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ca@valencia/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ca@valencia/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ca@valencia/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ca@valencia/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ca@valencia/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ca@valencia/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ca@valencia/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ca@valencia/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ca@valencia/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ca@valencia/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\cs" File ${kcfg_prefix}/share/locale/cs/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\cs\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/cs/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/cs/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/cs/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/cs/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/cs/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/cs/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/cs/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/cs/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/cs/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/cs/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/cs/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/cs/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/cs/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/cs/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/cs/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/cs/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\da" File ${kcfg_prefix}/share/locale/da/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\da\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/da/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/da/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/da/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/da/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/da/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/da/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/da/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/da/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/da/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/da/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/da/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/da/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/da/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/da/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/da/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/da/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\de" File ${kcfg_prefix}/share/locale/de/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\de\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/de/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/de/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/de/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/de/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/de/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/de/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/de/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/de/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/de/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/de/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/de/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/de/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/de/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/de/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/de/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/de/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\el" File ${kcfg_prefix}/share/locale/el/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\el\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/el/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/el/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/el/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/el/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/el/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/el/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/el/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/el/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/el/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/el/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/el/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/el/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/el/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/el/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/el/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/el/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\en_GB" File ${kcfg_prefix}/share/locale/en_GB/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\en_GB\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/en_GB/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/en_GB/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/en_GB/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/en_GB/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/en_GB/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/en_GB/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/en_GB/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/en_GB/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/en_GB/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/en_GB/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/en_GB/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/en_GB/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/en_GB/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/en_GB/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/en_GB/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/en_GB/LC_MESSAGES/okular.mo + SetOutPath "$INSTDIR\share\locale\eo" + File ${kcfg_prefix}/share/locale/eo/kf5_entry.desktop + SetOutPath "$INSTDIR\share\locale\eo\LC_MESSAGES" + File ${kconfigwidgets_prefix}/share/locale/eo/LC_MESSAGES/kconfigwidgets5.mo + File ${ki18n_prefix}/share/locale/eo/LC_MESSAGES/ki18n5.mo + File ${kiconthemes_prefix}/share/locale/eo/LC_MESSAGES/kiconthemes5.mo + File ${kxmlgui_prefix}/share/locale/eo/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/eo/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/eo/LC_MESSAGES/kparts5.mo + File ${kconfig_prefix}/share/locale/eo/LC_MESSAGES/kconfig5_qt.qm + File ${kcompletion_prefix}/share/locale/eo/LC_MESSAGES/kcompletion5_qt.qm + File ${kcodecs_prefix}/share/locale/eo/LC_MESSAGES/kcodecs5_qt.qm + File ${kcoreaddons_prefix}/share/locale/eo/LC_MESSAGES/kcoreaddons5_qt.qm + File ${kitemviews_prefix}/share/locale/eo/LC_MESSAGES/kitemviews5_qt.qm + File ${kwidgetsaddons_prefix}/share/locale/eo/LC_MESSAGES/kwidgetsaddons5_qt.qm + File ${kwindowsystem_prefix}/share/locale/eo/LC_MESSAGES/kwindowsystem5_qt.qm + File ${libkleo_prefix}/share/locale/eo/LC_MESSAGES/libkleopatra.mo + File ${kleopatra_prefix}/share/locale/eo/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/eo/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\es" File ${kcfg_prefix}/share/locale/es/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\es\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/es/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/es/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/es/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/es/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/es/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/es/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/es/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/es/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/es/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/es/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/es/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/es/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/es/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/es/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/es/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/es/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\et" File ${kcfg_prefix}/share/locale/et/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\et\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/et/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/et/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/et/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/et/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/et/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/et/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/et/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/et/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/et/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/et/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/et/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/et/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/et/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/et/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/et/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/et/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\fi" File ${kcfg_prefix}/share/locale/fi/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\fi\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/fi/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/fi/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/fi/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/fi/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/fi/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/fi/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/fi/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/fi/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/fi/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/fi/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/fi/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/fi/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/fi/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/fi/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/fi/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/fi/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\fr" File ${kcfg_prefix}/share/locale/fr/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\fr\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/fr/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/fr/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/fr/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/fr/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/fr/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/fr/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/fr/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/fr/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/fr/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/fr/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/fr/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/fr/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/fr/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/fr/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/fr/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/fr/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\gl" File ${kcfg_prefix}/share/locale/gl/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\gl\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/gl/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/gl/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/gl/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/gl/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/gl/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/gl/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/gl/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/gl/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/gl/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/gl/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/gl/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/gl/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/gl/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/gl/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/gl/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/gl/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\hu" File ${kcfg_prefix}/share/locale/hu/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\hu\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/hu/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/hu/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/hu/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/hu/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/hu/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/hu/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/hu/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/hu/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/hu/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/hu/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/hu/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/hu/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/hu/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/hu/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/hu/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/hu/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ia" File ${kcfg_prefix}/share/locale/ia/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ia\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ia/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ia/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ia/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ia/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ia/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ia/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ia/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ia/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ia/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ia/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ia/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ia/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ia/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ia/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ia/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ia/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\it" File ${kcfg_prefix}/share/locale/it/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\it\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/it/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/it/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/it/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/it/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/it/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/it/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/it/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/it/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/it/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/it/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/it/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/it/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/it/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/it/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/it/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/it/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ja" File ${kcfg_prefix}/share/locale/ja/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ja\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ja/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ja/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ja/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ja/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ja/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ja/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ja/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ja/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ja/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ja/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ja/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ja/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ja/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ja/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ja/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ja/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ka" File ${kcfg_prefix}/share/locale/ka/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ka\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ka/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ka/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ka/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ka/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ka/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ka/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ka/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ka/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ka/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ka/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ka/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ka/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ka/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ka/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ka/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ka/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\kk" File ${kcfg_prefix}/share/locale/kk/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\kk\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/kk/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/kk/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/kk/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/kk/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/kk/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/kk/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/kk/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/kk/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/kk/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/kk/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/kk/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/kk/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/kk/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/kk/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/kk/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/kk/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\km" File ${kcfg_prefix}/share/locale/km/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\km\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/km/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/km/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/km/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/km/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/km/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/km/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/km/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/km/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/km/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/km/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/km/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/km/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/km/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/km/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/km/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/km/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ko" File ${kcfg_prefix}/share/locale/ko/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ko\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ko/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ko/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ko/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ko/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ko/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ko/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ko/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ko/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ko/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ko/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ko/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ko/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ko/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ko/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ko/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ko/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\lv" File ${kcfg_prefix}/share/locale/lv/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\lv\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/lv/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/lv/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/lv/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/lv/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/lv/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/lv/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/lv/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/lv/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/lv/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/lv/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/lv/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/lv/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/lv/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/lv/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/lv/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/lv/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\nb" File ${kcfg_prefix}/share/locale/nb/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\nb\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/nb/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/nb/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/nb/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/nb/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/nb/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/nb/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/nb/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/nb/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/nb/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/nb/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/nb/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/nb/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/nb/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/nb/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/nb/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/nb/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\nds" File ${kcfg_prefix}/share/locale/nds/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\nds\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/nds/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/nds/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/nds/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/nds/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/nds/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/nds/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/nds/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/nds/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/nds/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/nds/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/nds/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/nds/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/nds/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/nds/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/nds/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/nds/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\nl" File ${kcfg_prefix}/share/locale/nl/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\nl\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/nl/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/nl/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/nl/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/nl/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/nl/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/nl/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/nl/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/nl/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/nl/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/nl/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/nl/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/nl/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/nl/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/nl/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/nl/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/nl/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\nn" File ${kcfg_prefix}/share/locale/nn/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\nn\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/nn/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/nn/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/nn/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/nn/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/nn/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/nn/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/nn/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/nn/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/nn/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/nn/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/nn/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/nn/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/nn/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/nn/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/nn/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/nn/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\pl" File ${kcfg_prefix}/share/locale/pl/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\pl\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/pl/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/pl/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/pl/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/pl/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/pl/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/pl/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/pl/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/pl/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/pl/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/pl/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/pl/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/pl/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/pl/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/pl/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/pl/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/pl/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\pt" File ${kcfg_prefix}/share/locale/pt/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\pt\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/pt/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/pt/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/pt/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/pt/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/pt/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/pt/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/pt/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/pt/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/pt/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/pt/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/pt/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/pt/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/pt/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/pt/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/pt/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/pt/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\pt_BR" File ${kcfg_prefix}/share/locale/pt_BR/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\pt_BR\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/pt_BR/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/pt_BR/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/pt_BR/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/pt_BR/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/pt_BR/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/pt_BR/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/pt_BR/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/pt_BR/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/pt_BR/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/pt_BR/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/pt_BR/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/pt_BR/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/pt_BR/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/pt_BR/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/pt_BR/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/pt_BR/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\ru" File ${kcfg_prefix}/share/locale/ru/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\ru\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/ru/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/ru/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/ru/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/ru/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/ru/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/ru/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/ru/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/ru/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/ru/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/ru/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/ru/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/ru/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/ru/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/ru/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/ru/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/ru/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\sk" File ${kcfg_prefix}/share/locale/sk/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\sk\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/sk/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/sk/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/sk/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/sk/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/sk/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/sk/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/sk/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/sk/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/sk/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/sk/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/sk/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/sk/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/sk/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/sk/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/sk/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/sk/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\sl" File ${kcfg_prefix}/share/locale/sl/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\sl\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/sl/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/sl/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/sl/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/sl/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/sl/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/sl/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/sl/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/sl/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/sl/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/sl/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/sl/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/sl/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/sl/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/sl/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/sl/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/sl/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\sv" File ${kcfg_prefix}/share/locale/sv/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\sv\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/sv/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/sv/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/sv/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/sv/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/sv/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/sv/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/sv/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/sv/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/sv/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/sv/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/sv/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/sv/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/sv/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/sv/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/sv/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/sv/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\tr" File ${kcfg_prefix}/share/locale/tr/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\tr\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/tr/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/tr/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/tr/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/tr/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/tr/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/tr/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/tr/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/tr/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/tr/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/tr/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/tr/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/tr/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/tr/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/tr/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/tr/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/tr/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\uk" File ${kcfg_prefix}/share/locale/uk/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\uk\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/uk/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/uk/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/uk/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/uk/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/uk/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/uk/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/uk/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/uk/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/uk/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/uk/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/uk/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/uk/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/uk/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/uk/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/uk/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/uk/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\zh_CN" File ${kcfg_prefix}/share/locale/zh_CN/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\zh_CN\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/zh_CN/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/zh_CN/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/zh_CN/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/zh_CN/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/zh_CN/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/zh_CN/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/zh_CN/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/zh_CN/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/zh_CN/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/zh_CN/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/zh_CN/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/zh_CN/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/zh_CN/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/zh_CN/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/zh_CN/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/zh_CN/LC_MESSAGES/okular.mo SetOutPath "$INSTDIR\share\locale\zh_TW" File ${kcfg_prefix}/share/locale/zh_TW/kf5_entry.desktop SetOutPath "$INSTDIR\share\locale\zh_TW\LC_MESSAGES" File ${kconfigwidgets_prefix}/share/locale/zh_TW/LC_MESSAGES/kconfigwidgets5.mo File ${ki18n_prefix}/share/locale/zh_TW/LC_MESSAGES/ki18n5.mo File ${kiconthemes_prefix}/share/locale/zh_TW/LC_MESSAGES/kiconthemes5.mo File ${kxmlgui_prefix}/share/locale/zh_TW/LC_MESSAGES/kxmlgui5.mo + File ${kio_prefix}/share/locale/zh_TW/LC_MESSAGES/kio5.mo + File ${kparts_prefix}/share/locale/zh_TW/LC_MESSAGES/kparts5.mo File ${kconfig_prefix}/share/locale/zh_TW/LC_MESSAGES/kconfig5_qt.qm File ${kcompletion_prefix}/share/locale/zh_TW/LC_MESSAGES/kcompletion5_qt.qm File ${kcodecs_prefix}/share/locale/zh_TW/LC_MESSAGES/kcodecs5_qt.qm File ${kcoreaddons_prefix}/share/locale/zh_TW/LC_MESSAGES/kcoreaddons5_qt.qm File ${kitemviews_prefix}/share/locale/zh_TW/LC_MESSAGES/kitemviews5_qt.qm File ${kwidgetsaddons_prefix}/share/locale/zh_TW/LC_MESSAGES/kwidgetsaddons5_qt.qm File ${kwindowsystem_prefix}/share/locale/zh_TW/LC_MESSAGES/kwindowsystem5_qt.qm File ${libkleo_prefix}/share/locale/zh_TW/LC_MESSAGES/libkleopatra.mo File ${kleopatra_prefix}/share/locale/zh_TW/LC_MESSAGES/kleopatra.mo + File ${okular_prefix}/share/locale/zh_TW/LC_MESSAGES/okular.mo SectionEnd diff --git a/src/uninst-kde-l10n.nsi b/src/uninst-kde-l10n.nsi index e8bbfcd8..b1ad04e4 100644 --- a/src/uninst-kde-l10n.nsi +++ b/src/uninst-kde-l10n.nsi @@ -1,671 +1,805 @@ # THIS FILE IS GENERATED! See kde-l10n.sh # Copyright (C) 2016 Intevation GmbH # # This file is part of GPG4Win. # # GPG4Win is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # GPG4Win is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA ; Uninstaller section. Section "-un.kde-l10n" Delete "$INSTDIR\share\locale\bg\kf5_entry.desktop" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\bg\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\bg\LC_MESSAGES" RMDir "$INSTDIR\share\locale\bg\LC_MESSAGES" RMDir "$INSTDIR\share\locale\bg" Delete "$INSTDIR\share\locale\bs\kf5_entry.desktop" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\bs\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\bs\LC_MESSAGES" RMDir "$INSTDIR\share\locale\bs\LC_MESSAGES" RMDir "$INSTDIR\share\locale\bs" Delete "$INSTDIR\share\locale\ca\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ca\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ca\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ca\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ca" Delete "$INSTDIR\share\locale\ca@valencia\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ca@valencia\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ca@valencia" Delete "$INSTDIR\share\locale\cs\kf5_entry.desktop" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\cs\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\cs\LC_MESSAGES" RMDir "$INSTDIR\share\locale\cs\LC_MESSAGES" RMDir "$INSTDIR\share\locale\cs" Delete "$INSTDIR\share\locale\da\kf5_entry.desktop" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\da\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\da\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\da\LC_MESSAGES" RMDir "$INSTDIR\share\locale\da\LC_MESSAGES" RMDir "$INSTDIR\share\locale\da" Delete "$INSTDIR\share\locale\de\kf5_entry.desktop" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\de\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\de\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\de\LC_MESSAGES" RMDir "$INSTDIR\share\locale\de\LC_MESSAGES" RMDir "$INSTDIR\share\locale\de" Delete "$INSTDIR\share\locale\el\kf5_entry.desktop" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\el\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\el\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\el\LC_MESSAGES" RMDir "$INSTDIR\share\locale\el\LC_MESSAGES" RMDir "$INSTDIR\share\locale\el" Delete "$INSTDIR\share\locale\en_GB\kf5_entry.desktop" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\en_GB\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\en_GB\LC_MESSAGES" RMDir "$INSTDIR\share\locale\en_GB\LC_MESSAGES" RMDir "$INSTDIR\share\locale\en_GB" + Delete "$INSTDIR\share\locale\eo\kf5_entry.desktop" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kconfigwidgets5.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\ki18n5.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kiconthemes5.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kparts5.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kconfig5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kcompletion5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kcodecs5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kcoreaddons5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kitemviews5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kwidgetsaddons5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kwindowsystem5_qt.qm" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\libkleopatra.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\eo\LC_MESSAGES\okular.mo" +RMDir "$INSTDIR\share\locale\eo\LC_MESSAGES" +RMDir "$INSTDIR\share\locale\eo\LC_MESSAGES" +RMDir "$INSTDIR\share\locale\eo" Delete "$INSTDIR\share\locale\es\kf5_entry.desktop" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\es\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\es\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\es\LC_MESSAGES" RMDir "$INSTDIR\share\locale\es\LC_MESSAGES" RMDir "$INSTDIR\share\locale\es" Delete "$INSTDIR\share\locale\et\kf5_entry.desktop" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\et\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\et\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\et\LC_MESSAGES" RMDir "$INSTDIR\share\locale\et\LC_MESSAGES" RMDir "$INSTDIR\share\locale\et" Delete "$INSTDIR\share\locale\fi\kf5_entry.desktop" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\fi\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\fi\LC_MESSAGES" RMDir "$INSTDIR\share\locale\fi\LC_MESSAGES" RMDir "$INSTDIR\share\locale\fi" Delete "$INSTDIR\share\locale\fr\kf5_entry.desktop" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\fr\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\fr\LC_MESSAGES" RMDir "$INSTDIR\share\locale\fr\LC_MESSAGES" RMDir "$INSTDIR\share\locale\fr" Delete "$INSTDIR\share\locale\gl\kf5_entry.desktop" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\gl\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\gl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\gl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\gl" Delete "$INSTDIR\share\locale\hu\kf5_entry.desktop" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\hu\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\hu\LC_MESSAGES" RMDir "$INSTDIR\share\locale\hu\LC_MESSAGES" RMDir "$INSTDIR\share\locale\hu" Delete "$INSTDIR\share\locale\ia\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ia\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ia\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ia\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ia" Delete "$INSTDIR\share\locale\it\kf5_entry.desktop" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\it\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\it\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\it\LC_MESSAGES" RMDir "$INSTDIR\share\locale\it\LC_MESSAGES" RMDir "$INSTDIR\share\locale\it" Delete "$INSTDIR\share\locale\ja\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ja\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ja\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ja\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ja" Delete "$INSTDIR\share\locale\ka\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ka\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ka\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ka\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ka" Delete "$INSTDIR\share\locale\kk\kf5_entry.desktop" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\kk\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\kk\LC_MESSAGES" RMDir "$INSTDIR\share\locale\kk\LC_MESSAGES" RMDir "$INSTDIR\share\locale\kk" Delete "$INSTDIR\share\locale\km\kf5_entry.desktop" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\km\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\km\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\km\LC_MESSAGES" RMDir "$INSTDIR\share\locale\km\LC_MESSAGES" RMDir "$INSTDIR\share\locale\km" Delete "$INSTDIR\share\locale\ko\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ko\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ko\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ko\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ko" Delete "$INSTDIR\share\locale\lv\kf5_entry.desktop" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\lv\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\lv\LC_MESSAGES" RMDir "$INSTDIR\share\locale\lv\LC_MESSAGES" RMDir "$INSTDIR\share\locale\lv" Delete "$INSTDIR\share\locale\nb\kf5_entry.desktop" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\nb\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\nb\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nb\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nb" Delete "$INSTDIR\share\locale\nds\kf5_entry.desktop" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\nds\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\nds\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nds\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nds" Delete "$INSTDIR\share\locale\nl\kf5_entry.desktop" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\nl\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\nl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nl" Delete "$INSTDIR\share\locale\nn\kf5_entry.desktop" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\nn\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\nn\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nn\LC_MESSAGES" RMDir "$INSTDIR\share\locale\nn" Delete "$INSTDIR\share\locale\pl\kf5_entry.desktop" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\pl\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\pl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\pl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\pl" Delete "$INSTDIR\share\locale\pt\kf5_entry.desktop" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\pt\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\pt\LC_MESSAGES" RMDir "$INSTDIR\share\locale\pt\LC_MESSAGES" RMDir "$INSTDIR\share\locale\pt" Delete "$INSTDIR\share\locale\pt_BR\kf5_entry.desktop" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\pt_BR\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\pt_BR\LC_MESSAGES" RMDir "$INSTDIR\share\locale\pt_BR\LC_MESSAGES" RMDir "$INSTDIR\share\locale\pt_BR" Delete "$INSTDIR\share\locale\ru\kf5_entry.desktop" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\ru\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\ru\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ru\LC_MESSAGES" RMDir "$INSTDIR\share\locale\ru" Delete "$INSTDIR\share\locale\sk\kf5_entry.desktop" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\sk\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\sk\LC_MESSAGES" RMDir "$INSTDIR\share\locale\sk\LC_MESSAGES" RMDir "$INSTDIR\share\locale\sk" Delete "$INSTDIR\share\locale\sl\kf5_entry.desktop" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\sl\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\sl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\sl\LC_MESSAGES" RMDir "$INSTDIR\share\locale\sl" Delete "$INSTDIR\share\locale\sv\kf5_entry.desktop" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\sv\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\sv\LC_MESSAGES" RMDir "$INSTDIR\share\locale\sv\LC_MESSAGES" RMDir "$INSTDIR\share\locale\sv" Delete "$INSTDIR\share\locale\tr\kf5_entry.desktop" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\tr\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\tr\LC_MESSAGES" RMDir "$INSTDIR\share\locale\tr\LC_MESSAGES" RMDir "$INSTDIR\share\locale\tr" Delete "$INSTDIR\share\locale\uk\kf5_entry.desktop" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\uk\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\uk\LC_MESSAGES" RMDir "$INSTDIR\share\locale\uk\LC_MESSAGES" RMDir "$INSTDIR\share\locale\uk" Delete "$INSTDIR\share\locale\zh_CN\kf5_entry.desktop" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\zh_CN\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\zh_CN\LC_MESSAGES" RMDir "$INSTDIR\share\locale\zh_CN\LC_MESSAGES" RMDir "$INSTDIR\share\locale\zh_CN" Delete "$INSTDIR\share\locale\zh_TW\kf5_entry.desktop" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kconfigwidgets5.mo" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\ki18n5.mo" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kiconthemes5.mo" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kxmlgui5.mo" + Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kio5.mo" + Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kparts5.mo" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kconfig5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kcompletion5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kcodecs5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kcoreaddons5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kitemviews5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kwidgetsaddons5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kwindowsystem5_qt.qm" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\libkleopatra.mo" Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\kleopatra.mo" + Delete "$INSTDIR\share\locale\zh_TW\LC_MESSAGES\okular.mo" RMDir "$INSTDIR\share\locale\zh_TW\LC_MESSAGES" RMDir "$INSTDIR\share\locale\zh_TW\LC_MESSAGES" RMDir "$INSTDIR\share\locale\zh_TW" RMDir "$INSTDIR\share\locale" RMDir "$INSTDIR\share" RMDir "$INSTDIR" SectionEnd