Index: CHANGES =================================================================== --- CHANGES +++ CHANGES @@ -10,6 +10,15 @@ All ports committers are allowed to commit to this file. +20220707: +AUTHOR: tcberner@FreeBSD.org + + A special option handler for the option called `L10N' has been added. + When this option is `ON`, all files in `L10NDIR' will be added to the + plist automatically. L10NDIR is set by default to + ${PREFIX}/share/locale + but may be overwritten by the port. + 20210604: AUTHOR: mat@FreeBSD.org Index: Mk/Scripts/check-stagedir.sh =================================================================== --- Mk/Scripts/check-stagedir.sh +++ Mk/Scripts/check-stagedir.sh @@ -86,6 +86,10 @@ sed_portdocsexamples="${sed_portdocsexamples} /^%%PORT${option}%%/d;" done unset PORT_OPTIONS + # This prevents L10N files showing up + if [ ! -z "${PLIST_AUTO_L10N}" ] ; then + sed_portdocsexamples="${sed_portdocsexamples} /^%%L10NDIR%%/d;" + fi fi sed_plist_sub=$(mktemp -t sed_plist_sub) @@ -101,6 +105,11 @@ /^@dir share\/licenses/d; \ \#@dir ${LOCALBASE}/lib/debug#d;" + # This prevents L10N files showing up + if [ ! -z "${PLIST_AUTO_L10N}" ] ; then + sed_files_gen="/^%%L10NDIR%%/d; ${sed_files_gen}" + fi + # These prevent ignoring DOCS/EXAMPLES dirs with sed_portdocsexamples sed_files="/^share\/licenses/d; \ \#${LOCALBASE}/lib/debug#d;" Index: Mk/Scripts/check_leftovers.sh =================================================================== --- Mk/Scripts/check_leftovers.sh +++ Mk/Scripts/check_leftovers.sh @@ -85,10 +85,11 @@ sub_path="@dir ${sub_path}" fi - # Handle PORTDOCS/PORTEXAMPLES/etc + # Handle PORTDOCS/PORTEXAMPLES/L10N/etc case "${orig_sub_path}" in %%DOCSDIR%%*) sub_path="%%PORTDOCS%%${sub_path}" ;; %%EXAMPLESDIR%%*) sub_path="%%PORTEXAMPLES%%${sub_path}" ;; + %%L10NDIR%%*) sub_path="%%L10N%%${sub_path}" ;; esac case $modtype in Index: Mk/bsd.options.desc.mk =================================================================== --- Mk/bsd.options.desc.mk +++ Mk/bsd.options.desc.mk @@ -189,6 +189,7 @@ KERBEROS5_DESC?= Kerberos 5 support KML_DESC?= Keyhole Markup Language (KML) support KWALLET_DESC?= KWallet password manager support +L10N_DESC?= Localization and translation LADSPA_DESC?= LADSPA audio plugins support LAME_DESC?= LAME MP3 audio encoder support LANG_AF_DESC?= Afrikaans language support Index: Mk/bsd.options.mk =================================================================== --- Mk/bsd.options.mk +++ Mk/bsd.options.mk @@ -269,7 +269,7 @@ .endfor # Some options are always enabled by default. -.for _opt in DOCS NLS EXAMPLES IPV6 +.for _opt in DOCS NLS EXAMPLES IPV6 L10N .if ${COMPLETE_OPTIONS_LIST:M${_opt}} PORT_OPTIONS+= ${_opt} .endif @@ -447,6 +447,10 @@ . endif .endfor +.if !empty(_REALLY_ALL_POSSIBLE_OPTIONS:ML10N) +PLIST_SUB+= L10NDIR="${L10NDIR_REL}" +.endif + .if defined(NO_OPTIONS_SORT) ALL_OPTIONS= ${OPTIONS_DEFINE} .endif Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk +++ Mk/bsd.port.mk @@ -888,6 +888,9 @@ # DATADIR - Name of the directory to install the packages shared data in. # Default: ${PREFIX}/share/${PORTNAME} # DATADIR_REL - The DATADIR relative to ${PREFIX} +# L10NDIR - Name of the directory to install the packages localization in. +# Default: ${PREFIX}/share/locale +# L10NDIR_REL - The L10NDIR relative to ${PREFIX} # # WWWDIR - Name of the directory to install the packages www data in. # Default: ${PREFIX}/www/${PORTNAME} @@ -1558,6 +1561,7 @@ DATADIR?= ${PREFIX}/share/${PORTNAME} DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME} ETCDIR?= ${PREFIX}/etc/${PORTNAME} +L10NDIR?= ${PREFIX}/share/locale EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME} WWWDIR?= ${PREFIX}/www/${PORTNAME} @@ -1671,7 +1675,8 @@ SCRIPTSDIR=${SCRIPTSDIR} \ PLIST_SUB_SED="${PLIST_SUB_SED}" \ PORT_OPTIONS="${PORT_OPTIONS}" \ - PORTSDIR="${PORTSDIR}" + PORTSDIR="${PORTSDIR}" \ + PLIST_AUTO_L10N="${_REALLY_ALL_POSSIBLE_OPTIONS:ML10N}" .if defined(CROSS_SYSROOT) PKG_ENV+= ABI_FILE=${CROSS_SYSROOT}/bin/sh @@ -2745,6 +2750,7 @@ DOCSDIR_REL?= ${DOCSDIR:S,^${PREFIX}/,,} EXAMPLESDIR_REL?= ${EXAMPLESDIR:S,^${PREFIX}/,,} DATADIR_REL?= ${DATADIR:S,^${PREFIX}/,,} +L10NDIR_REL?= ${L10NDIR:S,^${PREFIX}/,,} WWWDIR_REL?= ${WWWDIR:S,^${PREFIX}/,,} ETCDIR_REL?= ${ETCDIR:S,^${PREFIX}/,,} @@ -4580,6 +4586,20 @@ .endif .endfor +.if !empty(_REALLY_ALL_POSSIBLE_OPTIONS:ML10N) +.if !target(add-plist-l10n) +.if !empty(PORT_OPTIONS:ML10N) +add-plist-l10n: + ${FIND} -P ${STAGEDIR}${L10NDIR} ! -type d 2>/dev/null | \ + ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} +.else +add-plist-l10n: + ${FIND} -P ${STAGEDIR}${L10NDIR} ! -type d 2>/dev/null | \ + ${SED} -ne 's,^${STAGEDIR},@comment ,p' >> ${TMPPLIST} +.endif +.endif +.endif + .if !target(add-plist-data) .if defined(PORTDATA) add-plist-data: @@ -5322,7 +5342,8 @@ 860:install-rc-script 870:install-ldconfig-file \ 880:install-license 890:install-desktop-entries \ 900:add-plist-info 910:add-plist-docs 920:add-plist-examples \ - 930:add-plist-data 940:add-plist-post ${POST_PLIST:C/^/990:/} \ + 930:add-plist-data 940:add-plist-post 950:add-plist-l10n \ + ${POST_PLIST:C/^/990:/} \ ${_OPTIONS_install} ${_USES_install} \ ${_OPTIONS_stage} ${_USES_stage} .if defined(DEVELOPER) Index: editors/kate/Makefile =================================================================== --- editors/kate/Makefile +++ editors/kate/Makefile @@ -20,6 +20,6 @@ USE_QT= concurrent core dbus gui network script sql widgets xml \ buildtools_build qmake_build -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS L10N .include Index: editors/kate/pkg-plist =================================================================== --- editors/kate/pkg-plist +++ editors/kate/pkg-plist @@ -71,1325 +71,6 @@ share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop -share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ar/LC_MESSAGES/kate.mo -share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ar/LC_MESSAGES/katebuild-plugin.mo -share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ar/LC_MESSAGES/katefiletree.mo -share/locale/ar/LC_MESSAGES/kategdbplugin.mo -share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ar/LC_MESSAGES/kateopenheader.mo -share/locale/ar/LC_MESSAGES/kateproject.mo -share/locale/ar/LC_MESSAGES/katesearch.mo -share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ar/LC_MESSAGES/katesql.mo -share/locale/ar/LC_MESSAGES/katesymbolviewer.mo -share/locale/ar/LC_MESSAGES/katetextfilter.mo -share/locale/ar/LC_MESSAGES/katexmlcheck.mo -share/locale/ar/LC_MESSAGES/katexmltools.mo -share/locale/ar/LC_MESSAGES/kwrite.mo -share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ast/LC_MESSAGES/kate.mo -share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ast/LC_MESSAGES/katebuild-plugin.mo -share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ast/LC_MESSAGES/katefiletree.mo -share/locale/ast/LC_MESSAGES/kategdbplugin.mo -share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ast/LC_MESSAGES/kateopenheader.mo -share/locale/ast/LC_MESSAGES/kateproject.mo -share/locale/ast/LC_MESSAGES/katesearch.mo -share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ast/LC_MESSAGES/katesql.mo -share/locale/ast/LC_MESSAGES/katesymbolviewer.mo -share/locale/ast/LC_MESSAGES/katetextfilter.mo -share/locale/ast/LC_MESSAGES/katexmlcheck.mo -share/locale/ast/LC_MESSAGES/katexmltools.mo -share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ast/LC_MESSAGES/kwrite.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo -share/locale/az/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/az/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/az/LC_MESSAGES/kate.mo -share/locale/az/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/az/LC_MESSAGES/katebuild-plugin.mo -share/locale/az/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/az/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/az/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/az/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/az/LC_MESSAGES/katefiletree.mo -share/locale/az/LC_MESSAGES/kategdbplugin.mo -share/locale/az/LC_MESSAGES/kategitblameplugin.mo -share/locale/az/LC_MESSAGES/katekonsoleplugin.mo -share/locale/az/LC_MESSAGES/kateopenheader.mo -share/locale/az/LC_MESSAGES/kateproject.mo -share/locale/az/LC_MESSAGES/katesearch.mo -share/locale/az/LC_MESSAGES/katesnippetsplugin.mo -share/locale/az/LC_MESSAGES/katesql.mo -share/locale/az/LC_MESSAGES/katesymbolviewer.mo -share/locale/az/LC_MESSAGES/katetextfilter.mo -share/locale/az/LC_MESSAGES/katexmlcheck.mo -share/locale/az/LC_MESSAGES/katexmltools.mo -share/locale/az/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/az/LC_MESSAGES/kwrite.mo -share/locale/az/LC_MESSAGES/lspclient.mo -share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/az/LC_MESSAGES/tabswitcherplugin.mo -share/locale/be/LC_MESSAGES/kate.mo -share/locale/be/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/be/LC_MESSAGES/katekonsoleplugin.mo -share/locale/be/LC_MESSAGES/kateopenheader.mo -share/locale/be/LC_MESSAGES/katesymbolviewer.mo -share/locale/be/LC_MESSAGES/katetextfilter.mo -share/locale/be/LC_MESSAGES/katexmltools.mo -share/locale/be/LC_MESSAGES/kwrite.mo -share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/bg/LC_MESSAGES/kate.mo -share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo -share/locale/bg/LC_MESSAGES/kateopenheader.mo -share/locale/bg/LC_MESSAGES/katesearch.mo -share/locale/bg/LC_MESSAGES/katesql.mo -share/locale/bg/LC_MESSAGES/katesymbolviewer.mo -share/locale/bg/LC_MESSAGES/kwrite.mo -share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/bs/LC_MESSAGES/kate.mo -share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/bs/LC_MESSAGES/katebuild-plugin.mo -share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/bs/LC_MESSAGES/katefiletree.mo -share/locale/bs/LC_MESSAGES/kategdbplugin.mo -share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo -share/locale/bs/LC_MESSAGES/kateopenheader.mo -share/locale/bs/LC_MESSAGES/kateproject.mo -share/locale/bs/LC_MESSAGES/katesearch.mo -share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo -share/locale/bs/LC_MESSAGES/katesql.mo -share/locale/bs/LC_MESSAGES/katesymbolviewer.mo -share/locale/bs/LC_MESSAGES/katetextfilter.mo -share/locale/bs/LC_MESSAGES/katexmltools.mo -share/locale/bs/LC_MESSAGES/kwrite.mo -share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ca/LC_MESSAGES/kate.mo -share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ca/LC_MESSAGES/katebuild-plugin.mo -share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ca/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ca/LC_MESSAGES/katefiletree.mo -share/locale/ca/LC_MESSAGES/kategdbplugin.mo -share/locale/ca/LC_MESSAGES/kategitblameplugin.mo -share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ca/LC_MESSAGES/kateopenheader.mo -share/locale/ca/LC_MESSAGES/kateproject.mo -share/locale/ca/LC_MESSAGES/katesearch.mo -share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ca/LC_MESSAGES/katesql.mo -share/locale/ca/LC_MESSAGES/katesymbolviewer.mo -share/locale/ca/LC_MESSAGES/katetextfilter.mo -share/locale/ca/LC_MESSAGES/katexmlcheck.mo -share/locale/ca/LC_MESSAGES/katexmltools.mo -share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ca/LC_MESSAGES/kwrite.mo -share/locale/ca/LC_MESSAGES/lspclient.mo -share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ca@valencia/LC_MESSAGES/kate.mo -share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo -share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ca@valencia/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo -share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo -share/locale/ca@valencia/LC_MESSAGES/kategitblameplugin.mo -share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo -share/locale/ca@valencia/LC_MESSAGES/kateproject.mo -share/locale/ca@valencia/LC_MESSAGES/katesearch.mo -share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ca@valencia/LC_MESSAGES/katesql.mo -share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo -share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo -share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo -share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo -share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ca@valencia/LC_MESSAGES/kwrite.mo -share/locale/ca@valencia/LC_MESSAGES/lspclient.mo -share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo -share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/cs/LC_MESSAGES/kate.mo -share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/cs/LC_MESSAGES/katebuild-plugin.mo -share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/cs/LC_MESSAGES/katefiletree.mo -share/locale/cs/LC_MESSAGES/kategdbplugin.mo -share/locale/cs/LC_MESSAGES/kategitblameplugin.mo -share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo -share/locale/cs/LC_MESSAGES/kateopenheader.mo -share/locale/cs/LC_MESSAGES/kateproject.mo -share/locale/cs/LC_MESSAGES/katesearch.mo -share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo -share/locale/cs/LC_MESSAGES/katesql.mo -share/locale/cs/LC_MESSAGES/katesymbolviewer.mo -share/locale/cs/LC_MESSAGES/katetextfilter.mo -share/locale/cs/LC_MESSAGES/katexmlcheck.mo -share/locale/cs/LC_MESSAGES/katexmltools.mo -share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/cs/LC_MESSAGES/kwrite.mo -share/locale/cs/LC_MESSAGES/lspclient.mo -share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo -share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/da/LC_MESSAGES/kate.mo -share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/da/LC_MESSAGES/katebuild-plugin.mo -share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/da/LC_MESSAGES/katefiletree.mo -share/locale/da/LC_MESSAGES/kategdbplugin.mo -share/locale/da/LC_MESSAGES/katekonsoleplugin.mo -share/locale/da/LC_MESSAGES/kateopenheader.mo -share/locale/da/LC_MESSAGES/kateproject.mo -share/locale/da/LC_MESSAGES/katesearch.mo -share/locale/da/LC_MESSAGES/katesnippetsplugin.mo -share/locale/da/LC_MESSAGES/katesql.mo -share/locale/da/LC_MESSAGES/katesymbolviewer.mo -share/locale/da/LC_MESSAGES/katetextfilter.mo -share/locale/da/LC_MESSAGES/katexmlcheck.mo -share/locale/da/LC_MESSAGES/katexmltools.mo -share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/da/LC_MESSAGES/kwrite.mo -share/locale/da/LC_MESSAGES/lspclient.mo -share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/da/LC_MESSAGES/tabswitcherplugin.mo -share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/de/LC_MESSAGES/kate.mo -share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/de/LC_MESSAGES/katebuild-plugin.mo -share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/de/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/de/LC_MESSAGES/katefiletree.mo -share/locale/de/LC_MESSAGES/kategdbplugin.mo -share/locale/de/LC_MESSAGES/kategitblameplugin.mo -share/locale/de/LC_MESSAGES/katekonsoleplugin.mo -share/locale/de/LC_MESSAGES/kateopenheader.mo -share/locale/de/LC_MESSAGES/kateproject.mo -share/locale/de/LC_MESSAGES/katesearch.mo -share/locale/de/LC_MESSAGES/katesnippetsplugin.mo -share/locale/de/LC_MESSAGES/katesql.mo -share/locale/de/LC_MESSAGES/katesymbolviewer.mo -share/locale/de/LC_MESSAGES/katetextfilter.mo -share/locale/de/LC_MESSAGES/katexmlcheck.mo -share/locale/de/LC_MESSAGES/katexmltools.mo -share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/de/LC_MESSAGES/kwrite.mo -share/locale/de/LC_MESSAGES/lspclient.mo -share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/de/LC_MESSAGES/tabswitcherplugin.mo -share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/el/LC_MESSAGES/kate.mo -share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/el/LC_MESSAGES/katebuild-plugin.mo -share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/el/LC_MESSAGES/katefiletree.mo -share/locale/el/LC_MESSAGES/kategdbplugin.mo -share/locale/el/LC_MESSAGES/katekonsoleplugin.mo -share/locale/el/LC_MESSAGES/kateopenheader.mo -share/locale/el/LC_MESSAGES/kateproject.mo -share/locale/el/LC_MESSAGES/katesearch.mo -share/locale/el/LC_MESSAGES/katesnippetsplugin.mo -share/locale/el/LC_MESSAGES/katesql.mo -share/locale/el/LC_MESSAGES/katesymbolviewer.mo -share/locale/el/LC_MESSAGES/katetextfilter.mo -share/locale/el/LC_MESSAGES/katexmlcheck.mo -share/locale/el/LC_MESSAGES/katexmltools.mo -share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/el/LC_MESSAGES/kwrite.mo -share/locale/el/LC_MESSAGES/lspclient.mo -share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/el/LC_MESSAGES/tabswitcherplugin.mo -share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/en_GB/LC_MESSAGES/kate.mo -share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo -share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/en_GB/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/en_GB/LC_MESSAGES/katefiletree.mo -share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo -share/locale/en_GB/LC_MESSAGES/kategitblameplugin.mo -share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo -share/locale/en_GB/LC_MESSAGES/kateopenheader.mo -share/locale/en_GB/LC_MESSAGES/kateproject.mo -share/locale/en_GB/LC_MESSAGES/katesearch.mo -share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo -share/locale/en_GB/LC_MESSAGES/katesql.mo -share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo -share/locale/en_GB/LC_MESSAGES/katetextfilter.mo -share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo -share/locale/en_GB/LC_MESSAGES/katexmltools.mo -share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/en_GB/LC_MESSAGES/kwrite.mo -share/locale/en_GB/LC_MESSAGES/lspclient.mo -share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo -share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/eo/LC_MESSAGES/kate.mo -share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/eo/LC_MESSAGES/katebuild-plugin.mo -share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo -share/locale/eo/LC_MESSAGES/kateopenheader.mo -share/locale/eo/LC_MESSAGES/katesymbolviewer.mo -share/locale/eo/LC_MESSAGES/katetextfilter.mo -share/locale/eo/LC_MESSAGES/katexmltools.mo -share/locale/eo/LC_MESSAGES/kwrite.mo -share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/es/LC_MESSAGES/kate.mo -share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/es/LC_MESSAGES/katebuild-plugin.mo -share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/es/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/es/LC_MESSAGES/katefiletree.mo -share/locale/es/LC_MESSAGES/kategdbplugin.mo -share/locale/es/LC_MESSAGES/kategitblameplugin.mo -share/locale/es/LC_MESSAGES/katekonsoleplugin.mo -share/locale/es/LC_MESSAGES/kateopenheader.mo -share/locale/es/LC_MESSAGES/kateproject.mo -share/locale/es/LC_MESSAGES/katesearch.mo -share/locale/es/LC_MESSAGES/katesnippetsplugin.mo -share/locale/es/LC_MESSAGES/katesql.mo -share/locale/es/LC_MESSAGES/katesymbolviewer.mo -share/locale/es/LC_MESSAGES/katetextfilter.mo -share/locale/es/LC_MESSAGES/katexmlcheck.mo -share/locale/es/LC_MESSAGES/katexmltools.mo -share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/es/LC_MESSAGES/kwrite.mo -share/locale/es/LC_MESSAGES/lspclient.mo -share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/es/LC_MESSAGES/tabswitcherplugin.mo -share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/et/LC_MESSAGES/kate.mo -share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/et/LC_MESSAGES/katebuild-plugin.mo -share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/et/LC_MESSAGES/katefiletree.mo -share/locale/et/LC_MESSAGES/kategdbplugin.mo -share/locale/et/LC_MESSAGES/katekonsoleplugin.mo -share/locale/et/LC_MESSAGES/kateopenheader.mo -share/locale/et/LC_MESSAGES/kateproject.mo -share/locale/et/LC_MESSAGES/katesearch.mo -share/locale/et/LC_MESSAGES/katesnippetsplugin.mo -share/locale/et/LC_MESSAGES/katesql.mo -share/locale/et/LC_MESSAGES/katesymbolviewer.mo -share/locale/et/LC_MESSAGES/katetextfilter.mo -share/locale/et/LC_MESSAGES/katexmlcheck.mo -share/locale/et/LC_MESSAGES/katexmltools.mo -share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/et/LC_MESSAGES/kwrite.mo -share/locale/et/LC_MESSAGES/lspclient.mo -share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/et/LC_MESSAGES/tabswitcherplugin.mo -share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/eu/LC_MESSAGES/kate.mo -share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/eu/LC_MESSAGES/katebuild-plugin.mo -share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/eu/LC_MESSAGES/katefiletree.mo -share/locale/eu/LC_MESSAGES/kategdbplugin.mo -share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo -share/locale/eu/LC_MESSAGES/kateopenheader.mo -share/locale/eu/LC_MESSAGES/kateproject.mo -share/locale/eu/LC_MESSAGES/katesearch.mo -share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo -share/locale/eu/LC_MESSAGES/katesql.mo -share/locale/eu/LC_MESSAGES/katesymbolviewer.mo -share/locale/eu/LC_MESSAGES/katetextfilter.mo -share/locale/eu/LC_MESSAGES/katexmlcheck.mo -share/locale/eu/LC_MESSAGES/katexmltools.mo -share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/eu/LC_MESSAGES/kwrite.mo -share/locale/eu/LC_MESSAGES/lspclient.mo -share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo -share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/fa/LC_MESSAGES/kate.mo -share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/fa/LC_MESSAGES/katebuild-plugin.mo -share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/fa/LC_MESSAGES/kategdbplugin.mo -share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo -share/locale/fa/LC_MESSAGES/kateopenheader.mo -share/locale/fa/LC_MESSAGES/katetextfilter.mo -share/locale/fa/LC_MESSAGES/katexmltools.mo -share/locale/fa/LC_MESSAGES/kwrite.mo -share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/fi/LC_MESSAGES/kate.mo -share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/fi/LC_MESSAGES/katebuild-plugin.mo -share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/fi/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/fi/LC_MESSAGES/katefiletree.mo -share/locale/fi/LC_MESSAGES/kategdbplugin.mo -share/locale/fi/LC_MESSAGES/kategitblameplugin.mo -share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo -share/locale/fi/LC_MESSAGES/kateopenheader.mo -share/locale/fi/LC_MESSAGES/kateproject.mo -share/locale/fi/LC_MESSAGES/katesearch.mo -share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo -share/locale/fi/LC_MESSAGES/katesql.mo -share/locale/fi/LC_MESSAGES/katesymbolviewer.mo -share/locale/fi/LC_MESSAGES/katetextfilter.mo -share/locale/fi/LC_MESSAGES/katexmlcheck.mo -share/locale/fi/LC_MESSAGES/katexmltools.mo -share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/fi/LC_MESSAGES/kwrite.mo -share/locale/fi/LC_MESSAGES/lspclient.mo -share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo -share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/fr/LC_MESSAGES/kate.mo -share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/fr/LC_MESSAGES/katebuild-plugin.mo -share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/fr/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/fr/LC_MESSAGES/katefiletree.mo -share/locale/fr/LC_MESSAGES/kategdbplugin.mo -share/locale/fr/LC_MESSAGES/kategitblameplugin.mo -share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo -share/locale/fr/LC_MESSAGES/kateopenheader.mo -share/locale/fr/LC_MESSAGES/kateproject.mo -share/locale/fr/LC_MESSAGES/katesearch.mo -share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo -share/locale/fr/LC_MESSAGES/katesql.mo -share/locale/fr/LC_MESSAGES/katesymbolviewer.mo -share/locale/fr/LC_MESSAGES/katetextfilter.mo -share/locale/fr/LC_MESSAGES/katexmlcheck.mo -share/locale/fr/LC_MESSAGES/katexmltools.mo -share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/fr/LC_MESSAGES/kwrite.mo -share/locale/fr/LC_MESSAGES/lspclient.mo -share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ga/LC_MESSAGES/kate.mo -share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ga/LC_MESSAGES/katebuild-plugin.mo -share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ga/LC_MESSAGES/kategdbplugin.mo -share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ga/LC_MESSAGES/kateopenheader.mo -share/locale/ga/LC_MESSAGES/kateproject.mo -share/locale/ga/LC_MESSAGES/katesearch.mo -share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ga/LC_MESSAGES/katesql.mo -share/locale/ga/LC_MESSAGES/katesymbolviewer.mo -share/locale/ga/LC_MESSAGES/katetextfilter.mo -share/locale/ga/LC_MESSAGES/katexmltools.mo -share/locale/ga/LC_MESSAGES/kwrite.mo -share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/gl/LC_MESSAGES/kate.mo -share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/gl/LC_MESSAGES/katebuild-plugin.mo -share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/gl/LC_MESSAGES/katefiletree.mo -share/locale/gl/LC_MESSAGES/kategdbplugin.mo -share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo -share/locale/gl/LC_MESSAGES/kateopenheader.mo -share/locale/gl/LC_MESSAGES/kateproject.mo -share/locale/gl/LC_MESSAGES/katesearch.mo -share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo -share/locale/gl/LC_MESSAGES/katesql.mo -share/locale/gl/LC_MESSAGES/katesymbolviewer.mo -share/locale/gl/LC_MESSAGES/katetextfilter.mo -share/locale/gl/LC_MESSAGES/katexmlcheck.mo -share/locale/gl/LC_MESSAGES/katexmltools.mo -share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/gl/LC_MESSAGES/kwrite.mo -share/locale/gl/LC_MESSAGES/lspclient.mo -share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo -share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/he/LC_MESSAGES/kate.mo -share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/he/LC_MESSAGES/katebuild-plugin.mo -share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/he/LC_MESSAGES/katekonsoleplugin.mo -share/locale/he/LC_MESSAGES/kateopenheader.mo -share/locale/he/LC_MESSAGES/kateproject.mo -share/locale/he/LC_MESSAGES/katesearch.mo -share/locale/he/LC_MESSAGES/katesymbolviewer.mo -share/locale/he/LC_MESSAGES/katetextfilter.mo -share/locale/he/LC_MESSAGES/katexmltools.mo -share/locale/he/LC_MESSAGES/kwrite.mo -share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/hi/LC_MESSAGES/kate.mo -share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo -share/locale/hi/LC_MESSAGES/kateopenheader.mo -share/locale/hi/LC_MESSAGES/katesymbolviewer.mo -share/locale/hi/LC_MESSAGES/katetextfilter.mo -share/locale/hi/LC_MESSAGES/katexmltools.mo -share/locale/hi/LC_MESSAGES/kwrite.mo -share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/hr/LC_MESSAGES/kate.mo -share/locale/hr/LC_MESSAGES/kateopenheader.mo -share/locale/hr/LC_MESSAGES/katesymbolviewer.mo -share/locale/hr/LC_MESSAGES/katetextfilter.mo -share/locale/hr/LC_MESSAGES/katexmltools.mo -share/locale/hr/LC_MESSAGES/kwrite.mo -share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/hu/LC_MESSAGES/kate.mo -share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/hu/LC_MESSAGES/katebuild-plugin.mo -share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/hu/LC_MESSAGES/katefiletree.mo -share/locale/hu/LC_MESSAGES/kategdbplugin.mo -share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo -share/locale/hu/LC_MESSAGES/kateopenheader.mo -share/locale/hu/LC_MESSAGES/kateproject.mo -share/locale/hu/LC_MESSAGES/katesearch.mo -share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo -share/locale/hu/LC_MESSAGES/katesql.mo -share/locale/hu/LC_MESSAGES/katesymbolviewer.mo -share/locale/hu/LC_MESSAGES/katetextfilter.mo -share/locale/hu/LC_MESSAGES/katexmltools.mo -share/locale/hu/LC_MESSAGES/kwrite.mo -share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ia/LC_MESSAGES/kate.mo -share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ia/LC_MESSAGES/katebuild-plugin.mo -share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ia/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ia/LC_MESSAGES/katefiletree.mo -share/locale/ia/LC_MESSAGES/kategdbplugin.mo -share/locale/ia/LC_MESSAGES/kategitblameplugin.mo -share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ia/LC_MESSAGES/kateopenheader.mo -share/locale/ia/LC_MESSAGES/kateproject.mo -share/locale/ia/LC_MESSAGES/katesearch.mo -share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ia/LC_MESSAGES/katesql.mo -share/locale/ia/LC_MESSAGES/katesymbolviewer.mo -share/locale/ia/LC_MESSAGES/katetextfilter.mo -share/locale/ia/LC_MESSAGES/katexmlcheck.mo -share/locale/ia/LC_MESSAGES/katexmltools.mo -share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ia/LC_MESSAGES/kwrite.mo -share/locale/ia/LC_MESSAGES/lspclient.mo -share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo -share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/id/LC_MESSAGES/kate.mo -share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/id/LC_MESSAGES/katebuild-plugin.mo -share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/id/LC_MESSAGES/katefiletree.mo -share/locale/id/LC_MESSAGES/kategdbplugin.mo -share/locale/id/LC_MESSAGES/katekonsoleplugin.mo -share/locale/id/LC_MESSAGES/kateopenheader.mo -share/locale/id/LC_MESSAGES/kateproject.mo -share/locale/id/LC_MESSAGES/katesearch.mo -share/locale/id/LC_MESSAGES/katesnippetsplugin.mo -share/locale/id/LC_MESSAGES/katesql.mo -share/locale/id/LC_MESSAGES/katesymbolviewer.mo -share/locale/id/LC_MESSAGES/katetextfilter.mo -share/locale/id/LC_MESSAGES/katexmlcheck.mo -share/locale/id/LC_MESSAGES/katexmltools.mo -share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/id/LC_MESSAGES/kwrite.mo -share/locale/id/LC_MESSAGES/lspclient.mo -share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/id/LC_MESSAGES/tabswitcherplugin.mo -share/locale/is/LC_MESSAGES/kate.mo -share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/is/LC_MESSAGES/katekonsoleplugin.mo -share/locale/is/LC_MESSAGES/kateopenheader.mo -share/locale/is/LC_MESSAGES/katesearch.mo -share/locale/is/LC_MESSAGES/katesymbolviewer.mo -share/locale/is/LC_MESSAGES/katetextfilter.mo -share/locale/is/LC_MESSAGES/katexmltools.mo -share/locale/is/LC_MESSAGES/kwrite.mo -share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/it/LC_MESSAGES/kate.mo -share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/it/LC_MESSAGES/katebuild-plugin.mo -share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/it/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/it/LC_MESSAGES/katefiletree.mo -share/locale/it/LC_MESSAGES/kategdbplugin.mo -share/locale/it/LC_MESSAGES/kategitblameplugin.mo -share/locale/it/LC_MESSAGES/katekonsoleplugin.mo -share/locale/it/LC_MESSAGES/kateopenheader.mo -share/locale/it/LC_MESSAGES/kateproject.mo -share/locale/it/LC_MESSAGES/katesearch.mo -share/locale/it/LC_MESSAGES/katesnippetsplugin.mo -share/locale/it/LC_MESSAGES/katesql.mo -share/locale/it/LC_MESSAGES/katesymbolviewer.mo -share/locale/it/LC_MESSAGES/katetextfilter.mo -share/locale/it/LC_MESSAGES/katexmlcheck.mo -share/locale/it/LC_MESSAGES/katexmltools.mo -share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/it/LC_MESSAGES/kwrite.mo -share/locale/it/LC_MESSAGES/lspclient.mo -share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/it/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ja/LC_MESSAGES/kate.mo -share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ja/LC_MESSAGES/katebuild-plugin.mo -share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ja/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ja/LC_MESSAGES/katefiletree.mo -share/locale/ja/LC_MESSAGES/kategdbplugin.mo -share/locale/ja/LC_MESSAGES/kategitblameplugin.mo -share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ja/LC_MESSAGES/kateopenheader.mo -share/locale/ja/LC_MESSAGES/kateproject.mo -share/locale/ja/LC_MESSAGES/katesearch.mo -share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ja/LC_MESSAGES/katesql.mo -share/locale/ja/LC_MESSAGES/katesymbolviewer.mo -share/locale/ja/LC_MESSAGES/katetextfilter.mo -share/locale/ja/LC_MESSAGES/katexmlcheck.mo -share/locale/ja/LC_MESSAGES/katexmltools.mo -share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ja/LC_MESSAGES/kwrite.mo -share/locale/ja/LC_MESSAGES/lspclient.mo -share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo -share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/kk/LC_MESSAGES/kate.mo -share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/kk/LC_MESSAGES/katebuild-plugin.mo -share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/kk/LC_MESSAGES/kategdbplugin.mo -share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo -share/locale/kk/LC_MESSAGES/kateopenheader.mo -share/locale/kk/LC_MESSAGES/kateproject.mo -share/locale/kk/LC_MESSAGES/katesearch.mo -share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo -share/locale/kk/LC_MESSAGES/katesql.mo -share/locale/kk/LC_MESSAGES/katesymbolviewer.mo -share/locale/kk/LC_MESSAGES/katetextfilter.mo -share/locale/kk/LC_MESSAGES/katexmltools.mo -share/locale/kk/LC_MESSAGES/kwrite.mo -share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/km/LC_MESSAGES/kate.mo -share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/km/LC_MESSAGES/katebuild-plugin.mo -share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/km/LC_MESSAGES/kategdbplugin.mo -share/locale/km/LC_MESSAGES/katekonsoleplugin.mo -share/locale/km/LC_MESSAGES/kateopenheader.mo -share/locale/km/LC_MESSAGES/katesearch.mo -share/locale/km/LC_MESSAGES/katesql.mo -share/locale/km/LC_MESSAGES/katesymbolviewer.mo -share/locale/km/LC_MESSAGES/katetextfilter.mo -share/locale/km/LC_MESSAGES/katexmltools.mo -share/locale/km/LC_MESSAGES/kwrite.mo -share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ko/LC_MESSAGES/kate.mo -share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ko/LC_MESSAGES/katebuild-plugin.mo -share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ko/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ko/LC_MESSAGES/katefiletree.mo -share/locale/ko/LC_MESSAGES/kategdbplugin.mo -share/locale/ko/LC_MESSAGES/kategitblameplugin.mo -share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ko/LC_MESSAGES/kateopenheader.mo -share/locale/ko/LC_MESSAGES/kateproject.mo -share/locale/ko/LC_MESSAGES/katesearch.mo -share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ko/LC_MESSAGES/katesql.mo -share/locale/ko/LC_MESSAGES/katesymbolviewer.mo -share/locale/ko/LC_MESSAGES/katetextfilter.mo -share/locale/ko/LC_MESSAGES/katexmlcheck.mo -share/locale/ko/LC_MESSAGES/katexmltools.mo -share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ko/LC_MESSAGES/kwrite.mo -share/locale/ko/LC_MESSAGES/lspclient.mo -share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo -share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/lt/LC_MESSAGES/kate.mo -share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/lt/LC_MESSAGES/katebuild-plugin.mo -share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/lt/LC_MESSAGES/katefiletree.mo -share/locale/lt/LC_MESSAGES/kategdbplugin.mo -share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo -share/locale/lt/LC_MESSAGES/kateopenheader.mo -share/locale/lt/LC_MESSAGES/kateproject.mo -share/locale/lt/LC_MESSAGES/katesearch.mo -share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo -share/locale/lt/LC_MESSAGES/katesql.mo -share/locale/lt/LC_MESSAGES/katesymbolviewer.mo -share/locale/lt/LC_MESSAGES/katetextfilter.mo -share/locale/lt/LC_MESSAGES/katexmlcheck.mo -share/locale/lt/LC_MESSAGES/katexmltools.mo -share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/lt/LC_MESSAGES/kwrite.mo -share/locale/lt/LC_MESSAGES/lspclient.mo -share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo -share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/lv/LC_MESSAGES/kate.mo -share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/lv/LC_MESSAGES/katebuild-plugin.mo -share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/lv/LC_MESSAGES/kategdbplugin.mo -share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo -share/locale/lv/LC_MESSAGES/kateopenheader.mo -share/locale/lv/LC_MESSAGES/katesearch.mo -share/locale/lv/LC_MESSAGES/katesql.mo -share/locale/lv/LC_MESSAGES/katesymbolviewer.mo -share/locale/lv/LC_MESSAGES/katetextfilter.mo -share/locale/lv/LC_MESSAGES/katexmltools.mo -share/locale/lv/LC_MESSAGES/kwrite.mo -share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ml/LC_MESSAGES/kate.mo -share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ml/LC_MESSAGES/katebuild-plugin.mo -share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ml/LC_MESSAGES/katefiletree.mo -share/locale/ml/LC_MESSAGES/kategdbplugin.mo -share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ml/LC_MESSAGES/kateopenheader.mo -share/locale/ml/LC_MESSAGES/kateproject.mo -share/locale/ml/LC_MESSAGES/katesearch.mo -share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ml/LC_MESSAGES/katesql.mo -share/locale/ml/LC_MESSAGES/katesymbolviewer.mo -share/locale/ml/LC_MESSAGES/katetextfilter.mo -share/locale/ml/LC_MESSAGES/katexmlcheck.mo -share/locale/ml/LC_MESSAGES/katexmltools.mo -share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ml/LC_MESSAGES/kwrite.mo -share/locale/ml/LC_MESSAGES/lspclient.mo -share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo -share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/mr/LC_MESSAGES/kate.mo -share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/mr/LC_MESSAGES/katebuild-plugin.mo -share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/mr/LC_MESSAGES/kategdbplugin.mo -share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo -share/locale/mr/LC_MESSAGES/kateopenheader.mo -share/locale/mr/LC_MESSAGES/kateproject.mo -share/locale/mr/LC_MESSAGES/katesearch.mo -share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo -share/locale/mr/LC_MESSAGES/katesql.mo -share/locale/mr/LC_MESSAGES/katesymbolviewer.mo -share/locale/mr/LC_MESSAGES/katetextfilter.mo -share/locale/mr/LC_MESSAGES/katexmltools.mo -share/locale/mr/LC_MESSAGES/kwrite.mo -share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/nb/LC_MESSAGES/kate.mo -share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/nb/LC_MESSAGES/katebuild-plugin.mo -share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/nb/LC_MESSAGES/katefiletree.mo -share/locale/nb/LC_MESSAGES/kategdbplugin.mo -share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo -share/locale/nb/LC_MESSAGES/kateopenheader.mo -share/locale/nb/LC_MESSAGES/kateproject.mo -share/locale/nb/LC_MESSAGES/katesearch.mo -share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo -share/locale/nb/LC_MESSAGES/katesql.mo -share/locale/nb/LC_MESSAGES/katesymbolviewer.mo -share/locale/nb/LC_MESSAGES/katetextfilter.mo -share/locale/nb/LC_MESSAGES/katexmltools.mo -share/locale/nb/LC_MESSAGES/kwrite.mo -share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo -share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/nds/LC_MESSAGES/kate.mo -share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/nds/LC_MESSAGES/katebuild-plugin.mo -share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/nds/LC_MESSAGES/katefiletree.mo -share/locale/nds/LC_MESSAGES/kategdbplugin.mo -share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo -share/locale/nds/LC_MESSAGES/kateopenheader.mo -share/locale/nds/LC_MESSAGES/kateproject.mo -share/locale/nds/LC_MESSAGES/katesearch.mo -share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo -share/locale/nds/LC_MESSAGES/katesql.mo -share/locale/nds/LC_MESSAGES/katesymbolviewer.mo -share/locale/nds/LC_MESSAGES/katetextfilter.mo -share/locale/nds/LC_MESSAGES/katexmltools.mo -share/locale/nds/LC_MESSAGES/kwrite.mo -share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo -share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/nl/LC_MESSAGES/kate.mo -share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/nl/LC_MESSAGES/katebuild-plugin.mo -share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/nl/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/nl/LC_MESSAGES/katefiletree.mo -share/locale/nl/LC_MESSAGES/kategdbplugin.mo -share/locale/nl/LC_MESSAGES/kategitblameplugin.mo -share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo -share/locale/nl/LC_MESSAGES/kateopenheader.mo -share/locale/nl/LC_MESSAGES/kateproject.mo -share/locale/nl/LC_MESSAGES/katesearch.mo -share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo -share/locale/nl/LC_MESSAGES/katesql.mo -share/locale/nl/LC_MESSAGES/katesymbolviewer.mo -share/locale/nl/LC_MESSAGES/katetextfilter.mo -share/locale/nl/LC_MESSAGES/katexmlcheck.mo -share/locale/nl/LC_MESSAGES/katexmltools.mo -share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/nl/LC_MESSAGES/kwrite.mo -share/locale/nl/LC_MESSAGES/lspclient.mo -share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo -share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/nn/LC_MESSAGES/kate.mo -share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/nn/LC_MESSAGES/katebuild-plugin.mo -share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/nn/LC_MESSAGES/katefiletree.mo -share/locale/nn/LC_MESSAGES/kategdbplugin.mo -share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo -share/locale/nn/LC_MESSAGES/kateopenheader.mo -share/locale/nn/LC_MESSAGES/kateproject.mo -share/locale/nn/LC_MESSAGES/katesearch.mo -share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo -share/locale/nn/LC_MESSAGES/katesql.mo -share/locale/nn/LC_MESSAGES/katesymbolviewer.mo -share/locale/nn/LC_MESSAGES/katetextfilter.mo -share/locale/nn/LC_MESSAGES/katexmlcheck.mo -share/locale/nn/LC_MESSAGES/katexmltools.mo -share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/nn/LC_MESSAGES/kwrite.mo -share/locale/nn/LC_MESSAGES/lspclient.mo -share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo -share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/pa/LC_MESSAGES/kate.mo -share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/pa/LC_MESSAGES/katebuild-plugin.mo -share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/pa/LC_MESSAGES/katefiletree.mo -share/locale/pa/LC_MESSAGES/kategdbplugin.mo -share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo -share/locale/pa/LC_MESSAGES/kateopenheader.mo -share/locale/pa/LC_MESSAGES/kateproject.mo -share/locale/pa/LC_MESSAGES/katesearch.mo -share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo -share/locale/pa/LC_MESSAGES/katesql.mo -share/locale/pa/LC_MESSAGES/katesymbolviewer.mo -share/locale/pa/LC_MESSAGES/katetextfilter.mo -share/locale/pa/LC_MESSAGES/katexmltools.mo -share/locale/pa/LC_MESSAGES/kwrite.mo -share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo -share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/pl/LC_MESSAGES/kate.mo -share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/pl/LC_MESSAGES/katebuild-plugin.mo -share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/pl/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/pl/LC_MESSAGES/katefiletree.mo -share/locale/pl/LC_MESSAGES/kategdbplugin.mo -share/locale/pl/LC_MESSAGES/kategitblameplugin.mo -share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo -share/locale/pl/LC_MESSAGES/kateopenheader.mo -share/locale/pl/LC_MESSAGES/kateproject.mo -share/locale/pl/LC_MESSAGES/katesearch.mo -share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo -share/locale/pl/LC_MESSAGES/katesql.mo -share/locale/pl/LC_MESSAGES/katesymbolviewer.mo -share/locale/pl/LC_MESSAGES/katetextfilter.mo -share/locale/pl/LC_MESSAGES/katexmlcheck.mo -share/locale/pl/LC_MESSAGES/katexmltools.mo -share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/pl/LC_MESSAGES/kwrite.mo -share/locale/pl/LC_MESSAGES/lspclient.mo -share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo -share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/pt/LC_MESSAGES/kate.mo -share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/pt/LC_MESSAGES/katebuild-plugin.mo -share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/pt/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/pt/LC_MESSAGES/katefiletree.mo -share/locale/pt/LC_MESSAGES/kategdbplugin.mo -share/locale/pt/LC_MESSAGES/kategitblameplugin.mo -share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo -share/locale/pt/LC_MESSAGES/kateopenheader.mo -share/locale/pt/LC_MESSAGES/kateproject.mo -share/locale/pt/LC_MESSAGES/katesearch.mo -share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo -share/locale/pt/LC_MESSAGES/katesql.mo -share/locale/pt/LC_MESSAGES/katesymbolviewer.mo -share/locale/pt/LC_MESSAGES/katetextfilter.mo -share/locale/pt/LC_MESSAGES/katexmlcheck.mo -share/locale/pt/LC_MESSAGES/katexmltools.mo -share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/pt/LC_MESSAGES/kwrite.mo -share/locale/pt/LC_MESSAGES/lspclient.mo -share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo -share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/pt_BR/LC_MESSAGES/kate.mo -share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo -share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/pt_BR/LC_MESSAGES/katefiletree.mo -share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo -share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo -share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo -share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo -share/locale/pt_BR/LC_MESSAGES/kateproject.mo -share/locale/pt_BR/LC_MESSAGES/katesearch.mo -share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo -share/locale/pt_BR/LC_MESSAGES/katesql.mo -share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo -share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo -share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo -share/locale/pt_BR/LC_MESSAGES/katexmltools.mo -share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/pt_BR/LC_MESSAGES/kwrite.mo -share/locale/pt_BR/LC_MESSAGES/lspclient.mo -share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ro/LC_MESSAGES/kate.mo -share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ro/LC_MESSAGES/katebuild-plugin.mo -share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ro/LC_MESSAGES/katefiletree.mo -share/locale/ro/LC_MESSAGES/kategdbplugin.mo -share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ro/LC_MESSAGES/kateopenheader.mo -share/locale/ro/LC_MESSAGES/kateproject.mo -share/locale/ro/LC_MESSAGES/katesearch.mo -share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ro/LC_MESSAGES/katesql.mo -share/locale/ro/LC_MESSAGES/katesymbolviewer.mo -share/locale/ro/LC_MESSAGES/katetextfilter.mo -share/locale/ro/LC_MESSAGES/katexmlcheck.mo -share/locale/ro/LC_MESSAGES/katexmltools.mo -share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ro/LC_MESSAGES/kwrite.mo -share/locale/ro/LC_MESSAGES/lspclient.mo -share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ru/LC_MESSAGES/kate.mo -share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ru/LC_MESSAGES/katebuild-plugin.mo -share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ru/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ru/LC_MESSAGES/katefiletree.mo -share/locale/ru/LC_MESSAGES/kategdbplugin.mo -share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ru/LC_MESSAGES/kateopenheader.mo -share/locale/ru/LC_MESSAGES/kateproject.mo -share/locale/ru/LC_MESSAGES/katesearch.mo -share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ru/LC_MESSAGES/katesql.mo -share/locale/ru/LC_MESSAGES/katesymbolviewer.mo -share/locale/ru/LC_MESSAGES/katetextfilter.mo -share/locale/ru/LC_MESSAGES/katexmlcheck.mo -share/locale/ru/LC_MESSAGES/katexmltools.mo -share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ru/LC_MESSAGES/kwrite.mo -share/locale/ru/LC_MESSAGES/lspclient.mo -share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo -share/locale/se/LC_MESSAGES/kate.mo -share/locale/se/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/se/LC_MESSAGES/katefiletree.mo -share/locale/se/LC_MESSAGES/katekonsoleplugin.mo -share/locale/se/LC_MESSAGES/kateopenheader.mo -share/locale/se/LC_MESSAGES/katesymbolviewer.mo -share/locale/se/LC_MESSAGES/katetextfilter.mo -share/locale/se/LC_MESSAGES/katexmltools.mo -share/locale/se/LC_MESSAGES/kwrite.mo -share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/sk/LC_MESSAGES/kate.mo -share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/sk/LC_MESSAGES/katebuild-plugin.mo -share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/sk/LC_MESSAGES/katefiletree.mo -share/locale/sk/LC_MESSAGES/kategdbplugin.mo -share/locale/sk/LC_MESSAGES/kategitblameplugin.mo -share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo -share/locale/sk/LC_MESSAGES/kateopenheader.mo -share/locale/sk/LC_MESSAGES/kateproject.mo -share/locale/sk/LC_MESSAGES/katesearch.mo -share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo -share/locale/sk/LC_MESSAGES/katesql.mo -share/locale/sk/LC_MESSAGES/katesymbolviewer.mo -share/locale/sk/LC_MESSAGES/katetextfilter.mo -share/locale/sk/LC_MESSAGES/katexmlcheck.mo -share/locale/sk/LC_MESSAGES/katexmltools.mo -share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/sk/LC_MESSAGES/kwrite.mo -share/locale/sk/LC_MESSAGES/lspclient.mo -share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo -share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/sl/LC_MESSAGES/kate.mo -share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/sl/LC_MESSAGES/katebuild-plugin.mo -share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/sl/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/sl/LC_MESSAGES/katefiletree.mo -share/locale/sl/LC_MESSAGES/kategdbplugin.mo -share/locale/sl/LC_MESSAGES/kategitblameplugin.mo -share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo -share/locale/sl/LC_MESSAGES/kateopenheader.mo -share/locale/sl/LC_MESSAGES/kateproject.mo -share/locale/sl/LC_MESSAGES/katesearch.mo -share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo -share/locale/sl/LC_MESSAGES/katesql.mo -share/locale/sl/LC_MESSAGES/katesymbolviewer.mo -share/locale/sl/LC_MESSAGES/katetextfilter.mo -share/locale/sl/LC_MESSAGES/katexmlcheck.mo -share/locale/sl/LC_MESSAGES/katexmltools.mo -share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/sl/LC_MESSAGES/kwrite.mo -share/locale/sl/LC_MESSAGES/lspclient.mo -share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo -share/locale/sq/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/sq/LC_MESSAGES/kate.mo -share/locale/sq/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/sq/LC_MESSAGES/katebuild-plugin.mo -share/locale/sq/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/sq/LC_MESSAGES/katekonsoleplugin.mo -share/locale/sq/LC_MESSAGES/kateopenheader.mo -share/locale/sq/LC_MESSAGES/katesymbolviewer.mo -share/locale/sq/LC_MESSAGES/katetextfilter.mo -share/locale/sq/LC_MESSAGES/katexmltools.mo -share/locale/sq/LC_MESSAGES/kwrite.mo -share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/sr/LC_MESSAGES/kate.mo -share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/sr/LC_MESSAGES/katebuild-plugin.mo -share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/sr/LC_MESSAGES/katefiletree.mo -share/locale/sr/LC_MESSAGES/kategdbplugin.mo -share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo -share/locale/sr/LC_MESSAGES/kateopenheader.mo -share/locale/sr/LC_MESSAGES/kateproject.mo -share/locale/sr/LC_MESSAGES/katesearch.mo -share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo -share/locale/sr/LC_MESSAGES/katesql.mo -share/locale/sr/LC_MESSAGES/katesymbolviewer.mo -share/locale/sr/LC_MESSAGES/katetextfilter.mo -share/locale/sr/LC_MESSAGES/katexmlcheck.mo -share/locale/sr/LC_MESSAGES/katexmltools.mo -share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/sr/LC_MESSAGES/kwrite.mo -share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo -share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/sv/LC_MESSAGES/kate.mo -share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/sv/LC_MESSAGES/katebuild-plugin.mo -share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/sv/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/sv/LC_MESSAGES/katefiletree.mo -share/locale/sv/LC_MESSAGES/kategdbplugin.mo -share/locale/sv/LC_MESSAGES/kategitblameplugin.mo -share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo -share/locale/sv/LC_MESSAGES/kateopenheader.mo -share/locale/sv/LC_MESSAGES/kateproject.mo -share/locale/sv/LC_MESSAGES/katesearch.mo -share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo -share/locale/sv/LC_MESSAGES/katesql.mo -share/locale/sv/LC_MESSAGES/katesymbolviewer.mo -share/locale/sv/LC_MESSAGES/katetextfilter.mo -share/locale/sv/LC_MESSAGES/katexmlcheck.mo -share/locale/sv/LC_MESSAGES/katexmltools.mo -share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/sv/LC_MESSAGES/kwrite.mo -share/locale/sv/LC_MESSAGES/lspclient.mo -share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ta/LC_MESSAGES/kate.mo -share/locale/ta/LC_MESSAGES/kateopenheader.mo -share/locale/ta/LC_MESSAGES/katesymbolviewer.mo -share/locale/ta/LC_MESSAGES/katetextfilter.mo -share/locale/ta/LC_MESSAGES/katexmltools.mo -share/locale/ta/LC_MESSAGES/kwrite.mo -share/locale/tg/LC_MESSAGES/kate.mo -share/locale/tg/LC_MESSAGES/kateopenheader.mo -share/locale/tg/LC_MESSAGES/katesymbolviewer.mo -share/locale/tg/LC_MESSAGES/katetextfilter.mo -share/locale/tg/LC_MESSAGES/katexmltools.mo -share/locale/tg/LC_MESSAGES/kwrite.mo -share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/tr/LC_MESSAGES/kate.mo -share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/tr/LC_MESSAGES/katebuild-plugin.mo -share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/tr/LC_MESSAGES/katefiletree.mo -share/locale/tr/LC_MESSAGES/kategdbplugin.mo -share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo -share/locale/tr/LC_MESSAGES/kateopenheader.mo -share/locale/tr/LC_MESSAGES/kateproject.mo -share/locale/tr/LC_MESSAGES/katesearch.mo -share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo -share/locale/tr/LC_MESSAGES/katesql.mo -share/locale/tr/LC_MESSAGES/katesymbolviewer.mo -share/locale/tr/LC_MESSAGES/katetextfilter.mo -share/locale/tr/LC_MESSAGES/katexmlcheck.mo -share/locale/tr/LC_MESSAGES/katexmltools.mo -share/locale/tr/LC_MESSAGES/kwrite.mo -share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ug/LC_MESSAGES/kate.mo -share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ug/LC_MESSAGES/katebuild-plugin.mo -share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ug/LC_MESSAGES/kategdbplugin.mo -share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ug/LC_MESSAGES/kateopenheader.mo -share/locale/ug/LC_MESSAGES/kateproject.mo -share/locale/ug/LC_MESSAGES/katesearch.mo -share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ug/LC_MESSAGES/katesql.mo -share/locale/ug/LC_MESSAGES/katesymbolviewer.mo -share/locale/ug/LC_MESSAGES/katetextfilter.mo -share/locale/ug/LC_MESSAGES/katexmltools.mo -share/locale/ug/LC_MESSAGES/kwrite.mo -share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/uk/LC_MESSAGES/kate.mo -share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/uk/LC_MESSAGES/katebuild-plugin.mo -share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/uk/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/uk/LC_MESSAGES/katefiletree.mo -share/locale/uk/LC_MESSAGES/kategdbplugin.mo -share/locale/uk/LC_MESSAGES/kategitblameplugin.mo -share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo -share/locale/uk/LC_MESSAGES/kateopenheader.mo -share/locale/uk/LC_MESSAGES/kateproject.mo -share/locale/uk/LC_MESSAGES/katesearch.mo -share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo -share/locale/uk/LC_MESSAGES/katesql.mo -share/locale/uk/LC_MESSAGES/katesymbolviewer.mo -share/locale/uk/LC_MESSAGES/katetextfilter.mo -share/locale/uk/LC_MESSAGES/katexmlcheck.mo -share/locale/uk/LC_MESSAGES/katexmltools.mo -share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/uk/LC_MESSAGES/kwrite.mo -share/locale/uk/LC_MESSAGES/lspclient.mo -share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo -share/locale/vi/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/vi/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/vi/LC_MESSAGES/kate.mo -share/locale/vi/LC_MESSAGES/katebuild-plugin.mo -share/locale/vi/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/vi/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/vi/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/vi/LC_MESSAGES/katefiletree.mo -share/locale/vi/LC_MESSAGES/kategdbplugin.mo -share/locale/vi/LC_MESSAGES/kategitblameplugin.mo -share/locale/vi/LC_MESSAGES/katekonsoleplugin.mo -share/locale/vi/LC_MESSAGES/kateopenheader.mo -share/locale/vi/LC_MESSAGES/kateproject.mo -share/locale/vi/LC_MESSAGES/katesearch.mo -share/locale/vi/LC_MESSAGES/katesql.mo -share/locale/vi/LC_MESSAGES/katetextfilter.mo -share/locale/vi/LC_MESSAGES/katexmlcheck.mo -share/locale/vi/LC_MESSAGES/katexmltools.mo -share/locale/vi/LC_MESSAGES/kwrite.mo -share/locale/vi/LC_MESSAGES/lspclient.mo -share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/vi/LC_MESSAGES/tabswitcherplugin.mo -share/locale/wa/LC_MESSAGES/kate.mo -share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo -share/locale/wa/LC_MESSAGES/kateopenheader.mo -share/locale/wa/LC_MESSAGES/kwrite.mo -share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/zh_CN/LC_MESSAGES/kate.mo -share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo -share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/zh_CN/LC_MESSAGES/katecolorpickerplugin.mo -share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/zh_CN/LC_MESSAGES/katefiletree.mo -share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo -share/locale/zh_CN/LC_MESSAGES/kategitblameplugin.mo -share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo -share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo -share/locale/zh_CN/LC_MESSAGES/kateproject.mo -share/locale/zh_CN/LC_MESSAGES/katesearch.mo -share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo -share/locale/zh_CN/LC_MESSAGES/katesql.mo -share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo -share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo -share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo -share/locale/zh_CN/LC_MESSAGES/katexmltools.mo -share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/zh_CN/LC_MESSAGES/kwrite.mo -share/locale/zh_CN/LC_MESSAGES/lspclient.mo -share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo -share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/zh_TW/LC_MESSAGES/kate.mo -share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo -share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo -share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/zh_TW/LC_MESSAGES/katefiletree.mo -share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo -share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo -share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo -share/locale/zh_TW/LC_MESSAGES/kateproject.mo -share/locale/zh_TW/LC_MESSAGES/katesearch.mo -share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo -share/locale/zh_TW/LC_MESSAGES/katesql.mo -share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo -share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo -share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo -share/locale/zh_TW/LC_MESSAGES/katexmltools.mo -share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/zh_TW/LC_MESSAGES/kwrite.mo -share/locale/zh_TW/LC_MESSAGES/lspclient.mo -share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml