Index: head/Mk/bsd.kde4.mk =================================================================== --- head/Mk/bsd.kde4.mk (revision 271655) +++ head/Mk/bsd.kde4.mk (revision 271656) @@ -1,187 +1,187 @@ #-*- mode: Makefile; tab-width: 4; -*- # ex:ts=4 # # $FreeBSD$ # .if !defined(_POSTMKINCLUDED) && !defined(Kde_Pre_Include) # Please make sure all changes to this file are past through the maintainer. # Do not commit them yourself (unless of course you're the Port's Wraith ;). Kde_Pre_Include= bsd.kde4.mk Kde_Include_MAINTAINER= kde@FreeBSD.org # # This file contains some variable definitions that are supposed to # make your life easier when dealing with ports related to the KDE4 # desktop environment. It's automatically included when USE_KDE4 # is defined in the ports' makefile. # # KDE4 related ports can use this as follows: # # USE_KDE4= kdehier kdeprefix kdelibs # USE_QT_VER= 4 # QT_COMPONENTS=corelib #set additional qt4 components here # # .include # # Available KDE4 components are: # # akonadi - Akonadi PIM storage service # automoc4 - automoc4 tool # kdebase - Basic KDE applications (Konqueror, Dolphin) # kdeexp - experimental libraries (with non-stable ABI/API) # kdehier - Provides common KDE directories # kdelibs - The base set of KDE libraries # kdeprefix - If set, port will be installed into ${KDE4_PREFIX} instead of ${LOCALBASE} # oxygen - icon themes # pimlibs - KDE PIM libraries # pimruntime - KDE PIM runtime services # pykde4 - Python bindings for KDE # pykdeuic4 - User Interface Compiler for PyKDE # runtime - More KDE applications # sharedmime - share-mime-info wrapper for KDE ports # workspace - More KDE applications (Plasma, kwin, etc.) # # These read-only variables can be used in port Makefile: # # MASTER_SITE_KDE_kde # - MASTER_SITE_KDE_kde is equivalent to MASTER_SITE_KDE # with :kde tag. It could be used when port needs multiple # distfiles from different sites. See for details porters-handbook: # http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/makefile-distfiles.html # KDE4_PREFIX - The place where KDE4 ports live. Currently it is {LOCALBASE}/kde4, # but this could be changed in a future. # KDE4_VERSION= 4.6.1 KDE4_BRANCH?= stable KDEPIM4_VERSION= 4.4.10 KDEPIM4_BRANCH?= stable -KOFFICE2_VERSION= 2.2.2 +KOFFICE2_VERSION= 2.3.1 KOFFICE2_BRANCH?= stable KDEVELOP_VERSION= 4.1.0 KDEVELOP_BRANCH?= stable # # KDE4 is installed into its own prefix to not conflict with KDE3 # KDE4_PREFIX?= ${LOCALBASE}/kde4 # # Tagged MASTER_SITE_KDE # kmaster= ${MASTER_SITE_KDE:S@%/@%/:kde@g} .if !defined(MASTER_SITE_SUBDIR) MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@@g} .else ksub=${MASTER_SITE_SUBDIR} MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@${ksub}/@g} .endif # !defined(MASTER_SITE_SUBDIR) # # KDE4 modules # _USE_KDE4_ALL= akonadi automoc4 kdebase kdehier kdelibs kdeprefix \ oxygen pimlibs pimruntime pykde4 pykdeuic4 runtime \ sharedmime workspace akonadi_LIB_DEPENDS= akonadiprotocolinternals.1:${PORTSDIR}/databases/akonadi automoc4_BUILD_DEPENDS= ${LOCALBASE}/bin/automoc4:${PORTSDIR}/devel/automoc4 kdebase_LIB_DEPENDS= konq.7:${PORTSDIR}/x11/kdebase4 kdehier_RUN_DEPENDS= kdehier4>=1:${PORTSDIR}/misc/kdehier4 kdelibs_LIB_DEPENDS= kimproxy.5:${PORTSDIR}/x11/kdelibs4 kdeprefix_PREFIX= ${KDE4_PREFIX} oxygen_RUN_DEPENDS= ${KDE4_PREFIX}/share/icons/oxygen/index.theme:${PORTSDIR}/x11-themes/kde4-icons-oxygen pimlibs_LIB_DEPENDS= kpimutils.5:${PORTSDIR}/deskutils/kdepimlibs4 pimruntime_LIB_DEPENDS= kdepim-copy.5:${PORTSDIR}/deskutils/kdepim4-runtime pykde4_RUN_DEPENDS= ${KDE4_PYTHON_SITELIBDIR}/PyKDE4/kdeui.so:${PORTSDIR}/devel/kdebindings4-python-pykde4 pykdeuic4_RUN_DEPENDS= ${LOCALBASE}/bin/pykdeuic4:${PORTSDIR}/devel/kdebindings4-python-pykdeuic4 runtime_BUILD_DEPENDS= ${KDE4_PREFIX}/bin/kdebugdialog:${PORTSDIR}/x11/kdebase4-runtime runtime_RUN_DEPENDS= ${KDE4_PREFIX}/bin/kdebugdialog:${PORTSDIR}/x11/kdebase4-runtime sharedmime_BUILD_DEPENDS= kde4-shared-mime-info>=1:${PORTSDIR}/misc/kde4-shared-mime-info sharedmime_RUN_DEPENDS= kde4-shared-mime-info>=1:${PORTSDIR}/misc/kde4-shared-mime-info workspace_LIB_DEPENDS= kscreensaver.5:${PORTSDIR}/x11/kdebase4-workspace PLIST_SUB+= KDE4_PREFIX="${KDE4_PREFIX}" KDE4_PYTHON_SITELIBDIR= ${PYTHON_SITELIBDIR:S;${PYTHONBASE};${KDE4_PREFIX};} # # Common build related stuff for kde4 ports. It's not intended for usage # in KDE4-dependent ports # .if defined(KDE4_BUILDENV) .if ${OSVERSION} < 700042 BROKEN= does not build on 6.x. See http://miwi.bsdcrew.de/2009/01/30/status-report-kde-42-and-freebsd-64-support/ .endif .if ${KDE4_BRANCH} == "unstable" WITH_DEBUG=yes .endif .if defined(WITH_DEBUG) CMAKE_BUILD_TYPE= debug .else CMAKE_BUILD_TYPE= release .endif PLIST_SUB+= KDE4_VERSION="${KDE4_VERSION}" \ KDE4_BUILD_TYPE="${CMAKE_BUILD_TYPE}" USE_LDCONFIG= yes USE_CMAKE= yes USE_GMAKE= yes CMAKE_SOURCE_PATH= ${WRKSRC} CONFIGURE_WRKSRC= ${CMAKE_SOURCE_PATH}/build BUILD_WRKSRC= ${CONFIGURE_WRKSRC} INSTALL_WRKSRC?= ${BUILD_WRKSRC} post-extract: kde-create-builddir kde-create-builddir: ${MKDIR} ${BUILD_WRKSRC} .endif # KDE4_BUILDENV .endif #!defined(_POSTMKINCLUDED) && !defined(Kde_Pre_Include) .if defined(_POSTMKINCLUDED) && !defined(Kde_Post_Include) Kde_Post_Include= bsd.kde4.mk .for component in ${USE_KDE4} . if ${_USE_KDE4_ALL:M${component}}!="" BUILD_DEPENDS+= ${${component}_BUILD_DEPENDS} LIB_DEPENDS+= ${${component}_LIB_DEPENDS} RUN_DEPENDS+= ${${component}_RUN_DEPENDS} . if defined(${component}_PREFIX) . if ${.MAKEFLAGS:MPREFIX=*}=="" PREFIX= ${${component}_PREFIX} . if ${KDE4_PREFIX} != ${LOCALBASE} NO_MTREE= yes . endif . endif . endif . else IGNORE= cannot install: Unknown component ${component} . endif .endfor .endif #defined(_POSTMKINCLUDED) && !defined(Kde_Post_Include) Property changes on: head/Mk/bsd.kde4.mk ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.110 \ No newline at end of property +1.111 \ No newline at end of property Index: head/chinese/calligra-l10n-zh_CN/distinfo =================================================================== --- head/chinese/calligra-l10n-zh_CN/distinfo (revision 271655) +++ head/chinese/calligra-l10n-zh_CN/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-zh_CN-2.2.2.tar.bz2) = cd1cc3bb0199b23fc67d696e2578269d998f7b34fde038e0737d735329321527 -SIZE (KDE/koffice-l10n/koffice-l10n-zh_CN-2.2.2.tar.bz2) = 281061 +SHA256 (KDE/koffice-l10n/koffice-l10n-zh_CN-2.3.1.tar.bz2) = 05d0c9f04128fd0a1e3e9c75688fea4e5e5bb84379853114c3f8d9f0ae6a42db +SIZE (KDE/koffice-l10n/koffice-l10n-zh_CN-2.3.1.tar.bz2) = 292760 Property changes on: head/chinese/calligra-l10n-zh_CN/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/chinese/calligra-l10n-zh_CN/pkg-plist =================================================================== --- head/chinese/calligra-l10n-zh_CN/pkg-plist (revision 271655) +++ head/chinese/calligra-l10n-zh_CN/pkg-plist (revision 271656) @@ -1,46 +1,49 @@ share/locale/zh_CN/LC_MESSAGES/ArtisticTextShape.mo share/locale/zh_CN/LC_MESSAGES/AutocorrectPlugin.mo share/locale/zh_CN/LC_MESSAGES/CalendarTool.mo share/locale/zh_CN/LC_MESSAGES/ChangecasePlugin.mo share/locale/zh_CN/LC_MESSAGES/ChartShape.mo share/locale/zh_CN/LC_MESSAGES/DivineProportion.mo share/locale/zh_CN/LC_MESSAGES/FormulaShape.mo share/locale/zh_CN/LC_MESSAGES/KarbonTools.mo share/locale/zh_CN/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/zh_CN/LC_MESSAGES/MusicShape.mo share/locale/zh_CN/LC_MESSAGES/ParagraphTool.mo share/locale/zh_CN/LC_MESSAGES/PathShapes.mo share/locale/zh_CN/LC_MESSAGES/PictureShape.mo +share/locale/zh_CN/LC_MESSAGES/PluginShape.mo +share/locale/zh_CN/LC_MESSAGES/ShapePlugin.mo share/locale/zh_CN/LC_MESSAGES/SpellCheckPlugin.mo share/locale/zh_CN/LC_MESSAGES/TableShape.mo share/locale/zh_CN/LC_MESSAGES/TextShape.mo share/locale/zh_CN/LC_MESSAGES/VariablesPlugin.mo share/locale/zh_CN/LC_MESSAGES/VideoShape.mo share/locale/zh_CN/LC_MESSAGES/desktop_koffice.mo share/locale/zh_CN/LC_MESSAGES/karbon.mo share/locale/zh_CN/LC_MESSAGES/kchart.mo share/locale/zh_CN/LC_MESSAGES/kexi.mo share/locale/zh_CN/LC_MESSAGES/kformula.mo share/locale/zh_CN/LC_MESSAGES/kocolorspaces.mo share/locale/zh_CN/LC_MESSAGES/koconverter.mo share/locale/zh_CN/LC_MESSAGES/koffice-defaulttools.mo share/locale/zh_CN/LC_MESSAGES/koffice-dockers.mo share/locale/zh_CN/LC_MESSAGES/koffice-simpletextedit.mo share/locale/zh_CN/LC_MESSAGES/koffice.mo share/locale/zh_CN/LC_MESSAGES/kofficefilters.mo share/locale/zh_CN/LC_MESSAGES/koproperty.mo share/locale/zh_CN/LC_MESSAGES/kounavail.mo share/locale/zh_CN/LC_MESSAGES/kplato.mo share/locale/zh_CN/LC_MESSAGES/kplatolibs.mo +share/locale/zh_CN/LC_MESSAGES/kplatorcpsplugin.mo share/locale/zh_CN/LC_MESSAGES/kplatowork.mo share/locale/zh_CN/LC_MESSAGES/kpresenter.mo share/locale/zh_CN/LC_MESSAGES/krita.mo share/locale/zh_CN/LC_MESSAGES/krossmodulekplato.mo share/locale/zh_CN/LC_MESSAGES/krossmodulekspread.mo share/locale/zh_CN/LC_MESSAGES/krossmodulekword.mo share/locale/zh_CN/LC_MESSAGES/kscan_plugin.mo share/locale/zh_CN/LC_MESSAGES/kspread.mo share/locale/zh_CN/LC_MESSAGES/kspreadsolver.mo share/locale/zh_CN/LC_MESSAGES/kthesaurus.mo share/locale/zh_CN/LC_MESSAGES/kword.mo share/locale/zh_CN/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/chinese/calligra-l10n-zh_CN/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/chinese/calligra-l10n-zh_TW/distinfo =================================================================== --- head/chinese/calligra-l10n-zh_TW/distinfo (revision 271655) +++ head/chinese/calligra-l10n-zh_TW/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-zh_TW-2.2.2.tar.bz2) = eb580579e136ec1b481b987f159def30fa8f84379305a9c44d59769640634476 -SIZE (KDE/koffice-l10n/koffice-l10n-zh_TW-2.2.2.tar.bz2) = 328030 +SHA256 (KDE/koffice-l10n/koffice-l10n-zh_TW-2.3.1.tar.bz2) = 27bf6563ee86b618a1fc6128713347dc35f41e888072b2db851a3fd47786d21c +SIZE (KDE/koffice-l10n/koffice-l10n-zh_TW-2.3.1.tar.bz2) = 334298 Property changes on: head/chinese/calligra-l10n-zh_TW/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/chinese/calligra-l10n-zh_TW/pkg-plist =================================================================== --- head/chinese/calligra-l10n-zh_TW/pkg-plist (revision 271655) +++ head/chinese/calligra-l10n-zh_TW/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/zh_TW/LC_MESSAGES/ArtisticTextShape.mo share/locale/zh_TW/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/zh_TW/LC_MESSAGES/BarcodePlugin.mo share/locale/zh_TW/LC_MESSAGES/CalendarTool.mo share/locale/zh_TW/LC_MESSAGES/ChangecasePlugin.mo +share/locale/zh_TW/LC_MESSAGES/ChartPlugin.mo share/locale/zh_TW/LC_MESSAGES/ChartShape.mo +share/locale/zh_TW/LC_MESSAGES/CommentShape.mo share/locale/zh_TW/LC_MESSAGES/DivineProportion.mo share/locale/zh_TW/LC_MESSAGES/FormulaShape.mo -share/locale/zh_TW/LC_MESSAGES/FreOffice.mo share/locale/zh_TW/LC_MESSAGES/KarbonTools.mo share/locale/zh_TW/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/zh_TW/LC_MESSAGES/MusicShape.mo share/locale/zh_TW/LC_MESSAGES/ParagraphTool.mo share/locale/zh_TW/LC_MESSAGES/PathShapes.mo share/locale/zh_TW/LC_MESSAGES/PictureShape.mo +share/locale/zh_TW/LC_MESSAGES/PluginShape.mo +share/locale/zh_TW/LC_MESSAGES/ShapePlugin.mo share/locale/zh_TW/LC_MESSAGES/SpellCheckPlugin.mo share/locale/zh_TW/LC_MESSAGES/TableShape.mo share/locale/zh_TW/LC_MESSAGES/TextShape.mo share/locale/zh_TW/LC_MESSAGES/VariablesPlugin.mo share/locale/zh_TW/LC_MESSAGES/VideoShape.mo share/locale/zh_TW/LC_MESSAGES/desktop_koffice.mo share/locale/zh_TW/LC_MESSAGES/karbon.mo share/locale/zh_TW/LC_MESSAGES/kchart.mo share/locale/zh_TW/LC_MESSAGES/kexi.mo share/locale/zh_TW/LC_MESSAGES/kformula.mo share/locale/zh_TW/LC_MESSAGES/kocolorspaces.mo share/locale/zh_TW/LC_MESSAGES/koconverter.mo share/locale/zh_TW/LC_MESSAGES/koffice-defaulttools.mo share/locale/zh_TW/LC_MESSAGES/koffice-dockers.mo share/locale/zh_TW/LC_MESSAGES/koffice-simpletextedit.mo share/locale/zh_TW/LC_MESSAGES/koffice.mo share/locale/zh_TW/LC_MESSAGES/kofficefilters.mo share/locale/zh_TW/LC_MESSAGES/koproperty.mo share/locale/zh_TW/LC_MESSAGES/kounavail.mo share/locale/zh_TW/LC_MESSAGES/kplato.mo share/locale/zh_TW/LC_MESSAGES/kplatolibs.mo share/locale/zh_TW/LC_MESSAGES/kplatorcpsplugin.mo share/locale/zh_TW/LC_MESSAGES/kplatowork.mo share/locale/zh_TW/LC_MESSAGES/kpresenter.mo share/locale/zh_TW/LC_MESSAGES/krita.mo share/locale/zh_TW/LC_MESSAGES/krossmodulekplato.mo share/locale/zh_TW/LC_MESSAGES/krossmodulekspread.mo share/locale/zh_TW/LC_MESSAGES/krossmodulekword.mo share/locale/zh_TW/LC_MESSAGES/kscan_plugin.mo share/locale/zh_TW/LC_MESSAGES/kspread.mo share/locale/zh_TW/LC_MESSAGES/kspreadsolver.mo share/locale/zh_TW/LC_MESSAGES/kthesaurus.mo share/locale/zh_TW/LC_MESSAGES/kword.mo share/locale/zh_TW/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/chinese/calligra-l10n-zh_TW/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/chinese/koffice-kde4-l10n-zh_CN/distinfo =================================================================== --- head/chinese/koffice-kde4-l10n-zh_CN/distinfo (revision 271655) +++ head/chinese/koffice-kde4-l10n-zh_CN/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-zh_CN-2.2.2.tar.bz2) = cd1cc3bb0199b23fc67d696e2578269d998f7b34fde038e0737d735329321527 -SIZE (KDE/koffice-l10n/koffice-l10n-zh_CN-2.2.2.tar.bz2) = 281061 +SHA256 (KDE/koffice-l10n/koffice-l10n-zh_CN-2.3.1.tar.bz2) = 05d0c9f04128fd0a1e3e9c75688fea4e5e5bb84379853114c3f8d9f0ae6a42db +SIZE (KDE/koffice-l10n/koffice-l10n-zh_CN-2.3.1.tar.bz2) = 292760 Property changes on: head/chinese/koffice-kde4-l10n-zh_CN/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/chinese/koffice-kde4-l10n-zh_CN/pkg-plist =================================================================== --- head/chinese/koffice-kde4-l10n-zh_CN/pkg-plist (revision 271655) +++ head/chinese/koffice-kde4-l10n-zh_CN/pkg-plist (revision 271656) @@ -1,46 +1,49 @@ share/locale/zh_CN/LC_MESSAGES/ArtisticTextShape.mo share/locale/zh_CN/LC_MESSAGES/AutocorrectPlugin.mo share/locale/zh_CN/LC_MESSAGES/CalendarTool.mo share/locale/zh_CN/LC_MESSAGES/ChangecasePlugin.mo share/locale/zh_CN/LC_MESSAGES/ChartShape.mo share/locale/zh_CN/LC_MESSAGES/DivineProportion.mo share/locale/zh_CN/LC_MESSAGES/FormulaShape.mo share/locale/zh_CN/LC_MESSAGES/KarbonTools.mo share/locale/zh_CN/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/zh_CN/LC_MESSAGES/MusicShape.mo share/locale/zh_CN/LC_MESSAGES/ParagraphTool.mo share/locale/zh_CN/LC_MESSAGES/PathShapes.mo share/locale/zh_CN/LC_MESSAGES/PictureShape.mo +share/locale/zh_CN/LC_MESSAGES/PluginShape.mo +share/locale/zh_CN/LC_MESSAGES/ShapePlugin.mo share/locale/zh_CN/LC_MESSAGES/SpellCheckPlugin.mo share/locale/zh_CN/LC_MESSAGES/TableShape.mo share/locale/zh_CN/LC_MESSAGES/TextShape.mo share/locale/zh_CN/LC_MESSAGES/VariablesPlugin.mo share/locale/zh_CN/LC_MESSAGES/VideoShape.mo share/locale/zh_CN/LC_MESSAGES/desktop_koffice.mo share/locale/zh_CN/LC_MESSAGES/karbon.mo share/locale/zh_CN/LC_MESSAGES/kchart.mo share/locale/zh_CN/LC_MESSAGES/kexi.mo share/locale/zh_CN/LC_MESSAGES/kformula.mo share/locale/zh_CN/LC_MESSAGES/kocolorspaces.mo share/locale/zh_CN/LC_MESSAGES/koconverter.mo share/locale/zh_CN/LC_MESSAGES/koffice-defaulttools.mo share/locale/zh_CN/LC_MESSAGES/koffice-dockers.mo share/locale/zh_CN/LC_MESSAGES/koffice-simpletextedit.mo share/locale/zh_CN/LC_MESSAGES/koffice.mo share/locale/zh_CN/LC_MESSAGES/kofficefilters.mo share/locale/zh_CN/LC_MESSAGES/koproperty.mo share/locale/zh_CN/LC_MESSAGES/kounavail.mo share/locale/zh_CN/LC_MESSAGES/kplato.mo share/locale/zh_CN/LC_MESSAGES/kplatolibs.mo +share/locale/zh_CN/LC_MESSAGES/kplatorcpsplugin.mo share/locale/zh_CN/LC_MESSAGES/kplatowork.mo share/locale/zh_CN/LC_MESSAGES/kpresenter.mo share/locale/zh_CN/LC_MESSAGES/krita.mo share/locale/zh_CN/LC_MESSAGES/krossmodulekplato.mo share/locale/zh_CN/LC_MESSAGES/krossmodulekspread.mo share/locale/zh_CN/LC_MESSAGES/krossmodulekword.mo share/locale/zh_CN/LC_MESSAGES/kscan_plugin.mo share/locale/zh_CN/LC_MESSAGES/kspread.mo share/locale/zh_CN/LC_MESSAGES/kspreadsolver.mo share/locale/zh_CN/LC_MESSAGES/kthesaurus.mo share/locale/zh_CN/LC_MESSAGES/kword.mo share/locale/zh_CN/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/chinese/koffice-kde4-l10n-zh_CN/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/chinese/koffice-kde4-l10n-zh_TW/distinfo =================================================================== --- head/chinese/koffice-kde4-l10n-zh_TW/distinfo (revision 271655) +++ head/chinese/koffice-kde4-l10n-zh_TW/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-zh_TW-2.2.2.tar.bz2) = eb580579e136ec1b481b987f159def30fa8f84379305a9c44d59769640634476 -SIZE (KDE/koffice-l10n/koffice-l10n-zh_TW-2.2.2.tar.bz2) = 328030 +SHA256 (KDE/koffice-l10n/koffice-l10n-zh_TW-2.3.1.tar.bz2) = 27bf6563ee86b618a1fc6128713347dc35f41e888072b2db851a3fd47786d21c +SIZE (KDE/koffice-l10n/koffice-l10n-zh_TW-2.3.1.tar.bz2) = 334298 Property changes on: head/chinese/koffice-kde4-l10n-zh_TW/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/chinese/koffice-kde4-l10n-zh_TW/pkg-plist =================================================================== --- head/chinese/koffice-kde4-l10n-zh_TW/pkg-plist (revision 271655) +++ head/chinese/koffice-kde4-l10n-zh_TW/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/zh_TW/LC_MESSAGES/ArtisticTextShape.mo share/locale/zh_TW/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/zh_TW/LC_MESSAGES/BarcodePlugin.mo share/locale/zh_TW/LC_MESSAGES/CalendarTool.mo share/locale/zh_TW/LC_MESSAGES/ChangecasePlugin.mo +share/locale/zh_TW/LC_MESSAGES/ChartPlugin.mo share/locale/zh_TW/LC_MESSAGES/ChartShape.mo +share/locale/zh_TW/LC_MESSAGES/CommentShape.mo share/locale/zh_TW/LC_MESSAGES/DivineProportion.mo share/locale/zh_TW/LC_MESSAGES/FormulaShape.mo -share/locale/zh_TW/LC_MESSAGES/FreOffice.mo share/locale/zh_TW/LC_MESSAGES/KarbonTools.mo share/locale/zh_TW/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/zh_TW/LC_MESSAGES/MusicShape.mo share/locale/zh_TW/LC_MESSAGES/ParagraphTool.mo share/locale/zh_TW/LC_MESSAGES/PathShapes.mo share/locale/zh_TW/LC_MESSAGES/PictureShape.mo +share/locale/zh_TW/LC_MESSAGES/PluginShape.mo +share/locale/zh_TW/LC_MESSAGES/ShapePlugin.mo share/locale/zh_TW/LC_MESSAGES/SpellCheckPlugin.mo share/locale/zh_TW/LC_MESSAGES/TableShape.mo share/locale/zh_TW/LC_MESSAGES/TextShape.mo share/locale/zh_TW/LC_MESSAGES/VariablesPlugin.mo share/locale/zh_TW/LC_MESSAGES/VideoShape.mo share/locale/zh_TW/LC_MESSAGES/desktop_koffice.mo share/locale/zh_TW/LC_MESSAGES/karbon.mo share/locale/zh_TW/LC_MESSAGES/kchart.mo share/locale/zh_TW/LC_MESSAGES/kexi.mo share/locale/zh_TW/LC_MESSAGES/kformula.mo share/locale/zh_TW/LC_MESSAGES/kocolorspaces.mo share/locale/zh_TW/LC_MESSAGES/koconverter.mo share/locale/zh_TW/LC_MESSAGES/koffice-defaulttools.mo share/locale/zh_TW/LC_MESSAGES/koffice-dockers.mo share/locale/zh_TW/LC_MESSAGES/koffice-simpletextedit.mo share/locale/zh_TW/LC_MESSAGES/koffice.mo share/locale/zh_TW/LC_MESSAGES/kofficefilters.mo share/locale/zh_TW/LC_MESSAGES/koproperty.mo share/locale/zh_TW/LC_MESSAGES/kounavail.mo share/locale/zh_TW/LC_MESSAGES/kplato.mo share/locale/zh_TW/LC_MESSAGES/kplatolibs.mo share/locale/zh_TW/LC_MESSAGES/kplatorcpsplugin.mo share/locale/zh_TW/LC_MESSAGES/kplatowork.mo share/locale/zh_TW/LC_MESSAGES/kpresenter.mo share/locale/zh_TW/LC_MESSAGES/krita.mo share/locale/zh_TW/LC_MESSAGES/krossmodulekplato.mo share/locale/zh_TW/LC_MESSAGES/krossmodulekspread.mo share/locale/zh_TW/LC_MESSAGES/krossmodulekword.mo share/locale/zh_TW/LC_MESSAGES/kscan_plugin.mo share/locale/zh_TW/LC_MESSAGES/kspread.mo share/locale/zh_TW/LC_MESSAGES/kspreadsolver.mo share/locale/zh_TW/LC_MESSAGES/kthesaurus.mo share/locale/zh_TW/LC_MESSAGES/kword.mo share/locale/zh_TW/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/chinese/koffice-kde4-l10n-zh_TW/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/editors/calligra/Makefile =================================================================== --- head/editors/calligra/Makefile (revision 271655) +++ head/editors/calligra/Makefile (revision 271656) @@ -1,120 +1,120 @@ # New ports collection makefile for: koffice-kde4 # Date created: 2008-07-22 # Whom: Max Brazhnikov # # $FreeBSD$ # PORTNAME= koffice PORTVERSION= ${KOFFICE2_VERSION} -PORTREVISION= 6 CATEGORIES= editors kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTNAME}-${PORTVERSION}/ +MASTER_SITE_SUBDIR= ${KOFFICE2_BRANCH}/${PORTNAME}-${PORTVERSION}/ PKGNAMESUFFIX= -kde4 DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Office suite for KDE BUILD_DEPENDS= eigen>=2.0.b3:${PORTSDIR}/math/eigen2 \ gmm++>=3.0.4:${PORTSDIR}/math/gmm++ \ - ${LOCALBASE}/lib/libpqxx.a:${PORTSDIR}/databases/postgresql-libpqxx30 \ - ${LOCALBASE}/share/xml/docbook/4.2/docbookx.dtd:${PORTSDIR}/textproc/docbook-xml + ${LOCALBASE}/lib/libpqxx.a:${PORTSDIR}/databases/postgresql-libpqxx30 LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs \ qca.2:${PORTSDIR}/devel/qca \ GraphicsMagick++.1:${PORTSDIR}/graphics/GraphicsMagick \ IlmImf.6:${PORTSDIR}/graphics/OpenEXR \ exiv2.9:${PORTSDIR}/graphics/exiv2 \ jpeg.11:${PORTSDIR}/graphics/jpeg \ - kipi.7:${PORTSDIR}/graphics/kdegraphics4 \ - lcms.1:${PORTSDIR}/graphics/lcms \ - wpg-0.1:${PORTSDIR}/graphics/libwpg01 \ + kdcraw.9:${PORTSDIR}/graphics/kdegraphics4 \ + lcms2.2:${PORTSDIR}/graphics/lcms2 \ + wpg-0.2:${PORTSDIR}/graphics/libwpg \ png.6:${PORTSDIR}/graphics/png \ poppler-qt4.3:${PORTSDIR}/graphics/poppler-qt4 \ tiff.4:${PORTSDIR}/graphics/tiff \ gsl.15:${PORTSDIR}/math/gsl \ wv2.4:${PORTSDIR}/textproc/wv2 \ freetype.9:${PORTSDIR}/print/freetype2 \ qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ - fftw3.5:${PORTSDIR}/math/fftw3 + fftw3.5:${PORTSDIR}/math/fftw3 \ + dcmdata.3:${PORTSDIR}/devel/dcmtk RUN_DEPENDS= ${LOCALBASE}/lib/libpqxx.a:${PORTSDIR}/databases/postgresql-libpqxx30 USE_BZIP2= yes USE_CMAKE= yes USE_ICONV= yes USE_PGSQL= yes MAKE_JOBS_SAFE= yes USE_KDE4= kdelibs pimlibs kdehier kdeprefix sharedmime automoc4 USE_QT_VER= 4 QT_COMPONENTS= corelib phonon qmake_build moc_build porting_build rcc_build uic_build \ uic3_build USE_GL= glut glew USE_LDCONFIG= yes CMAKE_OUTSOURCE= yes CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:STRING="${QT_INCDIR} ${LOCALBASE}/include" LDFLAGS+= "-L${LOCALBASE}/lib" OPTIONS+= GTL "Color transformations in Krita" off OPTIONS+= SYBASE "SyBase support in Kexi" off OPTIONS+= XBASE "XBase support in Kexi" off .include .if exists(${LOCALBASE}/include/qconfig.h) -IGNORE= does not build with x11-toolkits/qt33 installed. Please, deinstall qt-3.x first +IGNORE= does not build with x11-toolkits/qt33 installed. Please deinstall qt-3.x first .endif .if !defined(WITHOUT_GTL) || exists (${LOCALBASE}/lib/libQtShiva.so) LIB_DEPENDS+= OpenCTL.0:${PORTSDIR}/graphics/opengtl \ QtShiva.0:${PORTSDIR}/graphics/qtgtl PLIST_SUB+= GTL="" .else PLIST_SUB+= GTL="@comment " .endif .if exists(${LOCALBASE}/lib/pstoedit/libp2edrvlplot.so) +QT_COMPONENTS+= qt3support BUILD_DEPENDS+= ${LOCALBASE}/lib/pstoedit/libp2edrvlplot.so:${PORTSDIR}/graphics/pstoedit RUN_DEPENDS+= ${LOCALBASE}/lib/pstoedit/libp2edrvlplot.so:${PORTSDIR}/graphics/pstoedit PLIST_SUB+= EPS="" .else PLIST_SUB+= EPS="@comment " .endif .if defined(WITH_SYBASE) || exists (${LOCALBASE}/lib/libsybdb.so) LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds PLIST_SUB+= SYBASE="" .else PLIST_SUB+= SYBASE="@comment " .endif .if defined(WITH_XBASE) || exists (${LOCALBASE}/lib/libxbase-2.0.so) LIB_DEPENDS+= xbase-2.0.0:${PORTSDIR}/databases/xbase PLIST_SUB+= XBASE="" .else PLIST_SUB+= XBASE="@comment " .endif post-patch: # prevent updating mime during build/install ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ ${PATCH_WRKSRC}/krita/plugins/formats/ora/CMakeLists.txt ${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|' \ ${PATCH_WRKSRC}/cmake/modules/FindGLEW.cmake ${REINPLACE_CMD} -e 's|/opt/local|${LOCALBASE}|' \ ${PATCH_WRKSRC}/cmake/modules/FindImageMagick.cmake ${REINPLACE_CMD} -e 's|/usr/include|${LOCALBASE}/include|' \ ${PATCH_WRKSRC}/cmake/modules/FindWPD.cmake ${REINPLACE_CMD} -e 's|-DHAVE_ICONV_H|-DHAVE_ICONV_H -L${LOCALBASE}/lib -liconv -Wl,-rpath -Wl,${LOCALBASE}/lib -liconv|' \ ${PATCH_WRKSRC}/filters/kword/CMakeLists.txt ${REINPLACE_CMD} -e '/add_subdirectory(wv2)/d' \ ${PATCH_WRKSRC}/filters/kword/msword-odf/CMakeLists.txt post-install: @-update-mime-database ${PREFIX}/share/mime .include Property changes on: head/editors/calligra/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.141 \ No newline at end of property +1.142 \ No newline at end of property Index: head/editors/calligra/distinfo =================================================================== --- head/editors/calligra/distinfo (revision 271655) +++ head/editors/calligra/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-2.2.2.tar.bz2) = e5b060f640dd7ecd13b5d17f7e9ace7c0d1c0621e5fb83529f6e6db2d5c1edcb -SIZE (KDE/koffice-2.2.2.tar.bz2) = 56470974 +SHA256 (KDE/koffice-2.3.1.tar.bz2) = e73da38cfbfb2c6b7170767065addc0de38725e82c4fa49c76bcf375ee44f143 +SIZE (KDE/koffice-2.3.1.tar.bz2) = 75687214 Property changes on: head/editors/calligra/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.40 \ No newline at end of property +1.41 \ No newline at end of property Index: head/editors/calligra/files/patch-cmake__modules__FindWPD.cmake =================================================================== --- head/editors/calligra/files/patch-cmake__modules__FindWPD.cmake (revision 271655) +++ head/editors/calligra/files/patch-cmake__modules__FindWPD.cmake (revision 271656) @@ -1,11 +1,17 @@ ---- ./cmake/modules/FindWPD.cmake.orig 2010-03-30 13:10:16.507260418 +1100 -+++ ./cmake/modules/FindWPD.cmake 2010-03-30 13:09:54.253774780 +1100 -@@ -24,7 +24,7 @@ +--- ./cmake/modules/FindWPD.cmake.orig 2011-03-25 01:34:51.930775929 +0100 ++++ ./cmake/modules/FindWPD.cmake 2011-03-25 01:37:46.910772674 +0100 +@@ -19,13 +19,11 @@ + else (WPD_INCLUDE_DIR AND WPD_LIBRARIES) + if(NOT WIN32) + INCLUDE(FindPkgConfig) +- pkg_check_modules(WPD libwpd-0.8) + pkg_check_modules(WPD libwpd-0.9) + endif(NOT WIN32) FIND_PATH(WPD_INCLUDE_DIR libwpd/libwpd.h ${WPD_INCLUDE_DIR} - /usr/include/libwpd-0.8 -+ PATH_SUFFIXES libwpd-0.8 +- /usr/include/libwpd-0.9 ++ PATH_SUFFIXES libwpd-0.9 ) - Property changes on: head/editors/calligra/files/patch-cmake__modules__FindWPD.cmake ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/editors/calligra/files/patch-cmake__modules__FindWPG.cmake =================================================================== --- head/editors/calligra/files/patch-cmake__modules__FindWPG.cmake (revision 271655) +++ head/editors/calligra/files/patch-cmake__modules__FindWPG.cmake (revision 271656) @@ -1,11 +1,24 @@ ---- ./cmake/modules/FindWPG.cmake.orig 2010-03-30 00:05:52.000000000 +1100 -+++ ./cmake/modules/FindWPG.cmake 2010-03-30 13:07:46.392743489 +1100 -@@ -29,7 +29,7 @@ +--- ./cmake/modules/FindWPG.cmake.orig 2011-03-25 01:38:36.660731693 +0100 ++++ ./cmake/modules/FindWPG.cmake 2011-03-25 01:40:49.690727037 +0100 +@@ -18,11 +18,10 @@ + + IF (NOT WIN32) + INCLUDE(FindPkgConfig) +- pkg_check_modules(LIBWPG libwpg-0.1) + pkg_check_modules(LIBWPG libwpg-0.2) + ENDIF (NOT WIN32) + +- FIND_LIBRARY(LIBWPG_STREAM_LIBRARIES NAMES libwpg-stream-0.1 wpg-stream-0.1 libwpd-stream-0.9 wpd-stream-0.9 ++ FIND_LIBRARY(LIBWPG_STREAM_LIBRARIES NAMES libwpd-stream-0.9 wpd-stream-0.9 + PATHS + ${LIBWPG_LIBRARIES} + ) +@@ -30,7 +29,7 @@ FIND_PATH(LIBWPG_INCLUDE_DIR libwpg/libwpg.h PATHS ${LIBWPG_INCLUDE_DIRS} - PATH_SUFFIXES libwpg -+ PATH_SUFFIXES libwpg-0.1 ++ PATH_SUFFIXES libwpg-0.2 ) IF (LIBWPG_INCLUDE_DIR AND LIBWPG_LIBRARIES) Property changes on: head/editors/calligra/files/patch-cmake__modules__FindWPG.cmake ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/editors/calligra/files/patch-krita_plugins_formats_CMakeLists.txt =================================================================== --- head/editors/calligra/files/patch-krita_plugins_formats_CMakeLists.txt (revision 271655) +++ head/editors/calligra/files/patch-krita_plugins_formats_CMakeLists.txt (revision 271656) @@ -1,29 +1,28 @@ ---- ./krita/plugins/formats/CMakeLists.txt.orig 2009-08-24 01:58:24.000000000 +1100 -+++ ./krita/plugins/formats/CMakeLists.txt 2009-09-04 23:56:05.000000000 +1100 -@@ -15,15 +15,23 @@ +--- krita/plugins/formats/CMakeLists.txt.orig 2010-11-30 04:06:29.223954558 +0100 ++++ krita/plugins/formats/CMakeLists.txt 2010-11-30 04:14:21.883911180 +0100 +@@ -15,15 +15,22 @@ macro_optional_find_package(Poppler) - macro_log_feature( POPPLER_FOUND "poppler-qt4" "The Poppler Qt4 interface library" "http://poppler.freedesktop.org" FALSE "" "Required by the Krita PDF filter (version 0.6.x is currently required)") + macro_log_feature( POPPLER_FOUND "poppler-qt4" "The Poppler Qt4 interface library" "http://poppler.freedesktop.org" FALSE "" "Required by the Krita PDF filter") -macro_optional_find_package(Kdcraw) -macro_log_feature( KDCRAW_FOUND "kdcraw" "The KDCraw library" "http://www.digikam.org/" FALSE "" "Required by the Krita RAW filter") - macro_optional_find_package(OpenJPEG) macro_log_feature(OPENJPEG_FOUND "openjpeg" "Free library for JPEG 2000 image compression" "http://www.openjpeg.org" FALSE "" "Required by the Krita JPEG 2000 filter") macro_optional_find_package(GIF2) - macro_log_feature(GIF_FOUND "libungif/giflib" "Free library for reading and writing GIF images" "htt://XXX!!!" FALSE "" "Required by the Krita GIF filter") + macro_log_feature(GIF_FOUND "libungif/giflib" "Free library for reading and writing GIF images" "http://directory.fsf.org/project/libungif/" FALSE "" "Required by the Krita GIF filter") +# Check for Kdcraw +PKG_CHECK_MODULES(LIBKDCRAW libkdcraw-kde4>=0.4.0) +FIND_PATH(KDCRAW_INCLUDE_DIR NAMES libkdcraw/version.h + PATHS ${LIBKDCRAW_INCLUDE_DIRS} ${KDE4_INCLUDE_DIR} NO_DEFAULT_PATH) +FIND_LIBRARY(KDCRAW_LIBRARY NAMES kdcraw + PATHS ${LIBKDCRAW_LIBRARY_DIRS} ${KDE4_LIB_DIR} NO_DEFAULT_PATH) -+ +INCLUDE(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(KDCRAW DEFAULT_MSG KDCRAW_LIBRARY KDCRAW_INCLUDE_DIR) +macro_log_feature( KDCRAW_FOUND "kdcraw" "The KDCraw library" "http://www.digikam.org/" FALSE "" "Required by the Krita RAW filter") + include_directories(${KRITA_INCLUDES}) if(KDCRAW_FOUND) Property changes on: head/editors/calligra/files/patch-krita_plugins_formats_CMakeLists.txt ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/editors/calligra/files/patch-libwpg02-libwpd09 =================================================================== --- head/editors/calligra/files/patch-libwpg02-libwpd09 (nonexistent) +++ head/editors/calligra/files/patch-libwpg02-libwpd09 (revision 271656) @@ -0,0 +1,1334 @@ +diff -Nur ./filters/karbon/wpg/import/CMakeLists.txt ./filters/karbon/wpg/import/CMakeLists.txt +--- ./filters/karbon/wpg/import/CMakeLists.txt 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/CMakeLists.txt 2011-01-18 07:40:25.000000000 +0100 +@@ -1,16 +1,11 @@ + +- + include_directories(${CMAKE_BINARY_DIR}/filters/ ${WPD_INCLUDE_DIR} ${LIBWPG_INCLUDE_DIR}/) + +-set(wpgimport_PART_SRCS +-WPGImport.cpp +-OdgExporter.cxx +-FileOutputHandler.cxx +-GraphicsElement.cxx) ++set(wpgimport_PART_SRCS WPGImport.cpp) + + kde4_add_plugin(wpgimport ${wpgimport_PART_SRCS}) + +-target_link_libraries(wpgimport komain ${LIBWPG_LIBRARIES} ${LIBWPG_STREAM_LIBRARIES}) ++target_link_libraries(wpgimport komain ${LIBWPG_LIBRARIES} ${LIBWPG_STREAM_LIBRARIES} ${WPD_LIBRARIES}) + + install(TARGETS wpgimport DESTINATION ${PLUGIN_INSTALL_DIR}) + install(FILES karbon_wpg_import.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +diff -Nur ./filters/karbon/wpg/import/FileOutputHandler.cxx ./filters/karbon/wpg/import/FileOutputHandler.cxx +--- ./filters/karbon/wpg/import/FileOutputHandler.cxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/FileOutputHandler.cxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,95 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#include "FileOutputHandler.hxx" +- +-FileOutputHandler::FileOutputHandler(std::ostringstream &contentStream) : +- mbIsTagOpened(false), +- mContentStream(contentStream) +-{ +-} +- +-void FileOutputHandler::startDocument() +-{ +-} +- +-void FileOutputHandler::startElement(const char *psName, const std::vector > &xPropList) +-{ +- if (mbIsTagOpened) +- { +- mContentStream << ">"; +- mbIsTagOpened = false; +- } +- mContentStream << "<" << psName; +- +- for (std::vector >::const_iterator i = xPropList.begin(); i != xPropList.end(); i++) +- { +- mContentStream << " " << (*i).first.c_str() << "=\"" << (*i).second.c_str() << "\""; +- } +- mbIsTagOpened = true; +- msOpenedTagName = psName; +-} +- +-void FileOutputHandler::endElement(const char *psName) +-{ +- if (mbIsTagOpened) +- { +- if( msOpenedTagName == psName ) +- { +- mContentStream << "/>"; +- mbIsTagOpened = false; +- } +- else // should not happen, but handle it +- { +- mContentStream << ">"; +- mContentStream << ""; +- mbIsTagOpened = false; +- } +- } +- else +- { +- mContentStream << ""; +- mbIsTagOpened = false; +- } +-} +- +-void FileOutputHandler::characters(const std::string &sCharacters) +-{ +- if (mbIsTagOpened) +- { +- mContentStream << ">"; +- mbIsTagOpened = false; +- } +- mContentStream << sCharacters.c_str(); +-} +- +-void FileOutputHandler::endDocument() +-{ +- if (mbIsTagOpened) +- { +- mContentStream << ">"; +- mbIsTagOpened = false; +- } +-} +diff -Nur ./filters/karbon/wpg/import/FileOutputHandler.hxx ./filters/karbon/wpg/import/FileOutputHandler.hxx +--- ./filters/karbon/wpg/import/FileOutputHandler.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/FileOutputHandler.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,49 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#ifndef FILEOUTPUTHANDLER_H +-#define FILEOUTPUTHANDLER_H +- +-#include +-#include +-#include +-#include "GraphicsHandler.hxx" +- +-class FileOutputHandler : public GraphicsHandler +-{ +- public: +- explicit FileOutputHandler(std::ostringstream &contentStream); +- virtual void startDocument(); +- virtual void endDocument(); +- virtual void startElement(const char *psName, const std::vector > &xPropList); +- virtual void endElement(const char *psName); +- virtual void characters(const std::string &sCharacters); +- +- private: +- bool mbIsTagOpened; +- std::string msOpenedTagName; +- std::ostringstream &mContentStream; +-}; +-#endif +diff -Nur ./filters/karbon/wpg/import/GraphicsElement.cxx ./filters/karbon/wpg/import/GraphicsElement.cxx +--- ./filters/karbon/wpg/import/GraphicsElement.cxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/GraphicsElement.cxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,66 +0,0 @@ +-/* GraphicsElement: The items we are collecting to be put into the Writer +- * document: paragraph and spans of text, as well as section breaks. +- * +- * Copyright (C) 2002-2003 William Lachance (william.lachance@sympatico.ca) +- * +- * This program is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Lesser General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This program 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- * +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#include "GraphicsElement.hxx" +-#include "GraphicsHandler.hxx" +-#include +- +-#define ASCII_SPACE 0x0020 +- +-void TagGraphicsElement::print() const +-{ +-} +- +-void OpenTagGraphicsElement::write(GraphicsHandler *pHandler) const +-{ +- pHandler->startElement(getTagName().c_str(), maAttrList); +-} +- +-void OpenTagGraphicsElement::print() const +-{ +- TagGraphicsElement::print(); +-} +- +-void OpenTagGraphicsElement::addAttribute(const std::string &szAttributeName, const std::string &sAttributeValue) +-{ +- std::pair tmpAttribute; +- tmpAttribute.first = szAttributeName; +- tmpAttribute.second = sAttributeValue; +- maAttrList.push_back(tmpAttribute); +-} +- +-void CloseTagGraphicsElement::write(GraphicsHandler *pHandler) const +-{ +- +- pHandler->endElement(getTagName().c_str()); +-} +- +-void CharDataGraphicsElement::write(GraphicsHandler *pHandler) const +-{ +- pHandler->characters(msData); +-} +diff -Nur ./filters/karbon/wpg/import/GraphicsElement.hxx ./filters/karbon/wpg/import/GraphicsElement.hxx +--- ./filters/karbon/wpg/import/GraphicsElement.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/GraphicsElement.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,84 +0,0 @@ +-/* GraphicsElement: The items we are collecting to be put into the Writer +- * document: paragraph and spans of text, as well as section breaks. +- * +- * Copyright (C) 2002-2003 William Lachance (william.lachance@sympatico.ca) +- * +- * This program is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Lesser General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This program 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpd.sourceforge.net +- * +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#ifndef _GRAPHICSELEMENT_H +-#define _GRAPHICSELEMENT_H +-#include +-#include +-#include +- +-#include "GraphicsHandler.hxx" +- +-class GraphicsElement +-{ +-public: +- virtual ~GraphicsElement() {} +- virtual void write(GraphicsHandler *pHandler) const = 0; +- virtual void print() const {} +-}; +- +-class TagGraphicsElement : public GraphicsElement +-{ +-public: +- explicit TagGraphicsElement(const char *szTagName) : msTagName(szTagName) {} +- const std::string &getTagName() const { return msTagName; } +- virtual void print() const; +-private: +- const std::string msTagName; +-}; +- +-class OpenTagGraphicsElement : public TagGraphicsElement +-{ +-public: +- explicit OpenTagGraphicsElement(const char *szTagName) : TagGraphicsElement(szTagName) {} +- ~OpenTagGraphicsElement() {} +- void addAttribute(const std::string &szAttributeName, const std::string &sAttributeValue); +- virtual void write(GraphicsHandler *pHandler) const; +- virtual void print () const; +-private: +- std::vector > maAttrList; +-}; +- +-class CloseTagGraphicsElement : public TagGraphicsElement +-{ +-public: +- explicit CloseTagGraphicsElement(const char *szTagName) : TagGraphicsElement(szTagName) {} +- virtual void write(GraphicsHandler *pHandler) const; +-}; +- +-class CharDataGraphicsElement : public GraphicsElement +-{ +-public: +- CharDataGraphicsElement(const char *sData) : GraphicsElement(), msData(sData) {} +- virtual void write(GraphicsHandler *pHandler) const; +-private: +- std::string msData; +-}; +- +- +-#endif +diff -Nur ./filters/karbon/wpg/import/GraphicsHandler.hxx ./filters/karbon/wpg/import/GraphicsHandler.hxx +--- ./filters/karbon/wpg/import/GraphicsHandler.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/GraphicsHandler.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,43 +0,0 @@ +-/* +- * Copyright (C) 2004 William Lachance (wlach@interlog.com) +- * Copyright (C) 2004 Net Integration Technologies (http://www.net-itech.com) +- * +- * This program 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. +- * +- * This program 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 Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * Contributor(s): Martin Gallwey (gallwey@sun.com) +- * +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +-#ifndef _GRAPHICSHANDLER_H +-#define _GRAPHICSHANDLER_H +-#include +-#include +-#include +- +-class GraphicsHandler +-{ +-public: +- virtual ~GraphicsHandler() {} +- virtual void startDocument() = 0; +- virtual void endDocument() = 0; +- virtual void startElement(const char *psName, const std::vector< std::pair > &xPropList) = 0; +- virtual void endElement(const char *psName) = 0; +- virtual void characters(const std::string &sCharacters) = 0; +-}; +-#endif +diff -Nur ./filters/karbon/wpg/import/karbon_wpg_import.desktop ./filters/karbon/wpg/import/karbon_wpg_import.desktop +--- ./filters/karbon/wpg/import/karbon_wpg_import.desktop 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/karbon_wpg_import.desktop 2011-01-18 07:41:33.000000000 +0100 +@@ -42,7 +42,7 @@ + Name[x-test]=xxKarbon WPG Import Filterxx + Name[zh_CN]=Karbon WPG 导入过滤器 + Name[zh_TW]=Karbon WPG 匯入過濾程式 +-X-KDE-Export=application/vnd.oasis.opendocument.graphics ++X-KDE-Export=image/svg+xml + X-KDE-Import=application/x-wpg + X-KDE-Weight=1 + X-KDE-Library=wpgimport +diff -Nur ./filters/karbon/wpg/import/OdgExporter.cxx ./filters/karbon/wpg/import/OdgExporter.cxx +--- ./filters/karbon/wpg/import/OdgExporter.cxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/OdgExporter.cxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,662 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org) +- * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#include "OdgExporter.hxx" +-#include "GraphicsElement.hxx" +-#include "GraphicsHandler.hxx" +-#include +- +-static std::string doubleToString(const double value) +-{ +- std::ostringstream tempStream; +- tempStream << value; +- std::string decimalPoint(localeconv()->decimal_point); +- if ((decimalPoint.size() == 0) || (decimalPoint == ".")) +- return tempStream.str(); +- std::string stringValue(tempStream.str()); +- if (!stringValue.empty()) +- { +- std::string::size_type pos; +- while ((pos = stringValue.find(decimalPoint)) != std::string::npos) +- stringValue.replace(pos,decimalPoint.size(),"."); +- } +- return stringValue; +-} +- +- +-OdgExporter::OdgExporter(GraphicsHandler *pHandler, const bool isFlatXML): +- mpHandler(pHandler), +- m_fillRule(AlternatingFill), +- m_gradientIndex(1), +- m_dashIndex(1), +- m_styleIndex(1), +- m_width(0.0f), +- m_height(0.0f), +- m_isFlatXML(isFlatXML) +-{ +-} +- +-OdgExporter::~OdgExporter() +-{ +- for (std::vector ::iterator iterStroke = mStrokeDashElements.begin(); +- iterStroke != mStrokeDashElements.end(); iterStroke++) +- delete (*iterStroke); +- +- for (std::vector ::iterator iterGradient = mGradientElements.begin(); +- iterGradient != mGradientElements.end(); iterGradient++) +- delete (*iterGradient); +- +- for (std::vector ::iterator iterAutomaticStyles = mAutomaticStylesElements.begin(); +- iterAutomaticStyles != mAutomaticStylesElements.end(); iterAutomaticStyles++) +- delete (*iterAutomaticStyles); +- +- for (std::vector::iterator bodyIter = mBodyElements.begin(); +- bodyIter != mBodyElements.end(); bodyIter++) +- delete (*bodyIter); +-} +- +-void OdgExporter::startGraphics(double width, double height) +-{ +- m_gradientIndex = 1; +- m_dashIndex = 1; +- m_styleIndex = 1; +- m_width = width; +- m_height = height; +- +- +- mpHandler->startDocument(); +- OpenTagGraphicsElement tmpOfficeDocumentContent("office:document"); +- tmpOfficeDocumentContent.addAttribute("xmlns:office", "urn:oasis:names:tc:opendocument:xmlns:office:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:style", "urn:oasis:names:tc:opendocument:xmlns:style:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:text", "urn:oasis:names:tc:opendocument:xmlns:text:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:draw", "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:dc", "http://purl.org/dc/elements/1.1/"); +- tmpOfficeDocumentContent.addAttribute("xmlns:svg", "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:fo", "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:config", "urn:oasis:names:tc:opendocument:xmlns:config:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:ooo", "http://openoffice.org/2004/office"); +- tmpOfficeDocumentContent.addAttribute("office:version", "1.0"); +- if (m_isFlatXML) +- tmpOfficeDocumentContent.addAttribute("office:mimetype", "application/x-vnd.oasis.openoffice.drawing"); +- tmpOfficeDocumentContent.write(mpHandler); +- +- OpenTagGraphicsElement("office:settings").write(mpHandler); +- +- OpenTagGraphicsElement configItemSetOpenElement("config:config-item-set"); +- configItemSetOpenElement.addAttribute("config:name", "ooo:view-settings"); +- configItemSetOpenElement.write(mpHandler); +- +- OpenTagGraphicsElement configItemOpenElement1("config:config-item"); +- configItemOpenElement1.addAttribute("config:name", "VisibleAreaTop"); +- configItemOpenElement1.addAttribute("config:type", "int"); +- configItemOpenElement1.write(mpHandler); +- mpHandler->characters("0"); +- mpHandler->endElement("config:config-item"); +- +- OpenTagGraphicsElement configItemOpenElement2("config:config-item"); +- configItemOpenElement2.addAttribute("config:name", "VisibleAreaLeft"); +- configItemOpenElement2.addAttribute("config:type", "int"); +- configItemOpenElement2.write(mpHandler); +- mpHandler->characters("0"); +- mpHandler->endElement("config:config-item"); +- +- OpenTagGraphicsElement configItemOpenElement3("config:config-item"); +- configItemOpenElement3.addAttribute("config:name", "VisibleAreaWidth"); +- configItemOpenElement3.addAttribute("config:type", "int"); +- configItemOpenElement3.write(mpHandler); +- m_value.str(""); +- m_value << (unsigned)(2540 * width); +- mpHandler->characters(m_value.str()); +- mpHandler->endElement("config:config-item"); +- +- OpenTagGraphicsElement configItemOpenElement4("config:config-item"); +- configItemOpenElement4.addAttribute("config:name", "VisibleAreaHeight"); +- configItemOpenElement4.addAttribute("config:type", "int"); +- configItemOpenElement4.write(mpHandler); +- m_value.str(""); +- m_value << (unsigned)(2540 * height); +- mpHandler->characters(m_value.str()); +- mpHandler->endElement("config:config-item"); +- +- mpHandler->endElement("config:config-item-set"); +- +- mpHandler->endElement("office:settings"); +- +-} +- +-void OdgExporter::endGraphics() +-{ +- OpenTagGraphicsElement("office:styles").write(mpHandler); +- +- for (std::vector ::const_iterator iterStroke = mStrokeDashElements.begin(); +- iterStroke != mStrokeDashElements.end(); iterStroke++) +- (*iterStroke)->write(mpHandler); +- +- for (std::vector ::const_iterator iterGradient = mGradientElements.begin(); +- iterGradient != mGradientElements.end(); iterGradient++) +- (*iterGradient)->write(mpHandler); +- +- mpHandler->endElement("office:styles"); +- +- OpenTagGraphicsElement("office:automatic-styles").write(mpHandler); +- +- for (std::vector ::const_iterator iterAutomaticStyles = mAutomaticStylesElements.begin(); +- iterAutomaticStyles != mAutomaticStylesElements.end(); iterAutomaticStyles++) +- (*iterAutomaticStyles)->write(mpHandler); +- +- OpenTagGraphicsElement tmpStylePageLayoutOpenElement("style:page-layout"); +- tmpStylePageLayoutOpenElement.addAttribute("style:name", "PM0"); +- tmpStylePageLayoutOpenElement.write(mpHandler); +- +- OpenTagGraphicsElement tmpStylePageLayoutPropertiesOpenElement("style:page-layout-properties"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-top", "0in"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-bottom", "0in"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-left", "0in"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-right", "0in"); +- m_value.str(""); +- m_value << doubleToString(m_width) << "in"; +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:page-width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(m_height) << "in"; +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:page-height", m_value.str()); +- m_value.str(""); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("style:print-orientation", "portrait"); +- tmpStylePageLayoutPropertiesOpenElement.write(mpHandler); +- +- mpHandler->endElement("style:page-layout-properties"); +- +- mpHandler->endElement("style:page-layout"); +- +- OpenTagGraphicsElement tmpStyleStyleOpenElement("style:style"); +- tmpStyleStyleOpenElement.addAttribute("style:name", "dp1"); +- tmpStyleStyleOpenElement.addAttribute("style:family", "drawing-page"); +- tmpStyleStyleOpenElement.write(mpHandler); +- +- OpenTagGraphicsElement tmpStyleDrawingPagePropertiesOpenElement("style:drawing-page-properties"); +- // tmpStyleDrawingPagePropertiesOpenElement.addAttribute("draw:background-size", "border"); +- tmpStyleDrawingPagePropertiesOpenElement.addAttribute("draw:fill", "none"); +- tmpStyleDrawingPagePropertiesOpenElement.write(mpHandler); +- +- mpHandler->endElement("style:drawing-page-properties"); +- +- mpHandler->endElement("style:style"); +- +- mpHandler->endElement("office:automatic-styles"); +- +- OpenTagGraphicsElement("office:master-styles").write(mpHandler); +- +- OpenTagGraphicsElement tmpStyleMasterPageOpenElement("style:master-page"); +- tmpStyleMasterPageOpenElement.addAttribute("style:name", "Default"); +- tmpStyleMasterPageOpenElement.addAttribute("style:page-layout-name", "PM0"); +- tmpStyleMasterPageOpenElement.addAttribute("draw:style-name", "dp1"); +- tmpStyleMasterPageOpenElement.write(mpHandler); +- +- mpHandler->endElement("style:master-page"); +- +- mpHandler->endElement("office:master-styles"); +- +- OpenTagGraphicsElement("office:body").write(mpHandler); +- +- OpenTagGraphicsElement("office:drawing").write(mpHandler); +- +- OpenTagGraphicsElement tmpDrawPageOpenElement("draw:page"); +- tmpDrawPageOpenElement.addAttribute("draw:name", "page1"); +- tmpDrawPageOpenElement.addAttribute("draw:style-name", "dp1"); +- tmpDrawPageOpenElement.addAttribute("draw:master-page-name", "Default"); +- tmpDrawPageOpenElement.write(mpHandler); +- +- for (std::vector::const_iterator bodyIter = mBodyElements.begin(); +- bodyIter != mBodyElements.end(); bodyIter++) +- { +- (*bodyIter)->write(mpHandler); +- } +- +- mpHandler->endElement("draw:page"); +- mpHandler->endElement("office:drawing"); +- mpHandler->endElement("office:body"); +- mpHandler->endElement("office:document"); +- +- mpHandler->endDocument(); +-} +- +-void OdgExporter::setPen(const libwpg::WPGPen& pen) +-{ +- m_pen = pen; +-} +- +-void OdgExporter::setBrush(const libwpg::WPGBrush& brush) +-{ +- m_brush = brush; +-} +- +-void OdgExporter::setFillRule(FillRule rule) +-{ +- m_fillRule = rule; +-} +- +-void OdgExporter::startLayer(unsigned int) +-{ +-} +- +-void OdgExporter::endLayer(unsigned int) +-{ +-} +- +-void OdgExporter::drawRectangle(const libwpg::WPGRect& rect, double rx, double ) +-{ +- writeStyle(); +- OpenTagGraphicsElement *pDrawRectElement = new OpenTagGraphicsElement("draw:rect"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawRectElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.x1) << "in"; +- pDrawRectElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.y1) << "in"; +- pDrawRectElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.x2-rect.x1) << "in"; +- pDrawRectElement->addAttribute("svg:width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.y2-rect.y1) << "in"; +- pDrawRectElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rx) << "in"; +- // FIXME: what to do when rx != ry ? +- pDrawRectElement->addAttribute("draw:corner-radius", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawRectElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:rect"))); +-} +- +-void OdgExporter::drawEllipse(const libwpg::WPGPoint& center, double rx, double ry) +-{ +- writeStyle(); +- OpenTagGraphicsElement *pDrawEllipseElement = new OpenTagGraphicsElement("draw:ellipse"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawEllipseElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(center.x - rx) << "in"; +- pDrawEllipseElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(center.y - ry) << "in"; +- pDrawEllipseElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(2 * rx) << "in"; +- pDrawEllipseElement->addAttribute("svg:width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(2 * ry) << "in"; +- pDrawEllipseElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawEllipseElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:ellipse"))); +-} +- +-void OdgExporter::drawPolygon(const libwpg::WPGPointArray& vertices) +-{ +- if(vertices.count() < 2) +- return; +- +- if(vertices.count() == 2) +- { +- const libwpg::WPGPoint& p1 = vertices[0]; +- const libwpg::WPGPoint& p2 = vertices[1]; +- +- writeStyle(); +- OpenTagGraphicsElement *pDrawLineElement = new OpenTagGraphicsElement("draw:line"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawLineElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- pDrawLineElement->addAttribute("draw:text-style-name", "P1"); +- pDrawLineElement->addAttribute("draw:layer", "layout"); +- m_value << doubleToString(p1.x) << "in"; +- pDrawLineElement->addAttribute("svg:x1", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p1.y) << "in"; +- pDrawLineElement->addAttribute("svg:y1", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p2.x) << "in"; +- pDrawLineElement->addAttribute("svg:x2", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p2.y) << "in"; +- pDrawLineElement->addAttribute("svg:y2", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawLineElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:line"))); +- } +- else +- { +- // draw as path +- libwpg::WPGPath path; +- path.moveTo(vertices[0]); +- for(unsigned long ii = 1; ii < vertices.count(); ii++) +- path.lineTo(vertices[ii]); +- path.closed = true; +- drawPath(path); +- } +-} +- +-void OdgExporter::drawPath(const libwpg::WPGPath& path) +-{ +- if(path.count() == 0) +- return; +- +- // try to find the bounding box +- // this is simple convex hull technique, the bounding box might not be +- // accurate but that should be enough for this purpose +- libwpg::WPGPoint p = path.element(0).point; +- libwpg::WPGPoint q = path.element(0).point; +- for(unsigned k = 0; k < path.count(); k++) +- { +- libwpg::WPGPathElement element = path.element(k); +- p.x = (p.x > element.point.x) ? element.point.x : p.x; +- p.y = (p.y > element.point.y) ? element.point.y : p.y; +- q.x = (q.x < element.point.x) ? element.point.x : q.x; +- q.y = (q.y < element.point.y) ? element.point.y : q.y; +- if(element.type == libwpg::WPGPathElement::CurveToElement) +- { +- p.x = (p.x > element.extra1.x) ? element.extra1.x : p.x; +- p.y = (p.y > element.extra1.y) ? element.extra1.y : p.y; +- q.x = (q.x < element.extra1.x) ? element.extra1.x : q.x; +- q.y = (q.y < element.extra1.y) ? element.extra1.y : q.y; +- p.x = (p.x > element.extra2.x) ? element.extra2.x : p.x; +- p.y = (p.y > element.extra2.y) ? element.extra2.y : p.y; +- q.x = (q.x < element.extra2.x) ? element.extra2.x : q.x; +- q.y = (q.y < element.extra2.y) ? element.extra2.y : q.y; +- } +- } +- double vw = q.x - p.x; +- double vh = q.y - p.y; +- +- writeStyle(); +- +- OpenTagGraphicsElement *pDrawPathElement = new OpenTagGraphicsElement("draw:path"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawPathElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- pDrawPathElement->addAttribute("draw:text-style-name", "P1"); +- pDrawPathElement->addAttribute("draw:layer", "layout"); +- m_value << doubleToString(p.x) << "in"; +- pDrawPathElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p.y) << "in"; +- pDrawPathElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(vw) << "in"; +- pDrawPathElement->addAttribute("svg:width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(vh) << "in"; +- pDrawPathElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << "0 0 " << (int)(vw*2540) << " " << (int)(vh*2540); +- pDrawPathElement->addAttribute("svg:viewBox", m_value.str()); +- m_value.str(""); +- +- for(unsigned i = 0; i < path.count(); i++) +- { +- libwpg::WPGPathElement element = path.element(i); +- libwpg::WPGPoint point = element.point; +- switch(element.type) +- { +- // 2540 is 2.54*1000, 2.54 in = 1 in +- case libwpg::WPGPathElement::MoveToElement: +- m_value << "M" << (int)((point.x-p.x)*2540) << " "; +- m_value << (int)((point.y-p.y)*2540); +- break; +- +- case libwpg::WPGPathElement::LineToElement: +- m_value << "L" << (int)((point.x-p.x)*2540) << " "; +- m_value << (int)((point.y-p.y)*2540); +- break; +- +- case libwpg::WPGPathElement::CurveToElement: +- m_value << "C" << (int)((element.extra1.x-p.x)*2540) << " "; +- m_value << (int)((element.extra1.y-p.y)*2540) << " "; +- m_value << (int)((element.extra2.x-p.x)*2540) << " "; +- m_value << (int)((element.extra2.y-p.y)*2540) << " "; +- m_value << (int)((point.x-p.x)*2540) << " "; +- m_value << (int)((point.y-p.y)*2540); +- break; +- +- default: +- break; +- } +- } +- if(path.closed) +- m_value << " Z"; +- pDrawPathElement->addAttribute("svg:d", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawPathElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:path"))); +-} +- +- +-void OdgExporter::drawBitmap(const libwpg::WPGBitmap& bitmap) +-{ +- OpenTagGraphicsElement *pDrawFrameElement = new OpenTagGraphicsElement("draw:frame"); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.x1) << "in"; +- pDrawFrameElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.y1) << "in"; +- pDrawFrameElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.height()) << "in"; +- pDrawFrameElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.width()) << "in"; +- pDrawFrameElement->addAttribute("svg:width", m_value.str()); +- mBodyElements.push_back(static_cast(pDrawFrameElement)); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("office:binary-data"))); +- +- libwpg::WPGString base64Binary; +- bitmap.generateBase64DIB(base64Binary); +- mBodyElements.push_back(static_cast(new CharDataGraphicsElement(base64Binary.cstr()))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("office:binary-data"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:frame"))); +-} +- +-void OdgExporter::drawImageObject(const libwpg::WPGBinaryData& binaryData) +-{ +- if (binaryData.mimeType.length() <= 0) +- return; +- OpenTagGraphicsElement *pDrawFrameElement = new OpenTagGraphicsElement("draw:frame"); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.x1) << "in"; +- pDrawFrameElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.y1) << "in"; +- pDrawFrameElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.height()) << "in"; +- pDrawFrameElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.width()) << "in"; +- pDrawFrameElement->addAttribute("svg:width", m_value.str()); +- mBodyElements.push_back(static_cast(pDrawFrameElement)); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("office:binary-data"))); +- +- libwpg::WPGString base64Binary = binaryData.getBase64Data(); +- mBodyElements.push_back(static_cast(new CharDataGraphicsElement(base64Binary.cstr()))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("office:binary-data"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:frame"))); +-} +- +- +-static std::string colorToHex(const libwpg::WPGColor& color) +-{ +- char hexdigits[] = "0123456789abcdef"; +- char buffer[] = "123456"; +- buffer[0] = hexdigits[(color.red >> 4) & 15]; +- buffer[1] = hexdigits[color.red & 15]; +- buffer[2] = hexdigits[(color.green >> 4) & 15]; +- buffer[3] = hexdigits[color.green & 15]; +- buffer[4] = hexdigits[(color.blue >> 4) & 15]; +- buffer[5] = hexdigits[color.blue & 15]; +- return std::string(buffer); +-} +- +-void OdgExporter::writeStyle() +-{ +- m_value.str(""); +- m_name.str(""); +- +- if(!m_pen.solid && (m_pen.dashArray.count() >=2 ) ) +- { +- // ODG only supports dashes with the same length of spaces inbetween +- // here we take the first space and assume everything else the same +- // note that dash length is written in percentage +- double distance = m_pen.dashArray.at(1); +- OpenTagGraphicsElement *tmpDrawStrokeDashElement = new OpenTagGraphicsElement("draw:stroke-dash"); +- tmpDrawStrokeDashElement->addAttribute("draw:style", "rect"); +- m_value << "Dash_" << m_dashIndex++; +- tmpDrawStrokeDashElement->addAttribute("draw:name", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(distance*100) << "%"; +- tmpDrawStrokeDashElement->addAttribute("draw:distance", m_value.str()); +- m_value.str(""); +- for(unsigned i = 0; i < m_pen.dashArray.count()/2; i++) +- { +- m_name << "draw:dots" << i+1; +- tmpDrawStrokeDashElement->addAttribute(m_name.str(), "1"); +- m_name.str(""); +- m_name << "draw:dots" << i+1 << "-length"; +- m_value << doubleToString(100*m_pen.dashArray.at(i*2)) << "%"; +- tmpDrawStrokeDashElement->addAttribute(m_name.str(), m_value.str()); +- m_name.str(""); +- m_value.str(""); +- } +- mStrokeDashElements.push_back(static_cast(tmpDrawStrokeDashElement)); +- mStrokeDashElements.push_back(static_cast(new CloseTagGraphicsElement("draw:stroke-dash"))); +- } +- +- if(m_brush.style == libwpg::WPGBrush::Gradient) +- { +- OpenTagGraphicsElement *tmpDrawGradientElement = new OpenTagGraphicsElement("draw:gradient"); +- tmpDrawGradientElement->addAttribute("draw:style", "linear"); +- m_value << "Gradient_" << m_gradientIndex++; +- tmpDrawGradientElement->addAttribute("draw:name", m_value.str()); +- m_value.str(""); +- +- // ODG angle unit is 0.1 degree +- double angle = -m_brush.gradient.angle(); +- while(angle < 0) +- angle += 360; +- while(angle > 360) +- angle -= 360; +- +- m_value << (unsigned)(angle*10); +- tmpDrawGradientElement->addAttribute("draw:angle", m_value.str()); +- m_value.str(""); +- +- libwpg::WPGColor startColor = m_brush.gradient.stopColor(0); +- libwpg::WPGColor stopColor = m_brush.gradient.stopColor(1); +- m_value << "#" << colorToHex(startColor); +- tmpDrawGradientElement->addAttribute("draw:start-color", m_value.str()); +- m_value.str(""); +- m_value << "#" << colorToHex(stopColor); +- tmpDrawGradientElement->addAttribute("draw:end-color", m_value.str()); +- m_value.str(""); +- tmpDrawGradientElement->addAttribute("draw:start-intensity", "100%"); +- tmpDrawGradientElement->addAttribute("draw:end-intensity", "100%"); +- tmpDrawGradientElement->addAttribute("draw:border", "0%"); +- mGradientElements.push_back(static_cast(tmpDrawGradientElement)); +- mGradientElements.push_back(static_cast(new CloseTagGraphicsElement("draw:gradient"))); +- } +- +- OpenTagGraphicsElement *tmpStyleStyleElement = new OpenTagGraphicsElement("style:style"); +- m_value << "gr" << m_styleIndex; +- tmpStyleStyleElement->addAttribute("style:name", m_value.str()); +- m_value.str(""); +- tmpStyleStyleElement->addAttribute("style:family", "graphic"); +- tmpStyleStyleElement->addAttribute("style:parent-style-name", "standard"); +- mAutomaticStylesElements.push_back(static_cast(tmpStyleStyleElement)); +- +- OpenTagGraphicsElement *tmpStyleGraphicPropertiesElement = new OpenTagGraphicsElement("style:graphic-properties"); +- +- if(m_pen.width > 0.0) +- { +- m_value << doubleToString(m_pen.width) << "in"; +- tmpStyleGraphicPropertiesElement->addAttribute("svg:stroke-width", m_value.str()); +- m_value.str(""); +- m_value << "#" << colorToHex(m_pen.foreColor); +- tmpStyleGraphicPropertiesElement->addAttribute("svg:stroke-color", m_value.str()); +- m_value.str(""); +- +- if(!m_pen.solid) +- { +- tmpStyleGraphicPropertiesElement->addAttribute("draw:stroke", "dash"); +- m_value << "Dash_" << m_dashIndex-1; +- tmpStyleGraphicPropertiesElement->addAttribute("draw:stroke-dash", m_value.str()); +- m_value.str(""); +- } +- } +- else +- tmpStyleGraphicPropertiesElement->addAttribute("draw:stroke", "none"); +- +- if(m_brush.style == libwpg::WPGBrush::NoBrush) +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill", "none"); +- +- if(m_brush.style == libwpg::WPGBrush::Solid) +- { +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill", "solid"); +- m_value << "#" << colorToHex(m_brush.foreColor); +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill-color", m_value.str()); +- m_value.str(""); +- } +- +- if(m_brush.style == libwpg::WPGBrush::Gradient) +- { +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill", "gradient"); +- m_value << "Gradient_" << m_gradientIndex-1; +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill-gradient-name", m_value.str()); +- m_value.str(""); +- } +- +- mAutomaticStylesElements.push_back(static_cast(tmpStyleGraphicPropertiesElement)); +- mAutomaticStylesElements.push_back(static_cast(new CloseTagGraphicsElement("style:graphic-properties"))); +- +- mAutomaticStylesElements.push_back(static_cast(new CloseTagGraphicsElement("style:style"))); +- m_styleIndex++; +-} +diff -Nur ./filters/karbon/wpg/import/OdgExporter.hxx ./filters/karbon/wpg/import/OdgExporter.hxx +--- ./filters/karbon/wpg/import/OdgExporter.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/OdgExporter.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,116 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#ifndef __ODGEXPORTER_H__ +-#define __ODGEXPORTER_H__ +- +-#include +-#include +-#include +- +-#include +-#include "GraphicsElement.hxx" +- +-class OdgExporter : public libwpg::WPGPaintInterface { +-public: +- explicit OdgExporter(GraphicsHandler *pHandler, +- const bool isFlatXML = false); +- ~OdgExporter(); +- +-#if LIBWPG_VERSION_MINOR<2 +- void startGraphics(double imageWidth, double imageHeight); +- void endGraphics(); +- void startLayer(unsigned int id); +- void endLayer(unsigned int id); +- +- void setPen(const libwpg::WPGPen& pen); +- void setBrush(const libwpg::WPGBrush& brush); +- void setFillRule(FillRule rule); +- +- void drawRectangle(const libwpg::WPGRect& rect, double rx, double ry); +- void drawEllipse(const libwpg::WPGPoint& center, double rx, double ry); +- void drawPolygon(const libwpg::WPGPointArray& vertices); +- void drawPath(const libwpg::WPGPath& path); +- void drawBitmap(const libwpg::WPGBitmap& bitmap); +- void drawImageObject(const libwpg::WPGBinaryData& binaryData); +- +-private: +- std::vector mBodyElements; +- std::vector mAutomaticStylesElements; +- std::vector mStrokeDashElements; +- std::vector mGradientElements; +- GraphicsHandler *mpHandler; +- +- libwpg::WPGPen m_pen; +- libwpg::WPGBrush m_brush; +- FillRule m_fillRule; +- int m_gradientIndex; +- int m_dashIndex; +- int m_styleIndex; +- void writeStyle(); +- std::ostringstream m_value, m_name; +- double m_width, m_height; +- const bool m_isFlatXML; +-#else +- virtual void startGraphics(const ::WPXPropertyList &propList); +- virtual void endGraphics(); +- virtual void setStyle(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &gradient); +- virtual void startLayer(const ::WPXPropertyList &propList); +- virtual void endLayer(); +- virtual void drawRectangle(const ::WPXPropertyList& propList); +- virtual void drawEllipse(const ::WPXPropertyList& propList); +- virtual void drawPolygon(const ::WPXPropertyListVector &vertices); +- virtual void drawPath(const ::WPXPropertyListVector &path); +- virtual void drawGraphicObject(const ::WPXPropertyList &propList, const ::WPXBinaryData &binaryData); +- virtual void startEmbeddedGraphics(const ::WPXPropertyList &propList); +- virtual void endEmbeddedGraphics(); +- virtual void drawPolyline(const ::WPXPropertyListVector &vertices); +- virtual void startTextObject(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &path); +- virtual void endTextObject(); +- virtual void startTextLine(const ::WPXPropertyList &propList); +- virtual void endTextLine(); +- virtual void startTextSpan(const ::WPXPropertyList &propList); +- virtual void endTextSpan(); +- virtual void insertText(const ::WPXString &str); +- +- +-private: +- std::vector mBodyElements; +- std::vector mAutomaticStylesElements; +- std::vector mStrokeDashElements; +- std::vector mGradientElements; +- GraphicsHandler *mpHandler; +- +- int m_gradientIndex; +- int m_dashIndex; +- int m_styleIndex; +- void writeStyle(); +- std::ostringstream m_value, m_name; +- double m_width, m_height; +- const bool m_isFlatXML; +-#endif +-}; +- +-#endif // __ODGEXPORTER_H__ +diff -Nur ./filters/karbon/wpg/import/WPGImport.cpp ./filters/karbon/wpg/import/WPGImport.cpp +--- ./filters/karbon/wpg/import/WPGImport.cpp 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/WPGImport.cpp 2011-01-02 17:46:15.000000000 +0100 +@@ -20,28 +20,26 @@ + #include + #include + +-#include +-#include +-#include +- +-#include + #include + #include + #include ++#include ++ + #include ++#include + +-#include ++ ++#include ++#include + + #include + #if LIBWPG_VERSION_MINOR<2 + #include + #else + #include ++#include + #endif + +-#include "FileOutputHandler.hxx" +-#include "OdgExporter.hxx" +- + #include + + K_PLUGIN_FACTORY(WPGImportFactory, registerPlugin();) +@@ -56,35 +54,13 @@ + { + } + +-static QByteArray createManifest() +-{ +- KoXmlWriter* manifestWriter; +- QByteArray manifestData; +- QBuffer manifestBuffer(&manifestData); +- +- manifestBuffer.open(QIODevice::WriteOnly); +- manifestWriter = new KoXmlWriter(&manifestBuffer); +- +- manifestWriter->startDocument("manifest:manifest"); +- manifestWriter->startElement("manifest:manifest"); +- manifestWriter->addAttribute("xmlns:manifest", "urn:oasis:names:tc:openoffice:xmlns:manifest:1.0"); +- manifestWriter->addManifestEntry("/", "application/vnd.oasis.opendocument.graphics"); +- //manifestWriter->addManifestEntry( "styles.xml", "text/xml" ); +- manifestWriter->addManifestEntry("content.xml", "text/xml"); +- manifestWriter->endElement(); +- manifestWriter->endDocument(); +- delete manifestWriter; +- +- return manifestData; +-} +- + + KoFilter::ConversionStatus WPGImport::convert(const QByteArray& from, const QByteArray& to) + { + if (from != "application/x-wpg") + return KoFilter::NotImplemented; + +- if (to != "application/vnd.oasis.opendocument.graphics") ++ if (to != "image/svg+xml") + return KoFilter::NotImplemented; + + #if LIBWPG_VERSION_MINOR<2 +@@ -96,6 +72,7 @@ + input = olestream; + } + } ++ libwpg::WPGString output; + #else + WPXInputStream* input = new WPXFileStream(m_chain->inputFile().toLocal8Bit()); + if (input->isOLEStream()) { +@@ -105,59 +82,31 @@ + input = olestream; + } + } ++ ::WPXString output; + #endif + + if (!libwpg::WPGraphics::isSupported(input)) { +- std::cerr << "ERROR: Unsupported file format (unsupported version) or file is encrypted!" << std::endl; ++ kWarning() << "ERROR: Unsupported file format (unsupported version) or file is encrypted!"; + delete input; + return KoFilter::NotImplemented; + } + +- // do the conversion +- std::ostringstream tmpStringStream; +- FileOutputHandler tmpHandler(tmpStringStream); +- OdgExporter exporter(&tmpHandler); +- libwpg::WPGraphics::parse(input, &exporter); +- delete input; +- +- +- // create output store +- KoStore* storeout; +- storeout = KoStore::createStore(m_chain->outputFile(), KoStore::Write, +- "application/vnd.oasis.opendocument.graphics", KoStore::Zip); +- +- if (!storeout) { +- kWarning() << "Couldn't open the requested file."; +- return KoFilter::FileNotFound; +- } +- +-#if 0 +- if (!storeout->open("styles.xml")) { +- kWarning() << "Couldn't open the file 'styles.xml'."; +- return KoFilter::CreationError; ++ if (!libwpg::WPGraphics::generateSVG(input, output)) { ++ kWarning() << "ERROR: SVG Generation failed!"; ++ delete input; ++ return KoFilter::ParsingError; + } +- //storeout->write( createStyles() ); +- storeout->close(); +-#endif + +- if (!storeout->open("content.xml")) { +- kWarning() << "Couldn't open the file 'content.xml'."; +- return KoFilter::CreationError; +- } +- storeout->write(tmpStringStream.str().c_str()); +- storeout->close(); ++ delete input; + +- // store document manifest +- storeout->enterDirectory("META-INF"); +- if (!storeout->open("manifest.xml")) { +- kWarning() << "Couldn't open the file 'META-INF/manifest.xml'."; +- return KoFilter::CreationError; ++ QFile outputFile(m_chain->outputFile()); ++ if(!outputFile.open(QIODevice::WriteOnly | QIODevice::Text)) { ++ kWarning() << "ERROR: Could not open output file" << m_chain->outputFile(); ++ return KoFilter::InternalError; + } +- storeout->write(createManifest()); +- storeout->close(); + +- // we are done! +- delete storeout; ++ outputFile.write(output.cstr()); ++ outputFile.close(); + + return KoFilter::OK; + } Property changes on: head/editors/calligra/files/patch-libwpg02-libwpd09 ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/editors/calligra/pkg-plist =================================================================== --- head/editors/calligra/pkg-plist (revision 271655) +++ head/editors/calligra/pkg-plist (revision 271656) @@ -1,3169 +1,3131 @@ bin/karbon bin/kexi +bin/kformula bin/koconverter bin/kplato bin/kplatowork bin/kpresenter bin/krita bin/kspread bin/kthesaurus bin/kword include/DebugPigment.h include/InsertSemanticObjectActionBase.h include/InsertSemanticObjectCreateAction.h include/InsertSemanticObjectReferenceAction.h +include/KWApplicationConfig.h +include/KWCanvas.h +include/KWCanvasBase.h +include/KWCanvasItem.h +include/KWDocument.h +include/KWFrameLayout.h +include/KWPage.h +include/KWPageManager.h +include/KWPageStyle.h +include/KWViewMode.h +include/KWord.h include/KoApplication.h include/KoApplicationAdaptor.h include/KoBasicHistogramProducers.h include/KoBookmark.h include/KoBookmarkManager.h include/KoBorder.h include/KoCanvasBase.h include/KoCanvasController.h +include/KoCanvasControllerWidget.h include/KoCanvasObserverBase.h include/KoCanvasSupervisor.h include/KoChannelInfo.h include/KoChartInterface.h include/KoChartModel.h -include/KoChildrenData.h include/KoColor.h include/KoColorConversionTransformation.h include/KoColorConversionTransformationAbstractFactory.h include/KoColorConversionTransformationFactory.h include/KoColorModelStandardIds.h include/KoColorPatch.h include/KoColorPopupAction.h include/KoColorProfile.h include/KoColorSetWidget.h include/KoColorSlider.h include/KoColorSpace.h include/KoColorSpaceAbstract.h include/KoColorSpaceConstants.h include/KoColorSpaceEngine.h +include/KoColorSpaceFactory.h include/KoColorSpaceMaths.h include/KoColorSpaceRegistry.h include/KoColorSpaceTraits.h include/KoColorTransformation.h include/KoColorTransformationFactory.h include/KoColorTransformationFactoryRegistry.h include/KoColumns.h include/KoCompositeOp.h +include/KoConfig.h include/KoConvolutionOp.h include/KoCopyController.h include/KoCutController.h include/KoDataCenterBase.h include/KoDockFactoryBase.h include/KoDockRegistry.h include/KoDockWidgetTitleBar.h include/KoDockWidgetTitleBarButton.h include/KoDocument.h include/KoDocumentEntry.h include/KoDocumentInfo.h include/KoDocumentRdf.h include/KoDocumentRdfBase.h include/KoDocumentSectionModel.h include/KoDom.h include/KoDpi.h include/KoDrag.h include/KoDragOdfSaveHelper.h include/KoDualColorButton.h include/KoEditColorSetDialog.h include/KoEmbeddedDocumentSaver.h include/KoEmbeddingFilter.h include/KoEventActionAddCommand.h include/KoEventActionRemoveCommand.h include/KoFactory.h include/KoFallBackColorTransformation.h include/KoFilter.h include/KoFilterChain.h include/KoFilterChainLinkList.h +include/KoFilterEffect.h +include/KoFilterEffectConfigWidgetBase.h +include/KoFilterEffectFactoryBase.h +include/KoFilterEffectLoadingContext.h +include/KoFilterEffectRegistry.h +include/KoFilterEffectRenderContext.h +include/KoFilterEffectStack.h include/KoFilterManager.h include/KoFlake.h include/KoFontFace.h include/KoFrameShape.h include/KoGenChange.h include/KoGenChanges.h include/KoGenStyle.h include/KoGenStyles.h include/KoGenericRegistry.h include/KoGenericRegistryModel.h include/KoGlobal.h include/KoGridData.h include/KoGuidesData.h include/KoHistogramProducer.h include/KoID.h include/KoImageCollection.h include/KoImageData.h include/KoImageSelectionWidget.h include/KoInlineObject.h +include/KoInlineObjectFactoryBase.h +include/KoInlineObjectRegistry.h include/KoInlineTextObjectManager.h include/KoInputDevice.h include/KoInsets.h include/KoIntegerMaths.h include/KoInteractionTool.h include/KoLabDarkenColorTransformation.h include/KoLineStyleSelector.h include/KoList.h include/KoLoadingShapeUpdater.h include/KoMainWindow.h include/KoMixColorsOp.h include/KoMixColorsOpImpl.h include/KoOasisSettings.h include/KoOdf.h include/KoOdfDocument.h include/KoOdfGraphicStyles.h include/KoOdfLoadingContext.h include/KoOdfNumberStyles.h include/KoOdfPaste.h include/KoOdfReadStore.h include/KoOdfStylesReader.h include/KoOdfWriteStore.h include/KoPACanvas.h +include/KoPACanvasBase.h +include/KoPACanvasItem.h include/KoPADocument.h include/KoPALoadingContext.h include/KoPAPageBase.h include/KoPAPageContainerModel.h include/KoPAUtil.h include/KoPAView.h +include/KoPAViewBase.h +include/KoPAViewMode.h include/KoPageApp.h include/KoPageFormat.h include/KoPageLayout.h include/KoPageLayoutDialog.h include/KoPageLayoutWidget.h include/KoPagePreviewWidget.h include/KoParameterToPathCommand.h include/KoPathCombineCommand.h include/KoPathControlPointMoveCommand.h include/KoPathFillRuleCommand.h include/KoPathPointInsertCommand.h include/KoPathPointMergeCommand.h include/KoPathPointMoveCommand.h include/KoPathPointRemoveCommand.h include/KoPathPointTypeCommand.h include/KoPathReverseCommand.h include/KoPathSegment.h include/KoPathSegmentTypeCommand.h include/KoPathSeparateCommand.h include/KoPointerEvent.h include/KoPositionSelector.h include/KoProgressBar.h include/KoProgressProxy.h include/KoProgressUpdater.h include/KoProperties.h include/KoRdfSemanticItem.h include/KoRdfSemanticItemViewSite.h include/KoRdfSemanticTree.h include/KoRdfSemanticTreeWidgetItem.h include/KoResourceItemChooser.h include/KoResourceManager.h include/KoResourceSelector.h include/KoSelection.h include/KoSemanticStylesheet.h include/KoSemanticStylesheetsEditor.h include/KoShadowConfigWidget.h include/KoShape.h include/KoShapeAlignCommand.h include/KoShapeApplicationData.h include/KoShapeBackgroundCommand.h include/KoShapeBorderCommand.h include/KoShapeBorderModel.h include/KoShapeConfigWidgetBase.h include/KoShapeContainer.h +include/KoShapeContainerDefaultModel.h include/KoShapeContainerModel.h include/KoShapeController.h include/KoShapeControllerBase.h include/KoShapeCreateCommand.h include/KoShapeDeleteCommand.h include/KoShapeDistributeCommand.h include/KoShapeFactoryBase.h include/KoShapeGroup.h include/KoShapeGroupCommand.h include/KoShapeLayer.h include/KoShapeLoadingContext.h include/KoShapeManager.h include/KoShapeMoveCommand.h include/KoShapeOdfSaveHelper.h include/KoShapePainter.h include/KoShapeRegistry.h include/KoShapeRenameCommand.h include/KoShapeReorderCommand.h include/KoShapeSavingContext.h include/KoShapeShadowCommand.h include/KoShapeShearCommand.h include/KoShapeSizeCommand.h include/KoShapeTransformCommand.h include/KoShapeUngroupCommand.h include/KoShapeUserData.h include/KoSharedSavingData.h include/KoSopranoTableModel.h include/KoSopranoTableModelDelegate.h include/KoStandardAction.h include/KoStore.h include/KoStoreDevice.h include/KoStyleStack.h include/KoSubpathRemoveCommand.h -include/KoTableInterface.h include/KoText.h include/KoTextAnchor.h include/KoTextBlockBorderData.h include/KoTextBlockData.h include/KoTextDocument.h include/KoTextEditingFactory.h include/KoTextEditingPlugin.h include/KoTextEditingRegistry.h include/KoTextEditor.h include/KoTextInlineRdf.h include/KoTextLocator.h include/KoTextMeta.h +include/KoTextOnShapeContainer.h include/KoTextPage.h include/KoTextPaste.h include/KoTextRdfCore.h include/KoTextShapeData.h +include/KoTextShapeDataBase.h include/KoToolBase.h include/KoToolFactoryBase.h include/KoToolManager.h include/KoToolProxy.h include/KoToolRegistry.h include/KoToolSelection.h include/KoTriangleColorSelector.h include/KoUniColorChooser.h include/KoUniColorDialog.h include/KoUnit.h include/KoUpdater.h include/KoVariable.h -include/KoVariableFactory.h include/KoVariableManager.h -include/KoVariableRegistry.h include/KoVersionDialog.h include/KoView.h include/KoViewAdaptor.h include/KoViewConverter.h include/KoXYColorSelector.h include/KoXmlNS.h include/KoXmlReader.h include/KoXmlReaderForward.h include/KoXmlWriter.h include/KoZoomAction.h include/KoZoomController.h include/KoZoomHandler.h include/KoZoomInput.h include/KoZoomMode.h include/RdfForward.h include/RdfSemanticTreeWidgetAction.h include/RdfSemanticTreeWidgetSelectAction.h include/changetracker/KoChangeTracker.h include/changetracker/KoChangeTrackerElement.h include/changetracker/KoDeleteChangeMarker.h -include/config-openexr.h -include/config-opengl.h include/flake_export.h include/kexi/forms/FormWidget.h include/kexi/forms/FormWidgetInterface.h include/kexi/forms/WidgetInfo.h +include/kexi/forms/WidgetTreeWidget.h include/kexi/forms/objecttree.h -include/kexi/forms/objecttreeview.h include/kexi/forms/widgetfactory.h include/kexi/forms/widgetlibrary.h include/kexi/forms/widgetwithsubpropertiesinterface.h include/kis_base_node.h include/kis_base_processor.h include/kis_canvas2.h include/kis_canvas_decoration.h include/kis_config_widget.h include/kis_convolution_kernel.h include/kis_convolution_painter.h include/kis_convolution_worker.h +include/kis_coordinates_converter.h include/kis_cubic_curve.h include/kis_cursor.h include/kis_debug.h include/kis_default_bounds.h include/kis_distance_information.h include/kis_filter.h include/kis_filter_configuration.h include/kis_filter_registry.h include/kis_filter_strategy.h include/kis_generator.h include/kis_generator_registry.h include/kis_generic_colorspace.h include/kis_global.h include/kis_image.h include/kis_iterator.h include/kis_iterator_pixel_trait.h include/kis_iterators_pixel.h include/kis_mask.h include/kis_multi_bool_filter_widget.h include/kis_multi_double_filter_widget.h include/kis_multi_integer_filter_widget.h include/kis_node.h include/kis_node_facade.h include/kis_node_graph_listener.h include/kis_paint_device.h include/kis_painter.h +include/kis_perspectivetransform_worker.h include/kis_processing_information.h include/kis_properties_configuration.h include/kis_random_accessor.h include/kis_selection.h include/kis_serializable_configuration.h include/kis_shared.h -include/kis_shared_data.h include/kis_shared_ptr.h include/kis_shared_ptr_vector.h include/kis_tiled_data_manager.h include/kis_tool.h include/kis_transaction.h include/kis_transform_worker.h include/kis_types.h +include/kis_ui_types.h include/kis_view2.h +include/kis_warptransform_worker.h include/koChart.h include/kofficeversion.h include/komain_export.h include/koodf_export.h include/kopageapp_export.h include/kotext_export.h include/kowidgets_export.h include/krita_export.h +include/kword_export.h include/pigment_export.h include/styles/KoCharacterStyle.h include/styles/KoListLevelProperties.h include/styles/KoListStyle.h include/styles/KoParagraphStyle.h include/styles/KoSectionStyle.h include/styles/KoStyleManager.h include/styles/KoTableCellStyle.h -include/styles/KoTableColumnFormat.h include/styles/KoTableColumnStyle.h include/styles/KoTableFormat.h -include/styles/KoTableRowFormat.h include/styles/KoTableRowStyle.h +lib/kde4/Filterkpr2odf.so +lib/kde4/abiwordexport.so +lib/kde4/abiwordimport.so +lib/kde4/amiproexport.so +lib/kde4/amiproimport.so +lib/kde4/applixspreadimport.so +lib/kde4/applixwordimport.so lib/kde4/artistictextshape.so +lib/kde4/asciiexport.so +lib/kde4/asciiimport.so lib/kde4/autocorrect.so lib/kde4/changecase.so lib/kde4/chartshape.so +lib/kde4/commentshape.so +lib/kde4/csvexport.so +lib/kde4/csvimport.so +lib/kde4/dbaseimport.so +lib/kde4/dcmimport.so lib/kde4/defaulttools.so lib/kde4/divineproportionshape.so +lib/kde4/docbookexport.so +lib/kde4/docximport.so +lib/kde4/excelimporttodoc.so lib/kde4/formulashape.so +lib/kde4/generickofilter.so +lib/kde4/gnumericexport.so +lib/kde4/gnumericimport.so +lib/kde4/hancomwordimport.so +lib/kde4/htmlexport.so +lib/kde4/htmlimport.so +lib/kde4/htmlodf_export.so +lib/kde4/icalendarexport.so +lib/kde4/karbon1ximport.so lib/kde4/karbon_flattenpathplugin.so lib/kde4/karbon_refinepathplugin.so lib/kde4/karbon_roundcornersplugin.so lib/kde4/karbon_whirlpinchplugin.so +%%EPS%%lib/kde4/karbonepsimport.so lib/kde4/karbonfiltereffects.so +lib/kde4/karbonpart.so +lib/kde4/karbonpdfimport.so +lib/kde4/karbonpngexport.so +lib/kde4/karbonsvgexport.so +lib/kde4/karbonsvgimport.so lib/kde4/karbontools.so lib/kde4/kexidb_mysqldriver.so lib/kde4/kexidb_pqxxsqldriver.so lib/kde4/kexidb_sqlite3driver.so +%%SYBASE%%lib/kde4/kexidb_sybasedriver.so %%XBASE%%lib/kde4/kexidb_xbasedriver.so lib/kde4/kexihandler_csv_importexport.so lib/kde4/kexihandler_form.so lib/kde4/kexihandler_migration.so lib/kde4/kexihandler_query.so lib/kde4/kexihandler_report.so lib/kde4/kexihandler_script.so lib/kde4/kexihandler_table.so lib/kde4/keximigrate_kspread.so lib/kde4/keximigrate_mdb.so lib/kde4/keximigrate_mysql.so lib/kde4/keximigrate_pqxx.so %%SYBASE%%lib/kde4/keximigrate_sybase.so lib/kde4/keximigrate_txt.so %%XBASE%%lib/kde4/keximigrate_xbase.so lib/kde4/kexirelationdesignshape.so lib/kde4/kformdesigner_containers.so lib/kde4/kformdesigner_kexidbwidgets.so lib/kde4/kformdesigner_stdwidgets.so +lib/kde4/kformulapart.so +lib/kde4/kodocinfopropspage.so lib/kde4/kofficedockers.so lib/kde4/kofficescan.so lib/kde4/kofficethumbnail.so lib/kde4/kolcmsengine.so lib/kde4/kopabackgroundtool.so +lib/kde4/koreport_barcodeplugin.so +lib/kde4/koreport_chartplugin.so +lib/kde4/koreport_shapeplugin.so +lib/kde4/kounavailpart.so +lib/kde4/kplatopart.so +lib/kde4/kplatoworkpart.so lib/kde4/kpr_pageeffect_barwipe.so lib/kde4/kpr_pageeffect_clockwipe.so lib/kde4/kpr_pageeffect_edgewipe.so +lib/kde4/kpr_pageeffect_fade.so lib/kde4/kpr_pageeffect_iriswipe.so lib/kde4/kpr_pageeffect_matrixwipe.so lib/kde4/kpr_pageeffect_slidewipe.so +lib/kde4/kpr_pageeffect_spacerotation.so +lib/kde4/kpr_pageeffect_swapeffect.so lib/kde4/kpr_shapeanimation_example.so lib/kde4/kpresentereventactions.so +lib/kde4/kpresenterpart.so lib/kde4/kpresentertoolanimation.so lib/kde4/kprvariables.so lib/kde4/krita_colorspaces_extensions.so %%GTL%%lib/kde4/krita_ctlcs_plugin.so -lib/kde4/kritabackgrounds.so +lib/kde4/krita_raw_import.so lib/kde4/kritabigbrother.so lib/kde4/kritablurfilter.so -lib/kde4/kritabracketing2hdr.so -lib/kde4/kritabumpmap.so -lib/kde4/kritachalkpaintop.so +lib/kde4/kritabmpexport.so +lib/kde4/kritabmpimport.so lib/kde4/kritacolorgenerator.so lib/kde4/kritacolorrange.so +lib/kde4/kritacolorselectorng.so lib/kde4/kritacolorsfilters.so lib/kde4/kritacolorspaceconversion.so lib/kde4/kritaconvolutionfilters.so lib/kde4/kritacurvepaintop.so lib/kde4/kritadefaultdockers.so lib/kde4/kritadefaultpaintops.so lib/kde4/kritadefaulttools.so lib/kde4/kritadeformpaintop.so lib/kde4/kritadigitalmixer.so lib/kde4/kritadodgeburn.so lib/kde4/kritadropshadow.so lib/kde4/kritadynapaintop.so lib/kde4/kritaembossfilter.so lib/kde4/kritaexample.so +%%GTL%%lib/kde4/kritaexrexport.so +%%GTL%%lib/kde4/kritaexrimport.so lib/kde4/kritaextensioncolorsfilters.so lib/kde4/kritaextensionsmanager.so lib/kde4/kritafastcolortransferfilter.so lib/kde4/kritafilterop.so +lib/kde4/kritagifimport.so lib/kde4/kritagridpaintop.so lib/kde4/kritahairypaintop.so +lib/kde4/kritahatchingpaintop.so lib/kde4/kritahistogram.so lib/kde4/kritaimageenhancement.so lib/kde4/kritaimagesize.so +lib/kde4/kritajp2export.so +lib/kde4/kritajp2import.so +lib/kde4/kritajpegexport.so +lib/kde4/kritajpegimport.so lib/kde4/kritalayercompose.so lib/kde4/kritalevelfilter.so lib/kde4/kritametadataeditor.so lib/kde4/kritamodifyselection.so lib/kde4/kritanoisefilter.so -lib/kde4/kritaoilpaintfilter.so +lib/kde4/kritaoraexport.so +lib/kde4/kritaoraimport.so +lib/kde4/kritapart.so lib/kde4/kritaparticlepaintop.so +lib/kde4/kritapdfimport.so lib/kde4/kritapixelizefilter.so +lib/kde4/kritapngexport.so +lib/kde4/kritapngimport.so +lib/kde4/kritappmexport.so +lib/kde4/kritappmimport.so lib/kde4/kritaraindropsfilter.so lib/kde4/kritarandompickfilter.so lib/kde4/kritarotateimage.so lib/kde4/kritaroundcornersfilter.so lib/kde4/kritarulerassistanttool.so -lib/kde4/kritascripting.so lib/kde4/kritaselectiontools.so lib/kde4/kritaseparatechannels.so lib/kde4/kritashearimage.so %%GTL%%lib/kde4/kritashivafilters.so %%GTL%%lib/kde4/kritashivagenerators.so +lib/kde4/kritasketchpaintop.so lib/kde4/kritasmallcolorselector.so -lib/kde4/kritasmalltilesfilter.so -lib/kde4/kritasobelfilter.so -lib/kde4/kritasoftpaintop.so lib/kde4/kritaspecificcolorselector.so lib/kde4/kritaspraypaintop.so +lib/kde4/kritatiffexport.so +lib/kde4/kritatiffimport.so lib/kde4/kritatogether.so lib/kde4/kritatonemapping.so lib/kde4/kritatoolcrop.so lib/kde4/kritatooldyna.so lib/kde4/kritatoolgrid.so lib/kde4/kritatoolperspectivegrid.so -lib/kde4/kritatoolperspectivetransform.so lib/kde4/kritatoolpolygon.so lib/kde4/kritatoolpolyline.so lib/kde4/kritatoolstar.so lib/kde4/kritatooltransform.so lib/kde4/kritatrianglecolorselector.so lib/kde4/kritaunsharpfilter.so lib/kde4/kritawavefilter.so +lib/kde4/kritaxcfimport.so lib/kde4/krossmodulekexidb.so lib/kde4/krossmodulekplato.so lib/kde4/krossmodulekspread.so lib/kde4/krossmodulekword.so lib/kde4/kspread_plugin_tool_calendar.so lib/kde4/kspreadbitopsmodule.so lib/kde4/kspreadconversionmodule.so lib/kde4/kspreaddatabasemodule.so lib/kde4/kspreaddatetimemodule.so lib/kde4/kspreadengineeringmodule.so lib/kde4/kspreadfinancialmodule.so +lib/kde4/kspreadhtmlexport.so +lib/kde4/kspreadhtmlimport.so lib/kde4/kspreadinformationmodule.so +lib/kde4/kspreadlatexexport.so lib/kde4/kspreadlogicmodule.so lib/kde4/kspreadmathmodule.so +lib/kde4/kspreadpart.so lib/kde4/kspreadreferencemodule.so +lib/kde4/kspreadsolver.so lib/kde4/kspreadstatisticalmodule.so lib/kde4/kspreadtextmodule.so lib/kde4/kspreadtrigonometrymodule.so -lib/kde4/libFilterkpr2odf.so -lib/kde4/libabiwordexport.so -lib/kde4/libabiwordimport.so -lib/kde4/libamiproexport.so -lib/kde4/libamiproimport.so -lib/kde4/libapplixspreadimport.so -lib/kde4/libapplixwordimport.so -lib/kde4/libasciiexport.so -lib/kde4/libasciiimport.so -lib/kde4/libcsvexport.so -lib/kde4/libcsvimport.so -lib/kde4/libdbaseimport.so -lib/kde4/libdocbookexport.so -lib/kde4/libdocximport.so -lib/kde4/libexcelimport.so -lib/kde4/libgenerickofilter.so -lib/kde4/libgnumericexport.so -lib/kde4/libgnumericimport.so -lib/kde4/libhancomwordimport.so -lib/kde4/libhtmlexport.so -lib/kde4/libhtmlimport.so -lib/kde4/libicalendarexport.so -lib/kde4/libkarbon1ximport.so -%%EPS%%lib/kde4/libkarbonepsimport.so -lib/kde4/libkarbonpart.so -lib/kde4/libkarbonpdfimport.so -lib/kde4/libkarbonpngexport.so -lib/kde4/libkarbonsvgexport.so -lib/kde4/libkarbonsvgimport.so -lib/kde4/libkchartgenericimageexport.so -lib/kde4/libkchartsvgexport.so -lib/kde4/libkformulapart.so -lib/kde4/libkounavailpart.so -lib/kde4/libkplatopart.so -lib/kde4/libkplatoworkpart.so -lib/kde4/libkpresenterpart.so -lib/kde4/libkrita_raw_import.so -lib/kde4/libkritabmpexport.so -lib/kde4/libkritabmpimport.so -%%GTL%%lib/kde4/libkritaexrexport.so -%%GTL%%lib/kde4/libkritaexrimport.so -lib/kde4/libkritagifimport.so -lib/kde4/libkritajp2export.so -lib/kde4/libkritajp2import.so -lib/kde4/libkritajpegexport.so -lib/kde4/libkritajpegimport.so -lib/kde4/libkritaoraexport.so -lib/kde4/libkritaoraimport.so -lib/kde4/libkritapart.so -lib/kde4/libkritapdfimport.so -lib/kde4/libkritapngexport.so -lib/kde4/libkritapngimport.so -lib/kde4/libkritappmexport.so -lib/kde4/libkritappmimport.so -lib/kde4/libkritapsdimport.so -lib/kde4/libkritatiffexport.so -lib/kde4/libkritatiffimport.so -lib/kde4/libkritaxcfimport.so -lib/kde4/libkspreadhtmlexport.so -lib/kde4/libkspreadhtmlimport.so -lib/kde4/libkspreadlatexexport.so -lib/kde4/libkspreadpart.so -lib/kde4/libkspreadsolver.so -lib/kde4/libkwordkword1dot3import.so -lib/kde4/libkwordpart.so -lib/kde4/liboowriterexport.so -lib/kde4/liboowriterimport.so -lib/kde4/libopencalcexport.so -lib/kde4/libopencalcimport.so -lib/kde4/libpalmdocexport.so -lib/kde4/libpalmdocimport.so -lib/kde4/libpowerpointimport.so -lib/kde4/libpptximport.so -lib/kde4/libqproimport.so -lib/kde4/librtfexport.so -lib/kde4/librtfimport.so -lib/kde4/libwmfexport.so -lib/kde4/libwmfimport.so -lib/kde4/libwmlexport.so -lib/kde4/libwmlimport.so -lib/kde4/libwpexport.so -lib/kde4/libwpgimport.so -lib/kde4/libwpimport.so -lib/kde4/libxlsximport.so -lib/kde4/libxsltexport.so -lib/kde4/libxsltimport.so +lib/kde4/kwordkword1dot3import.so +lib/kde4/kwordpart.so lib/kde4/musicshape.so +lib/kde4/okularGenerator_odp.so +lib/kde4/oowriterexport.so +lib/kde4/oowriterimport.so +lib/kde4/opencalcexport.so +lib/kde4/opencalcimport.so +lib/kde4/palmdocexport.so +lib/kde4/palmdocimport.so lib/kde4/paragraphtool.so lib/kde4/pathshapes.so lib/kde4/pictureshape.so +lib/kde4/pluginshape.so +lib/kde4/powerpointimport.so +lib/kde4/pptximport.so +lib/kde4/qproimport.so +lib/kde4/rtfexport.so +lib/kde4/rtfimport.so lib/kde4/spellcheck.so lib/kde4/spreadsheetshape.so lib/kde4/textshape.so lib/kde4/textvariables.so lib/kde4/thesaurustool.so -lib/kde4/vectorshape.so lib/kde4/videoshape.so +lib/kde4/wmfexport.so +lib/kde4/wmfimport.so +lib/kde4/wmlexport.so +lib/kde4/wmlimport.so +lib/kde4/wpexport.so +lib/kde4/wpgimport.so +lib/kde4/wpimport.so +lib/kde4/xlsximport.so +lib/kde4/xsltexport.so +lib/kde4/xsltimport.so lib/libchartshapelib.so -lib/libchartshapelib.so.7 -lib/libchartshapelib.so.7.0.0 +lib/libchartshapelib.so.8 +lib/libchartshapelib.so.8.0.0 lib/libflake.so -lib/libflake.so.7 -lib/libflake.so.7.0.0 +lib/libflake.so.8 +lib/libflake.so.8.0.0 lib/libkarboncommon.so -lib/libkarboncommon.so.7 -lib/libkarboncommon.so.7.0.0 +lib/libkarboncommon.so.8 +lib/libkarboncommon.so.8.0.0 lib/libkarbonui.so -lib/libkarbonui.so.7 -lib/libkarbonui.so.7.0.0 -lib/libkchartcommon.so -lib/libkchartcommon.so.7 -lib/libkchartcommon.so.7.0.0 +lib/libkarbonui.so.8 +lib/libkarbonui.so.8.0.0 lib/libkdchart.so -lib/libkdchart.so.7 -lib/libkdchart.so.7.0.0 +lib/libkdchart.so.8 +lib/libkdchart.so.8.0.0 lib/libkdeinit4_karbon.so lib/libkdeinit4_kplato.so lib/libkdeinit4_kplatowork.so lib/libkdeinit4_kpresenter.so lib/libkdeinit4_krita.so lib/libkdeinit4_kspread.so lib/libkdeinit4_kthesaurus.so lib/libkdeinit4_kword.so +lib/libkdeinit_kformula.so lib/libkexicore.so -lib/libkexicore.so.7 -lib/libkexicore.so.7.0.0 +lib/libkexicore.so.8 +lib/libkexicore.so.8.0.0 lib/libkexidatatable.so -lib/libkexidatatable.so.7 -lib/libkexidatatable.so.7.0.0 +lib/libkexidatatable.so.8 +lib/libkexidatatable.so.8.0.0 lib/libkexidb.so -lib/libkexidb.so.7 -lib/libkexidb.so.7.0.0 +lib/libkexidb.so.8 +lib/libkexidb.so.8.0.0 lib/libkexiextendedwidgets.so -lib/libkexiextendedwidgets.so.7.0.0 +lib/libkexiextendedwidgets.so.8 +lib/libkexiextendedwidgets.so.8.0.0 lib/libkexiformutils.so -lib/libkexiformutils.so.7 -lib/libkexiformutils.so.7.0.0 +lib/libkexiformutils.so.8 +lib/libkexiformutils.so.8.0.0 lib/libkexiguiutils.so -lib/libkexiguiutils.so.7 -lib/libkexiguiutils.so.7.0.0 +lib/libkexiguiutils.so.8 +lib/libkexiguiutils.so.8.0.0 lib/libkeximain.so -lib/libkeximain.so.7 -lib/libkeximain.so.7.0.0 +lib/libkeximain.so.8 +lib/libkeximain.so.8.0.0 lib/libkeximigrate.so -lib/libkeximigrate.so.7 -lib/libkeximigrate.so.7.0.0 +lib/libkeximigrate.so.8 +lib/libkeximigrate.so.8.0.0 lib/libkexirelationsview.so -lib/libkexirelationsview.so.7 -lib/libkexirelationsview.so.7.0.0 +lib/libkexirelationsview.so.8 +lib/libkexirelationsview.so.8.0.0 lib/libkexiutils.so -lib/libkexiutils.so.7 -lib/libkexiutils.so.7.0.0 +lib/libkexiutils.so.8 +lib/libkexiutils.so.8.0.0 lib/libkformdesigner.so -lib/libkformdesigner.so.7 -lib/libkformdesigner.so.7.0.0 +lib/libkformdesigner.so.8 +lib/libkformdesigner.so.8.0.0 lib/libkformulalib.so -lib/libkformulalib.so.7 -lib/libkformulalib.so.7.0.0 +lib/libkformulalib.so.8 +lib/libkformulalib.so.8.0.0 lib/libkformulaprivate.so -lib/libkformulaprivate.so.7 -lib/libkformulaprivate.so.7.0.0 +lib/libkformulaprivate.so.8 +lib/libkformulaprivate.so.8.0.0 lib/libkochart.so -lib/libkochart.so.7 -lib/libkochart.so.7.0.0 +lib/libkochart.so.8 +lib/libkochart.so.8.0.0 lib/libkokross.so -lib/libkokross.so.7 -lib/libkokross.so.7.0.0 +lib/libkokross.so.8 +lib/libkokross.so.8.0.0 lib/libkomain.so -lib/libkomain.so.7 -lib/libkomain.so.7.0.0 +lib/libkomain.so.8 +lib/libkomain.so.8.0.0 lib/libkoodf.so -lib/libkoodf.so.7 -lib/libkoodf.so.7.0.0 +lib/libkoodf.so.8 +lib/libkoodf.so.8.0.0 lib/libkopageapp.so -lib/libkopageapp.so.7 -lib/libkopageapp.so.7.0.0 +lib/libkopageapp.so.8 +lib/libkopageapp.so.8.0.0 lib/libkoplugin.so -lib/libkoplugin.so.7 -lib/libkoplugin.so.7.0.0 +lib/libkoplugin.so.8 +lib/libkoplugin.so.8.0.0 lib/libkoproperty.so -lib/libkoproperty.so.7 -lib/libkoproperty.so.7.0.0 +lib/libkoproperty.so.8 +lib/libkoproperty.so.8.0.0 lib/libkoreport.so -lib/libkoreport.so.7 -lib/libkoreport.so.7.0.0 +lib/libkoreport.so.8 +lib/libkoreport.so.8.0.0 lib/libkotext.so -lib/libkotext.so.7 -lib/libkotext.so.7.0.0 +lib/libkotext.so.8 +lib/libkotext.so.8.0.0 lib/libkowidgets.so -lib/libkowidgets.so.7 -lib/libkowidgets.so.7.0.0 +lib/libkowidgets.so.8 +lib/libkowidgets.so.8.0.0 lib/libkowmf.so -lib/libkowmf.so.7 -lib/libkowmf.so.7.0.0 +lib/libkowmf.so.8 +lib/libkowmf.so.8.0.0 lib/libkplatokernel.so -lib/libkplatokernel.so.7 -lib/libkplatokernel.so.7.0.0 +lib/libkplatokernel.so.8 +lib/libkplatokernel.so.8.0.0 lib/libkplatomodels.so -lib/libkplatomodels.so.7 -lib/libkplatomodels.so.7.0.0 +lib/libkplatomodels.so.8 +lib/libkplatomodels.so.8.0.0 lib/libkplatoprivate.so -lib/libkplatoprivate.so.7 -lib/libkplatoprivate.so.7.0.0 +lib/libkplatoprivate.so.8 +lib/libkplatoprivate.so.8.0.0 lib/libkplatoui.so -lib/libkplatoui.so.7 -lib/libkplatoui.so.7.0.0 +lib/libkplatoui.so.8 +lib/libkplatoui.so.8.0.0 lib/libkplatoworkapp.so -lib/libkplatoworkapp.so.7 -lib/libkplatoworkapp.so.7.0.0 +lib/libkplatoworkapp.so.8 +lib/libkplatoworkapp.so.8.0.0 lib/libkplatoworkfactory.so -lib/libkplatoworkfactory.so.7 -lib/libkplatoworkfactory.so.7.0.0 +lib/libkplatoworkfactory.so.8 +lib/libkplatoworkfactory.so.8.0.0 lib/libkpresenterprivate.so -lib/libkpresenterprivate.so.7 -lib/libkpresenterprivate.so.7.0.0 +lib/libkpresenterprivate.so.8 +lib/libkpresenterprivate.so.8.0.0 lib/libkritaimage.so -lib/libkritaimage.so.7 -lib/libkritaimage.so.7.0.0 +lib/libkritaimage.so.8 +lib/libkritaimage.so.8.0.0 lib/libkritalibbrush.so -lib/libkritalibbrush.so.7 -lib/libkritalibbrush.so.7.0.0 +lib/libkritalibbrush.so.8 +lib/libkritalibbrush.so.8.0.0 lib/libkritalibpaintop.so -lib/libkritalibpaintop.so.7 -lib/libkritalibpaintop.so.7.0.0 +lib/libkritalibpaintop.so.8 +lib/libkritalibpaintop.so.8.0.0 lib/libkritaui.so -lib/libkritaui.so.7 -lib/libkritaui.so.7.0.0 -lib/libkrossmodulekrita.so -lib/libkrossmodulekrita.so.7 -lib/libkrossmodulekrita.so.7.0.0 +lib/libkritaui.so.8 +lib/libkritaui.so.8.0.0 lib/libkspreadcommon.so -lib/libkspreadcommon.so.7 -lib/libkspreadcommon.so.7.0.0 +lib/libkspreadcommon.so.8 +lib/libkspreadcommon.so.8.0.0 +lib/libkspreadodf.so +lib/libkspreadodf.so.8 +lib/libkspreadodf.so.8.0.0 lib/libkwmf.so -lib/libkwmf.so.7 -lib/libkwmf.so.7.0.0 +lib/libkwmf.so.8 +lib/libkwmf.so.8.0.0 lib/libkwordexportfilters.so -lib/libkwordexportfilters.so.7 -lib/libkwordexportfilters.so.7.0.0 +lib/libkwordexportfilters.so.8 +lib/libkwordexportfilters.so.8.0.0 lib/libkwordprivate.so -lib/libkwordprivate.so.7 -lib/libkwordprivate.so.7.0.0 +lib/libkwordprivate.so.8 +lib/libkwordprivate.so.8.0.0 lib/libmsooxml.so -lib/libmsooxml.so.7 -lib/libmsooxml.so.7.0.0 +lib/libmsooxml.so.8 +lib/libmsooxml.so.8.0.0 lib/libpigmentcms.so -lib/libpigmentcms.so.7 -lib/libpigmentcms.so.7.0.0 +lib/libpigmentcms.so.8 +lib/libpigmentcms.so.8.0.0 share/applications/kde4/KThesaurus.desktop share/applications/kde4/karbon.desktop share/applications/kde4/kexi.desktop +share/applications/kde4/kformula.desktop share/applications/kde4/koffice.desktop share/applications/kde4/kplato.desktop share/applications/kde4/kplatowork.desktop share/applications/kde4/kpresenter.desktop share/applications/kde4/krita.desktop share/applications/kde4/krita_bmp.desktop %%GTL%%share/applications/kde4/krita_exr.desktop share/applications/kde4/krita_gif.desktop share/applications/kde4/krita_jp2.desktop share/applications/kde4/krita_jpeg.desktop share/applications/kde4/krita_ora.desktop share/applications/kde4/krita_pdf.desktop share/applications/kde4/krita_png.desktop share/applications/kde4/krita_ppm.desktop share/applications/kde4/krita_raw.desktop share/applications/kde4/krita_tiff.desktop share/applications/kde4/krita_xcf.desktop share/applications/kde4/kspread.desktop share/applications/kde4/kword.desktop +share/applications/kde4/okularApplication_odp.desktop share/apps/cmake/modules/FindKOfficeLibs.cmake share/apps/formulashape/fonts/Arev.ttf share/apps/formulashape/fonts/ArevBI.ttf share/apps/formulashape/fonts/ArevBd.ttf share/apps/formulashape/fonts/ArevIt.ttf share/apps/formulashape/fonts/cmex10.ttf share/apps/karbon/gradients/allcolors.kgr share/apps/karbon/gradients/simple.kgr share/apps/karbon/icons/hicolor/16x16/actions/14_layer_deletelayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_layer_lowerlayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_layer_newlayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_layer_raiselayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_pencil.png share/apps/karbon/icons/hicolor/16x16/actions/colorman.png share/apps/karbon/icons/hicolor/16x16/actions/helpdocker.png share/apps/karbon/icons/hicolor/16x16/actions/historydocker.png share/apps/karbon/icons/hicolor/16x16/actions/layersman.png share/apps/karbon/icons/hicolor/16x16/actions/linestyle.png share/apps/karbon/icons/hicolor/16x16/actions/locked.png share/apps/karbon/icons/hicolor/16x16/actions/rotate.png share/apps/karbon/icons/hicolor/16x16/actions/shear.png share/apps/karbon/icons/hicolor/16x16/actions/strokedocker.png share/apps/karbon/icons/hicolor/16x16/actions/tooloptions.png share/apps/karbon/icons/hicolor/16x16/actions/translate.png share/apps/karbon/icons/hicolor/16x16/actions/unlocked.png share/apps/karbon/icons/hicolor/22x22/actions/14_ellipse.png share/apps/karbon/icons/hicolor/22x22/actions/14_flatten.png share/apps/karbon/icons/hicolor/22x22/actions/14_gradient.png share/apps/karbon/icons/hicolor/22x22/actions/14_image.png share/apps/karbon/icons/hicolor/22x22/actions/14_pattern.png share/apps/karbon/icons/hicolor/22x22/actions/14_pencil.png share/apps/karbon/icons/hicolor/22x22/actions/14_polygon.png share/apps/karbon/icons/hicolor/22x22/actions/14_polyline.png share/apps/karbon/icons/hicolor/22x22/actions/14_rectangle.png share/apps/karbon/icons/hicolor/22x22/actions/14_refine.png share/apps/karbon/icons/hicolor/22x22/actions/14_rotate.png share/apps/karbon/icons/hicolor/22x22/actions/14_roundcorners.png share/apps/karbon/icons/hicolor/22x22/actions/14_roundrect.png share/apps/karbon/icons/hicolor/22x22/actions/14_select.png share/apps/karbon/icons/hicolor/22x22/actions/14_selectnodes.png share/apps/karbon/icons/hicolor/22x22/actions/14_shear.png share/apps/karbon/icons/hicolor/22x22/actions/14_sinus.png share/apps/karbon/icons/hicolor/22x22/actions/14_spiral.png share/apps/karbon/icons/hicolor/22x22/actions/14_star.png share/apps/karbon/icons/hicolor/22x22/actions/14_text.png share/apps/karbon/icons/hicolor/22x22/actions/14_whirl.png share/apps/karbon/icons/hicolor/22x22/actions/14_zoom.png share/apps/karbon/icons/hicolor/22x22/actions/colorman.png share/apps/karbon/icons/hicolor/22x22/actions/gradientdlg.png share/apps/karbon/icons/hicolor/22x22/actions/linestyle.png share/apps/karbon/icons/hicolor/22x22/actions/outlinedlg.png share/apps/karbon/icons/hicolor/22x22/actions/pagesetup.png share/apps/karbon/icons/hicolor/22x22/actions/solidfilldlg.png share/apps/karbon/icons/hicolor/48x48/actions/template_empty.png share/apps/karbon/icons/hicolor/scalable/actions/template_empty.svgz share/apps/karbon/icons/oxygen/16x16/actions/14_layer_novisible.png share/apps/karbon/icons/oxygen/16x16/actions/14_layer_visible.png share/apps/karbon/karbon.rc share/apps/karbon/karbon_readonly.rc share/apps/karbon/kpartplugins/FlattenPathPlugin.rc share/apps/karbon/kpartplugins/RefinePathPlugin.rc share/apps/karbon/kpartplugins/RoundCornersPlugin.rc share/apps/karbon/kpartplugins/WhirlPinchPlugin.rc share/apps/karbon/templates/Basic/.directory share/apps/karbon/templates/Basic/.source/empty.odg share/apps/karbon/templates/Basic/empty.desktop -share/apps/kchart/icons/hicolor/16x16/actions/chart_area.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_bar.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_line.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_pie.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_polar.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_ring.png -share/apps/kchart/icons/hicolor/16x16/actions/data.png -share/apps/kchart/icons/hicolor/16x16/actions/options.png -share/apps/kchart/icons/hicolor/16x16/actions/wizard.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_area.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_bar.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_line.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_pie.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_polar.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_ring.png -share/apps/kchart/icons/hicolor/22x22/actions/data.png -share/apps/kchart/icons/hicolor/22x22/actions/options.png -share/apps/kchart/icons/hicolor/22x22/actions/wizard.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_area.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_bar.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_line.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_pie.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_polar.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_ring.png -share/apps/kchart/icons/hicolor/32x32/actions/data.png -share/apps/kchart/icons/hicolor/32x32/actions/options.png -share/apps/kchart/icons/hicolor/32x32/actions/wizard.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_area.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_bar.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_line.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_pie.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_polar.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_ring.png -share/apps/kchart/icons/hicolor/48x48/actions/options.png -share/apps/kchart/icons/hicolor/48x48/actions/template_barchart.png -share/apps/kchart/icons/hicolor/48x48/actions/template_empty.png -share/apps/kchart/icons/hicolor/scalable/actions/chart_area.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_area_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_bar.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_bar_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_boxwhisker.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_hilo.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_line.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_line_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_pie.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_pie_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_polar.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_ring.svgz -share/apps/kchart/icons/hicolor/scalable/actions/template_barchart.svgz -share/apps/kchart/icons/hicolor/scalable/actions/template_empty.svgz -share/apps/kchart/pics/chart_area_normal.png -share/apps/kchart/pics/chart_area_percent.png -share/apps/kchart/pics/chart_area_stacked.png -share/apps/kchart/pics/chart_bar_beside.png -share/apps/kchart/pics/chart_bar_layer.png -share/apps/kchart/pics/chart_bar_percent.png -share/apps/kchart/pics/chart_hilo_close.png -share/apps/kchart/pics/chart_hilo_normal.png -share/apps/kchart/pics/chart_hilo_openclose.png -share/apps/kchart/pics/chart_legend_bottom.png -share/apps/kchart/pics/chart_legend_bottomleft.png -share/apps/kchart/pics/chart_legend_bottomright.png -share/apps/kchart/pics/chart_legend_left.png -share/apps/kchart/pics/chart_legend_nolegend.png -share/apps/kchart/pics/chart_legend_right.png -share/apps/kchart/pics/chart_legend_top.png -share/apps/kchart/pics/chart_legend_topleft.png -share/apps/kchart/pics/chart_legend_topright.png -share/apps/kchart/pics/chart_line_normal.png -share/apps/kchart/pics/chart_line_percent.png -share/apps/kchart/pics/chart_line_stacked.png -share/apps/kchart/pics/chart_polar_normal.png -share/apps/kchart/pics/chart_polar_percent.png -share/apps/kchart/pics/chart_polar_stacked.png -share/apps/kchart/templates/chart/.directory -share/apps/kchart/templates/chart/.source/BarChart.chrt -share/apps/kchart/templates/chart/.source/Empty.chrt -share/apps/kchart/templates/chart/BarChart.desktop -share/apps/kchart/templates/chart/Empty.desktop share/apps/kexi/icons/hicolor/128x128/actions/form_action.png share/apps/kexi/icons/hicolor/16x16/actions/add_field.png share/apps/kexi/icons/hicolor/16x16/actions/aofit.png share/apps/kexi/icons/hicolor/16x16/actions/aogrid.png share/apps/kexi/icons/hicolor/16x16/actions/aopos2grid.png share/apps/kexi/icons/hicolor/16x16/actions/autofield.png share/apps/kexi/icons/hicolor/16x16/actions/autonumber.png share/apps/kexi/icons/hicolor/16x16/actions/business_user.png share/apps/kexi/icons/hicolor/16x16/actions/button.png share/apps/kexi/icons/hicolor/16x16/actions/button_no.png share/apps/kexi/icons/hicolor/16x16/actions/check.png share/apps/kexi/icons/hicolor/16x16/actions/clear_table_contents.png share/apps/kexi/icons/hicolor/16x16/actions/combo.png share/apps/kexi/icons/hicolor/16x16/actions/delete_table_row.png share/apps/kexi/icons/hicolor/16x16/actions/document-import-database.png share/apps/kexi/icons/hicolor/16x16/actions/form.png share/apps/kexi/icons/hicolor/16x16/actions/form_action.png share/apps/kexi/icons/hicolor/16x16/actions/form_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/grid.png share/apps/kexi/icons/hicolor/16x16/actions/insert_table_row.png share/apps/kexi/icons/hicolor/16x16/actions/key.png share/apps/kexi/icons/hicolor/16x16/actions/line.png share/apps/kexi/icons/hicolor/16x16/actions/line_horizontal.png share/apps/kexi/icons/hicolor/16x16/actions/line_vertical.png share/apps/kexi/icons/hicolor/16x16/actions/lineedit.png share/apps/kexi/icons/hicolor/16x16/actions/macro.png share/apps/kexi/icons/hicolor/16x16/actions/macro_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/mouse_pointer.png share/apps/kexi/icons/hicolor/16x16/actions/multiple_obj.png share/apps/kexi/icons/hicolor/16x16/actions/new_sign.png share/apps/kexi/icons/hicolor/16x16/actions/pixmaplabel.png share/apps/kexi/icons/hicolor/16x16/actions/query.png share/apps/kexi/icons/hicolor/16x16/actions/query_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/radio.png share/apps/kexi/icons/hicolor/16x16/actions/relation.png share/apps/kexi/icons/hicolor/16x16/actions/report.png share/apps/kexi/icons/hicolor/16x16/actions/report_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/script.png share/apps/kexi/icons/hicolor/16x16/actions/script_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/select_item.png share/apps/kexi/icons/hicolor/16x16/actions/spring.png share/apps/kexi/icons/hicolor/16x16/actions/spring_vertical.png share/apps/kexi/icons/hicolor/16x16/actions/state_data.png share/apps/kexi/icons/hicolor/16x16/actions/state_edit.png share/apps/kexi/icons/hicolor/16x16/actions/state_sql.png share/apps/kexi/icons/hicolor/16x16/actions/state_text.png share/apps/kexi/icons/hicolor/16x16/actions/subform.png share/apps/kexi/icons/hicolor/16x16/actions/table.png share/apps/kexi/icons/hicolor/16x16/actions/table_newobj.png +share/apps/kexi/icons/hicolor/16x16/actions/tabwidget-tab.png share/apps/kexi/icons/hicolor/16x16/actions/tabwidget.png share/apps/kexi/icons/hicolor/16x16/actions/test_it.png share/apps/kexi/icons/hicolor/16x16/actions/textedit.png share/apps/kexi/icons/hicolor/16x16/actions/unknown_widget.png share/apps/kexi/icons/hicolor/16x16/actions/widgets.png share/apps/kexi/icons/hicolor/22x22/actions/alignobjs.png share/apps/kexi/icons/hicolor/22x22/actions/aobottom.png share/apps/kexi/icons/hicolor/22x22/actions/aofit.png share/apps/kexi/icons/hicolor/22x22/actions/aogrid.png share/apps/kexi/icons/hicolor/22x22/actions/aoleft.png share/apps/kexi/icons/hicolor/22x22/actions/aonarrowest.png share/apps/kexi/icons/hicolor/22x22/actions/aopos2grid.png share/apps/kexi/icons/hicolor/22x22/actions/aoright.png share/apps/kexi/icons/hicolor/22x22/actions/aoshortest.png share/apps/kexi/icons/hicolor/22x22/actions/aotallest.png share/apps/kexi/icons/hicolor/22x22/actions/aotop.png share/apps/kexi/icons/hicolor/22x22/actions/aowidest.png share/apps/kexi/icons/hicolor/22x22/actions/autofield.png share/apps/kexi/icons/hicolor/22x22/actions/business_user.png share/apps/kexi/icons/hicolor/22x22/actions/button.png share/apps/kexi/icons/hicolor/22x22/actions/check.png share/apps/kexi/icons/hicolor/22x22/actions/clear_table_contents.png share/apps/kexi/icons/hicolor/22x22/actions/combo.png share/apps/kexi/icons/hicolor/22x22/actions/dateedit.png share/apps/kexi/icons/hicolor/22x22/actions/datetimeedit.png share/apps/kexi/icons/hicolor/22x22/actions/delete_table_row.png share/apps/kexi/icons/hicolor/22x22/actions/document-import-database.png share/apps/kexi/icons/hicolor/22x22/actions/form.png share/apps/kexi/icons/hicolor/22x22/actions/form_action.png share/apps/kexi/icons/hicolor/22x22/actions/form_edit.png share/apps/kexi/icons/hicolor/22x22/actions/form_newobj.png share/apps/kexi/icons/hicolor/22x22/actions/frame.png share/apps/kexi/icons/hicolor/22x22/actions/grid.png share/apps/kexi/icons/hicolor/22x22/actions/groupbox.png share/apps/kexi/icons/hicolor/22x22/actions/insert_table_row.png share/apps/kexi/icons/hicolor/22x22/actions/key.png share/apps/kexi/icons/hicolor/22x22/actions/label.png share/apps/kexi/icons/hicolor/22x22/actions/line.png share/apps/kexi/icons/hicolor/22x22/actions/line_horizontal.png share/apps/kexi/icons/hicolor/22x22/actions/line_vertical.png share/apps/kexi/icons/hicolor/22x22/actions/lineedit.png share/apps/kexi/icons/hicolor/22x22/actions/listbox.png share/apps/kexi/icons/hicolor/22x22/actions/listwidget.png share/apps/kexi/icons/hicolor/22x22/actions/lower.png share/apps/kexi/icons/hicolor/22x22/actions/macro.png share/apps/kexi/icons/hicolor/22x22/actions/macro_newobj.png share/apps/kexi/icons/hicolor/22x22/actions/mouse_pointer.png share/apps/kexi/icons/hicolor/22x22/actions/multiple_obj.png share/apps/kexi/icons/hicolor/22x22/actions/new_sign.png share/apps/kexi/icons/hicolor/22x22/actions/pixmaplabel.png share/apps/kexi/icons/hicolor/22x22/actions/progress.png share/apps/kexi/icons/hicolor/22x22/actions/radio.png share/apps/kexi/icons/hicolor/22x22/actions/raise.png share/apps/kexi/icons/hicolor/22x22/actions/relation.png share/apps/kexi/icons/hicolor/22x22/actions/signalslot.png share/apps/kexi/icons/hicolor/22x22/actions/slider.png share/apps/kexi/icons/hicolor/22x22/actions/spin.png share/apps/kexi/icons/hicolor/22x22/actions/spring.png share/apps/kexi/icons/hicolor/22x22/actions/spring_vertical.png share/apps/kexi/icons/hicolor/22x22/actions/state_data.png share/apps/kexi/icons/hicolor/22x22/actions/state_edit.png share/apps/kexi/icons/hicolor/22x22/actions/state_sql.png share/apps/kexi/icons/hicolor/22x22/actions/state_text.png share/apps/kexi/icons/hicolor/22x22/actions/subform.png share/apps/kexi/icons/hicolor/22x22/actions/table.png share/apps/kexi/icons/hicolor/22x22/actions/table_newobj.png +share/apps/kexi/icons/hicolor/22x22/actions/tabwidget-tab.png share/apps/kexi/icons/hicolor/22x22/actions/tabwidget.png share/apps/kexi/icons/hicolor/22x22/actions/test_it.png share/apps/kexi/icons/hicolor/22x22/actions/textedit.png share/apps/kexi/icons/hicolor/22x22/actions/timeedit.png share/apps/kexi/icons/hicolor/22x22/actions/unknown_widget.png share/apps/kexi/icons/hicolor/22x22/actions/urlrequest.png share/apps/kexi/icons/hicolor/22x22/actions/widgets.png share/apps/kexi/icons/hicolor/22x22/actions/widgetstack.png share/apps/kexi/icons/hicolor/32x32/actions/business_user.png share/apps/kexi/icons/hicolor/32x32/actions/clear_table_contents.png share/apps/kexi/icons/hicolor/32x32/actions/delete_table_row.png share/apps/kexi/icons/hicolor/32x32/actions/document-import-database.png share/apps/kexi/icons/hicolor/32x32/actions/form.png share/apps/kexi/icons/hicolor/32x32/actions/form_action.png share/apps/kexi/icons/hicolor/32x32/actions/form_newobj.png share/apps/kexi/icons/hicolor/32x32/actions/grid.png share/apps/kexi/icons/hicolor/32x32/actions/insert_table_row.png share/apps/kexi/icons/hicolor/32x32/actions/key.png share/apps/kexi/icons/hicolor/32x32/actions/macro.png share/apps/kexi/icons/hicolor/32x32/actions/macro_newobj.png share/apps/kexi/icons/hicolor/32x32/actions/new_sign.png share/apps/kexi/icons/hicolor/32x32/actions/pixmaplabel.png share/apps/kexi/icons/hicolor/32x32/actions/query.png share/apps/kexi/icons/hicolor/32x32/actions/query_newobj.png share/apps/kexi/icons/hicolor/32x32/actions/spring.png share/apps/kexi/icons/hicolor/32x32/actions/state_data.png share/apps/kexi/icons/hicolor/32x32/actions/state_sql.png share/apps/kexi/icons/hicolor/32x32/actions/state_text.png share/apps/kexi/icons/hicolor/32x32/actions/table.png share/apps/kexi/icons/hicolor/32x32/actions/table_newobj.png share/apps/kexi/icons/hicolor/48x48/actions/document-import-database.png share/apps/kexi/icons/hicolor/48x48/actions/form_action.png share/apps/kexi/icons/hicolor/48x48/actions/key.png share/apps/kexi/icons/hicolor/64x64/actions/business_user.png share/apps/kexi/icons/hicolor/64x64/actions/form_action.png share/apps/kexi/icons/oxygen/128x128/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/128x128/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/128x128/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/16x16/actions/data-source-tag.png share/apps/kexi/icons/oxygen/16x16/actions/table.png share/apps/kexi/icons/oxygen/16x16/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/16x16/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/16x16/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/22x22/actions/data-source-tag.png share/apps/kexi/icons/oxygen/22x22/actions/table.png share/apps/kexi/icons/oxygen/22x22/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/22x22/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/22x22/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/32x32/actions/table.png share/apps/kexi/icons/oxygen/32x32/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/32x32/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/32x32/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/48x48/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/48x48/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/48x48/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/64x64/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/64x64/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/64x64/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/scalable/actions/small/16x16/data-source-tag.svgz share/apps/kexi/icons/oxygen/scalable/actions/small/22x22/data-source-tag.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/application-x-kexiproject-sqlite.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/application-x-kexiproject-sqlite2.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/application-x-kexiproject-sqlite3.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kexiproject-sqlite.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kexiproject-sqlite2.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kexiproject-sqlite3.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kexiproject-sqlite.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kexiproject-sqlite2.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kexiproject-sqlite3.svgz share/apps/kformula/kformula.rc share/apps/kformula/kformula_readonly.rc share/apps/kformula/tips share/apps/koffice/autocorrect/autocorrect.xml share/apps/koffice/autocorrect/en_US.xml share/apps/koffice/icons/hicolor/16x16/actions/abs.png share/apps/koffice/icons/hicolor/16x16/actions/borderoutline.png share/apps/koffice/icons/hicolor/16x16/actions/brackets.png share/apps/koffice/icons/hicolor/16x16/actions/bring_forward.png share/apps/koffice/icons/hicolor/16x16/actions/cap_butt.png share/apps/koffice/icons/hicolor/16x16/actions/cap_round.png share/apps/koffice/icons/hicolor/16x16/actions/cap_square.png share/apps/koffice/icons/hicolor/16x16/actions/checkbox.png share/apps/koffice/icons/hicolor/16x16/actions/color_fill.png share/apps/koffice/icons/hicolor/16x16/actions/color_line.png share/apps/koffice/icons/hicolor/16x16/actions/delete_table_col.png share/apps/koffice/icons/hicolor/16x16/actions/delete_table_row.png share/apps/koffice/icons/hicolor/16x16/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/16x16/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/16x16/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/16x16/actions/format-line-spacing-normal.png share/apps/koffice/icons/hicolor/16x16/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/16x16/actions/format_decreaseindent.png share/apps/koffice/icons/hicolor/16x16/actions/format_increaseindent.png share/apps/koffice/icons/hicolor/16x16/actions/frac.png share/apps/koffice/icons/hicolor/16x16/actions/frame_edit.png share/apps/koffice/icons/hicolor/16x16/actions/frame_formula.png share/apps/koffice/icons/hicolor/16x16/actions/frame_image.png share/apps/koffice/icons/hicolor/16x16/actions/frame_query.png share/apps/koffice/icons/hicolor/16x16/actions/frame_spreadsheet.png share/apps/koffice/icons/hicolor/16x16/actions/frame_text.png share/apps/koffice/icons/hicolor/16x16/actions/gsub.png share/apps/koffice/icons/hicolor/16x16/actions/gsup.png share/apps/koffice/icons/hicolor/16x16/actions/inline_image.png share/apps/koffice/icons/hicolor/16x16/actions/inline_table.png share/apps/koffice/icons/hicolor/16x16/actions/insert_table_col.png share/apps/koffice/icons/hicolor/16x16/actions/insert_table_row.png share/apps/koffice/icons/hicolor/16x16/actions/int.png share/apps/koffice/icons/hicolor/16x16/actions/join_bevel.png share/apps/koffice/icons/hicolor/16x16/actions/join_miter.png share/apps/koffice/icons/hicolor/16x16/actions/join_round.png share/apps/koffice/icons/hicolor/16x16/actions/kdb_form.png share/apps/koffice/icons/hicolor/16x16/actions/kdb_table.png share/apps/koffice/icons/hicolor/16x16/actions/line.png share/apps/koffice/icons/hicolor/16x16/actions/linewidth.png share/apps/koffice/icons/hicolor/16x16/actions/lsub.png share/apps/koffice/icons/hicolor/16x16/actions/lsup.png share/apps/koffice/icons/hicolor/16x16/actions/matrix.png share/apps/koffice/icons/hicolor/16x16/actions/multiline.png share/apps/koffice/icons/hicolor/16x16/actions/onetwomatrix.png share/apps/koffice/icons/hicolor/16x16/actions/over.png share/apps/koffice/icons/hicolor/16x16/actions/paren.png share/apps/koffice/icons/hicolor/16x16/actions/prod.png share/apps/koffice/icons/hicolor/16x16/actions/rsub.png share/apps/koffice/icons/hicolor/16x16/actions/rsup.png share/apps/koffice/icons/hicolor/16x16/actions/send_backward.png share/apps/koffice/icons/hicolor/16x16/actions/sqrt.png share/apps/koffice/icons/hicolor/16x16/actions/sum.png share/apps/koffice/icons/hicolor/16x16/actions/tab_first.png share/apps/koffice/icons/hicolor/16x16/actions/tab_last.png share/apps/koffice/icons/hicolor/16x16/actions/tab_left.png share/apps/koffice/icons/hicolor/16x16/actions/tab_right.png share/apps/koffice/icons/hicolor/16x16/actions/textcolor.png +share/apps/koffice/icons/hicolor/16x16/actions/tool-changetracking.png +share/apps/koffice/icons/hicolor/16x16/actions/tool-paragraph.png +share/apps/koffice/icons/hicolor/16x16/actions/tool-text.png share/apps/koffice/icons/hicolor/16x16/actions/under.png share/apps/koffice/icons/hicolor/16x16/actions/view-barcode.png share/apps/koffice/icons/hicolor/16x16/actions/view-sort-ascending.png share/apps/koffice/icons/hicolor/16x16/actions/view-sort-descending.png share/apps/koffice/icons/hicolor/16x16/actions/view_orientation.png share/apps/koffice/icons/hicolor/16x16/actions/view_split.png share/apps/koffice/icons/hicolor/16x16/apps/go.png share/apps/koffice/icons/hicolor/16x16/apps/key_bindings.png share/apps/koffice/icons/hicolor/16x16/apps/style.png share/apps/koffice/icons/hicolor/22x22/actions/abs.png share/apps/koffice/icons/hicolor/22x22/actions/aobottom.png share/apps/koffice/icons/hicolor/22x22/actions/aocenterh.png share/apps/koffice/icons/hicolor/22x22/actions/aocenterv.png share/apps/koffice/icons/hicolor/22x22/actions/aoleft.png share/apps/koffice/icons/hicolor/22x22/actions/aoright.png share/apps/koffice/icons/hicolor/22x22/actions/aotop.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-down.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-left-down.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-left-up.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-left.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-right-down.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-right-up.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-up.png share/apps/koffice/icons/hicolor/22x22/actions/artistictext-attach-path.png share/apps/koffice/icons/hicolor/22x22/actions/artistictext-detach-path.png share/apps/koffice/icons/hicolor/22x22/actions/artistictext-tool.png share/apps/koffice/icons/hicolor/22x22/actions/borderbottom.png share/apps/koffice/icons/hicolor/22x22/actions/borderleft.png share/apps/koffice/icons/hicolor/22x22/actions/borderoutline.png share/apps/koffice/icons/hicolor/22x22/actions/borderright.png share/apps/koffice/icons/hicolor/22x22/actions/bordertop.png share/apps/koffice/icons/hicolor/22x22/actions/brackets.png share/apps/koffice/icons/hicolor/22x22/actions/bring_forward.png share/apps/koffice/icons/hicolor/22x22/actions/calligraphy.png share/apps/koffice/icons/hicolor/22x22/actions/cancel.png share/apps/koffice/icons/hicolor/22x22/actions/char.png share/apps/koffice/icons/hicolor/22x22/actions/checkbox.png share/apps/koffice/icons/hicolor/22x22/actions/clipart.png share/apps/koffice/icons/hicolor/22x22/actions/clipart_from_file.png share/apps/koffice/icons/hicolor/22x22/actions/color_fill.png share/apps/koffice/icons/hicolor/22x22/actions/color_line.png share/apps/koffice/icons/hicolor/22x22/actions/delete_table_col.png share/apps/koffice/icons/hicolor/22x22/actions/delete_table_row.png share/apps/koffice/icons/hicolor/22x22/actions/delslide.png share/apps/koffice/icons/hicolor/22x22/actions/edittext.png share/apps/koffice/icons/hicolor/22x22/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/22x22/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/22x22/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/22x22/actions/format-line-spacing-normal.png share/apps/koffice/icons/hicolor/22x22/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/22x22/actions/format_decreaseindent.png share/apps/koffice/icons/hicolor/22x22/actions/format_increaseindent.png share/apps/koffice/icons/hicolor/22x22/actions/formulashape.png share/apps/koffice/icons/hicolor/22x22/actions/frac.png share/apps/koffice/icons/hicolor/22x22/actions/frame_chart.png share/apps/koffice/icons/hicolor/22x22/actions/frame_edit.png share/apps/koffice/icons/hicolor/22x22/actions/frame_formula.png share/apps/koffice/icons/hicolor/22x22/actions/frame_image.png share/apps/koffice/icons/hicolor/22x22/actions/frame_query.png share/apps/koffice/icons/hicolor/22x22/actions/frame_spreadsheet.png share/apps/koffice/icons/hicolor/22x22/actions/frame_text.png share/apps/koffice/icons/hicolor/22x22/actions/gradient.png share/apps/koffice/icons/hicolor/22x22/actions/group.png share/apps/koffice/icons/hicolor/22x22/actions/gsub.png share/apps/koffice/icons/hicolor/22x22/actions/gsup.png share/apps/koffice/icons/hicolor/22x22/actions/inline_image.png share/apps/koffice/icons/hicolor/22x22/actions/inline_table.png share/apps/koffice/icons/hicolor/22x22/actions/inscol.png share/apps/koffice/icons/hicolor/22x22/actions/insert_table_col.png share/apps/koffice/icons/hicolor/22x22/actions/insert_table_row.png share/apps/koffice/icons/hicolor/22x22/actions/insrow.png share/apps/koffice/icons/hicolor/22x22/actions/int.png share/apps/koffice/icons/hicolor/22x22/actions/kotext-character.png share/apps/koffice/icons/hicolor/22x22/actions/kotext-paragraph.png share/apps/koffice/icons/hicolor/22x22/actions/label.png share/apps/koffice/icons/hicolor/22x22/actions/line.png share/apps/koffice/icons/hicolor/22x22/actions/lower.png share/apps/koffice/icons/hicolor/22x22/actions/lsub.png share/apps/koffice/icons/hicolor/22x22/actions/lsup.png share/apps/koffice/icons/hicolor/22x22/actions/matrix.png share/apps/koffice/icons/hicolor/22x22/actions/multiline.png share/apps/koffice/icons/hicolor/22x22/actions/music-cross.png share/apps/koffice/icons/hicolor/22x22/actions/music-dottednote.png share/apps/koffice/icons/hicolor/22x22/actions/music-doublecross.png share/apps/koffice/icons/hicolor/22x22/actions/music-doubleflat.png share/apps/koffice/icons/hicolor/22x22/actions/music-flat.png share/apps/koffice/icons/hicolor/22x22/actions/music-natural.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-128th.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-16th.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-32nd.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-64th.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-breve.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-eighth.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-half.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-quarter.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-whole.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-128th.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-16th.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-32nd.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-64th.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-breve.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-eighth.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-half.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-quarter.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-whole.png share/apps/koffice/icons/hicolor/22x22/actions/music-tiednote.png share/apps/koffice/icons/hicolor/22x22/actions/neonpen.png share/apps/koffice/icons/hicolor/22x22/actions/ok.png share/apps/koffice/icons/hicolor/22x22/actions/onetwomatrix.png share/apps/koffice/icons/hicolor/22x22/actions/over.png share/apps/koffice/icons/hicolor/22x22/actions/page.png share/apps/koffice/icons/hicolor/22x22/actions/paren.png share/apps/koffice/icons/hicolor/22x22/actions/pattern.png share/apps/koffice/icons/hicolor/22x22/actions/prod.png share/apps/koffice/icons/hicolor/22x22/actions/raise.png share/apps/koffice/icons/hicolor/22x22/actions/remcol.png share/apps/koffice/icons/hicolor/22x22/actions/remrow.png share/apps/koffice/icons/hicolor/22x22/actions/rsub.png share/apps/koffice/icons/hicolor/22x22/actions/rsup.png share/apps/koffice/icons/hicolor/22x22/actions/select.png share/apps/koffice/icons/hicolor/22x22/actions/send_backward.png share/apps/koffice/icons/hicolor/22x22/actions/shadow.png share/apps/koffice/icons/hicolor/22x22/actions/shadowB.png share/apps/koffice/icons/hicolor/22x22/actions/shadowL.png share/apps/koffice/icons/hicolor/22x22/actions/shadowLB.png share/apps/koffice/icons/hicolor/22x22/actions/shadowLU.png share/apps/koffice/icons/hicolor/22x22/actions/shadowR.png share/apps/koffice/icons/hicolor/22x22/actions/shadowRB.png share/apps/koffice/icons/hicolor/22x22/actions/shadowRU.png share/apps/koffice/icons/hicolor/22x22/actions/shadowU.png share/apps/koffice/icons/hicolor/22x22/actions/slide-new.png share/apps/koffice/icons/hicolor/22x22/actions/slide.png share/apps/koffice/icons/hicolor/22x22/actions/spreadsheetshape.png share/apps/koffice/icons/hicolor/22x22/actions/sqrt.png share/apps/koffice/icons/hicolor/22x22/actions/sum.png share/apps/koffice/icons/hicolor/22x22/actions/toggle_docbrowser.png share/apps/koffice/icons/hicolor/22x22/actions/under.png share/apps/koffice/icons/hicolor/22x22/actions/ungroup.png share/apps/koffice/icons/hicolor/22x22/actions/view-barcode.png share/apps/koffice/icons/hicolor/22x22/actions/view-sort-ascending.png share/apps/koffice/icons/hicolor/22x22/actions/view-sort-descending.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-page.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-pixels.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-two-pages.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-width.png share/apps/koffice/icons/hicolor/32x32/actions/abs.png share/apps/koffice/icons/hicolor/32x32/actions/brackets.png share/apps/koffice/icons/hicolor/32x32/actions/bring_forward.png share/apps/koffice/icons/hicolor/32x32/actions/checkbox.png share/apps/koffice/icons/hicolor/32x32/actions/delete_table_col.png share/apps/koffice/icons/hicolor/32x32/actions/delete_table_row.png share/apps/koffice/icons/hicolor/32x32/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/32x32/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/32x32/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/32x32/actions/format-line-spacing-normal.png share/apps/koffice/icons/hicolor/32x32/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/32x32/actions/frac.png share/apps/koffice/icons/hicolor/32x32/actions/grid.png share/apps/koffice/icons/hicolor/32x32/actions/gsub.png share/apps/koffice/icons/hicolor/32x32/actions/gsup.png share/apps/koffice/icons/hicolor/32x32/actions/insert_table_col.png share/apps/koffice/icons/hicolor/32x32/actions/insert_table_row.png share/apps/koffice/icons/hicolor/32x32/actions/int.png share/apps/koffice/icons/hicolor/32x32/actions/lsub.png share/apps/koffice/icons/hicolor/32x32/actions/lsup.png share/apps/koffice/icons/hicolor/32x32/actions/matrix.png share/apps/koffice/icons/hicolor/32x32/actions/multiline.png share/apps/koffice/icons/hicolor/32x32/actions/onetwomatrix.png share/apps/koffice/icons/hicolor/32x32/actions/over.png share/apps/koffice/icons/hicolor/32x32/actions/paren.png share/apps/koffice/icons/hicolor/32x32/actions/prod.png share/apps/koffice/icons/hicolor/32x32/actions/rsub.png share/apps/koffice/icons/hicolor/32x32/actions/rsup.png share/apps/koffice/icons/hicolor/32x32/actions/send_backward.png share/apps/koffice/icons/hicolor/32x32/actions/shapes.png share/apps/koffice/icons/hicolor/32x32/actions/spreadsheetshape.png share/apps/koffice/icons/hicolor/32x32/actions/sqrt.png share/apps/koffice/icons/hicolor/32x32/actions/sum.png share/apps/koffice/icons/hicolor/32x32/actions/under.png share/apps/koffice/icons/hicolor/32x32/actions/view-barcode.png share/apps/koffice/icons/hicolor/32x32/actions/view-sort-ascending.png share/apps/koffice/icons/hicolor/32x32/apps/go.png share/apps/koffice/icons/hicolor/48x48/actions/bring_forward.png share/apps/koffice/icons/hicolor/48x48/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/48x48/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/48x48/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/48x48/actions/format-line-spacing-simple.png share/apps/koffice/icons/hicolor/48x48/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/48x48/actions/send_backward.png share/apps/koffice/icons/hicolor/48x48/apps/key_bindings.png share/apps/koffice/icons/hicolor/scalable/actions/bring_forward.svgz share/apps/koffice/icons/hicolor/scalable/actions/format-line-spacing-double.svgz share/apps/koffice/icons/hicolor/scalable/actions/format-line-spacing-normal.svgz share/apps/koffice/icons/hicolor/scalable/actions/format-line-spacing-triple.svgz share/apps/koffice/icons/hicolor/scalable/actions/send_backward.svgz share/apps/koffice/icons/oxygen/16x16/actions/animation-kpresenter.png share/apps/koffice/icons/oxygen/16x16/actions/snap-extension.png share/apps/koffice/icons/oxygen/16x16/actions/snap-guideline.png share/apps/koffice/icons/oxygen/16x16/actions/snap-intersection.png share/apps/koffice/icons/oxygen/16x16/actions/snap-node.png share/apps/koffice/icons/oxygen/16x16/actions/snap-orto.png share/apps/koffice/icons/oxygen/22x22/actions/arrow-right-koffice.png share/apps/koffice/icons/oxygen/22x22/actions/backgroundtool.png share/apps/koffice/icons/oxygen/22x22/actions/callout-shape.png share/apps/koffice/icons/oxygen/22x22/actions/circular-arrow-shape.png share/apps/koffice/icons/oxygen/22x22/actions/convert-to-path.png share/apps/koffice/icons/oxygen/22x22/actions/createpath.png share/apps/koffice/icons/oxygen/22x22/actions/cross-shape.png share/apps/koffice/icons/oxygen/22x22/actions/divine-shape.png share/apps/koffice/icons/oxygen/22x22/actions/editpath.png share/apps/koffice/icons/oxygen/22x22/actions/ellipse-shape.png share/apps/koffice/icons/oxygen/22x22/actions/flower-shape.png share/apps/koffice/icons/oxygen/22x22/actions/gearhead-shape.png share/apps/koffice/icons/oxygen/22x22/actions/hand.png share/apps/koffice/icons/oxygen/22x22/actions/hexagon-shape.png share/apps/koffice/icons/oxygen/22x22/actions/path-break-point.png share/apps/koffice/icons/oxygen/22x22/actions/path-break-segment.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-corner.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-curve.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-insert.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-join.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-line.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-merge.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-remove.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-smooth.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-symmetric.png share/apps/koffice/icons/oxygen/22x22/actions/pathsegment-curve.png share/apps/koffice/icons/oxygen/22x22/actions/pathsegment-line.png share/apps/koffice/icons/oxygen/22x22/actions/pathshape.png share/apps/koffice/icons/oxygen/22x22/actions/pentagon-shape.png share/apps/koffice/icons/oxygen/22x22/actions/polygon-shape.png share/apps/koffice/icons/oxygen/22x22/actions/rectangle-shape.png share/apps/koffice/icons/oxygen/22x22/actions/smiley-shape.png share/apps/koffice/icons/oxygen/22x22/actions/spiral-shape.png share/apps/koffice/icons/oxygen/22x22/actions/star-shape.png share/apps/koffice/icons/rotate.png share/apps/koffice/icons/shear.png share/apps/koffice/icons/zoom_in_cursor.png share/apps/koffice/icons/zoom_out_cursor.png share/apps/koffice/koffice_shell.rc share/apps/koffice/thesaurus/thesaurus.txt share/apps/koproperty/icons/hicolor/16x16/actions/button_no.png share/apps/kplato/about/intro.html share/apps/kplato/about/kplato.css share/apps/kplato/about/main.html share/apps/kplato/about/tips.html share/apps/kplato/about/top-left-kplato.png share/apps/kplato/about/tutorial.html share/apps/kplato/icons/hicolor/22x22/actions/accounts.png share/apps/kplato/icons/hicolor/22x22/actions/gantt_chart.png share/apps/kplato/icons/hicolor/22x22/actions/pert_chart.png share/apps/kplato/icons/hicolor/22x22/actions/resource-calendar-child-insert.png share/apps/kplato/icons/hicolor/22x22/actions/resource-calendar-insert.png share/apps/kplato/icons/hicolor/22x22/actions/resource-group-new.png share/apps/kplato/icons/hicolor/22x22/actions/resources.png share/apps/kplato/icons/hicolor/22x22/actions/view-task-add.png share/apps/kplato/icons/hicolor/22x22/actions/view-task-child-add.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-baselined-add.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-baselined-remove.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-baselined.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-calculus.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-child-insert.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-edit.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-insert.png share/apps/kplato/icons/hicolor/32x32/actions/view-task.png share/apps/kplato/icons/hicolor/48x48/actions/template_timechart.png share/apps/kplato/icons/hicolor/scalable/actions/template_timechart.svgz share/apps/kplato/kpartplugins/scripting.rc share/apps/kplato/kplato.rc share/apps/kplato/kplato_readonly.rc share/apps/kplato/scripts/extensions/busyinfoclear.py share/apps/kplato/scripts/extensions/busyinfoexport.py share/apps/kplato/scripts/extensions/busyinfoimport.py share/apps/kplato/scripts/extensions/resourcesimport.py share/apps/kplato/scripts/samples/sample_busyinfocheck.py share/apps/kplato/scripts/samples/sample_project.py share/apps/kplato/scripts/scripts.rc share/apps/kplato/templates/Simple/.directory share/apps/kplato/templates/Simple/.source/8HourDay-40HourWeek.kplatot +share/apps/kplato/templates/Simple/.source/Basicproject.kplatot share/apps/kplato/templates/Simple/.source/Plain.kplatot share/apps/kplato/templates/Simple/8HourDay-40HourWeek.desktop +share/apps/kplato/templates/Simple/Basicproject.desktop share/apps/kplato/templates/Simple/Plain.desktop share/apps/kplatowork/icons/hicolor/128x128/actions/template_empty.png share/apps/kplatowork/icons/hicolor/16x16/actions/template_empty.png share/apps/kplatowork/icons/hicolor/22x22/actions/template_empty.png share/apps/kplatowork/icons/hicolor/32x32/actions/template_empty.png share/apps/kplatowork/icons/hicolor/48x48/actions/template_empty.png share/apps/kplatowork/icons/hicolor/64x64/actions/template_empty.png share/apps/kplatowork/icons/hicolor/scalable/actions/template_empty.svgz share/apps/kplatowork/kplatowork.rc share/apps/kplatowork/kplatowork_mainwindow.rc share/apps/kplatowork/kplatowork_readonly.rc share/apps/kplatowork/templates/Simple/.directory share/apps/kplatowork/templates/Simple/.source/Empty.kplatoworkt share/apps/kplatowork/templates/Simple/Empty.desktop share/apps/kpresenter/icons/hicolor/48x48/actions/template_emptylandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_emptyportrait.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_onecolumnlandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_onecolumnportrait.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_titlelandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_titleportrait.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_twocolumnlandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_twocolumnportrait.png +share/apps/kpresenter/icons/hicolor/64x64/actions/blue_orange_vector.png +share/apps/kpresenter/icons/hicolor/64x64/actions/burning_desire.png +share/apps/kpresenter/icons/hicolor/64x64/actions/business.png +share/apps/kpresenter/icons/hicolor/64x64/actions/flood_light.png +share/apps/kpresenter/icons/hicolor/64x64/actions/rounded_square.png +share/apps/kpresenter/icons/hicolor/64x64/actions/simple_waves.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_monotone.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_monotone_wide.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_morning.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_morning_wide.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_night.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_night_wide.png +share/apps/kpresenter/icons/hicolor/64x64/actions/strange_far_hills.png share/apps/kpresenter/icons/hicolor/scalable/actions/template_emptylandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_emptyportrait.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_onecolumnlandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_onecolumnportrait.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_titlelandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_titleportrait.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_twocolumnlandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_twocolumnportrait.svgz share/apps/kpresenter/kpartplugins/scan-kpresenter.rc share/apps/kpresenter/kpresenter.rc share/apps/kpresenter/kpresenter_readonly.rc share/apps/kpresenter/pics/layout-elements.svg share/apps/kpresenter/pics/rotate/bl.png share/apps/kpresenter/pics/rotate/bldn.png share/apps/kpresenter/pics/rotate/bm.png share/apps/kpresenter/pics/rotate/bmdn.png share/apps/kpresenter/pics/rotate/br.png share/apps/kpresenter/pics/rotate/brdn.png share/apps/kpresenter/pics/rotate/ml.png share/apps/kpresenter/pics/rotate/mldn.png share/apps/kpresenter/pics/rotate/mr.png share/apps/kpresenter/pics/rotate/mrdn.png share/apps/kpresenter/pics/rotate/tl.png share/apps/kpresenter/pics/rotate/tldn.png share/apps/kpresenter/pics/rotate/tm.png share/apps/kpresenter/pics/rotate/tmdn.png share/apps/kpresenter/pics/rotate/tr.png share/apps/kpresenter/pics/rotate/trdn.png share/apps/kpresenter/pics/webslideshow-sidebar.png share/apps/kpresenter/styles/defaultstyles.xml share/apps/kpresenter/templates/Screen/.directory share/apps/kpresenter/templates/Screen/.source/emptyLandscape.otp share/apps/kpresenter/templates/Screen/.source/emptyLandscapeWide.otp share/apps/kpresenter/templates/Screen/emptyLandscape.desktop share/apps/kpresenter/templates/Screen/emptyLandscapeWide.desktop +share/apps/kpresenter/templates/exportHTML/slides.html +share/apps/kpresenter/templates/exportHTML/templates/Default.zip +share/apps/kpresenter/templates/exportHTML/toc.html +share/apps/kpresenter/templates/odf/.directory +share/apps/kpresenter/templates/odf/.source/blue_orange_vector.otp +share/apps/kpresenter/templates/odf/.source/burning_desire.otp +share/apps/kpresenter/templates/odf/.source/business.otp +share/apps/kpresenter/templates/odf/.source/flood_light.otp +share/apps/kpresenter/templates/odf/.source/rounded_square.otp +share/apps/kpresenter/templates/odf/.source/simple_waves.otp +share/apps/kpresenter/templates/odf/.source/skyline_monotone.otp +share/apps/kpresenter/templates/odf/.source/skyline_monotone_wide.otp +share/apps/kpresenter/templates/odf/.source/skyline_morning.otp +share/apps/kpresenter/templates/odf/.source/skyline_morning_wide.otp +share/apps/kpresenter/templates/odf/.source/skyline_night.otp +share/apps/kpresenter/templates/odf/.source/skyline_night_wide.otp +share/apps/kpresenter/templates/odf/.source/strange_far_hills.otp +share/apps/kpresenter/templates/odf/blue_orange_vector.desktop +share/apps/kpresenter/templates/odf/burning_desire.desktop +share/apps/kpresenter/templates/odf/business.desktop +share/apps/kpresenter/templates/odf/flood_light.desktop +share/apps/kpresenter/templates/odf/rounded_square.desktop +share/apps/kpresenter/templates/odf/simple_waves.desktop +share/apps/kpresenter/templates/odf/skyline_monotone.desktop +share/apps/kpresenter/templates/odf/skyline_monotone_wide.desktop +share/apps/kpresenter/templates/odf/skyline_morning.desktop +share/apps/kpresenter/templates/odf/skyline_morning_wide.desktop +share/apps/kpresenter/templates/odf/skyline_night.desktop +share/apps/kpresenter/templates/odf/skyline_night_wide.desktop +share/apps/kpresenter/templates/odf/strange_far_hills.desktop share/apps/krita/backgrounds/old_paper.png share/apps/krita/brushes/A---1-Basic-Big.vbr share/apps/krita/brushes/A---1-Blending-brush.vbr share/apps/krita/brushes/A---1-simple-round.vbr share/apps/krita/brushes/A---13B-Airbrush-big.vbr share/apps/krita/brushes/A--1-Speed-Knife.vbr share/apps/krita/brushes/A--13b-Airbrush.vbr share/apps/krita/brushes/A--13c-Airbrush.vbr share/apps/krita/brushes/A-1-Knife-1.vbr share/apps/krita/brushes/A-Braids-.gih share/apps/krita/brushes/A-Braids-b.gih share/apps/krita/brushes/A-Chain.gih share/apps/krita/brushes/A-Rake.gih share/apps/krita/brushes/A-Round.vbr share/apps/krita/brushes/A-Zend.gbr share/apps/krita/brushes/A-abstract-textured1.gih share/apps/krita/brushes/A-abstract-textured2.gih share/apps/krita/brushes/A-bamboo-leaves.gih share/apps/krita/brushes/A-bamboo.gih share/apps/krita/brushes/A-cloudy.gih share/apps/krita/brushes/A-concrete.gih share/apps/krita/brushes/A-crackled.gih share/apps/krita/brushes/A-crayon.gih share/apps/krita/brushes/A-dirty-brush.gih share/apps/krita/brushes/A-dirty-spot.gih share/apps/krita/brushes/A-dynamic-brush.gih share/apps/krita/brushes/A-eroded-cercle-anim.gih share/apps/krita/brushes/A-eroded-cercle-anim2.gih share/apps/krita/brushes/A-eroded-chinese-anim.gih share/apps/krita/brushes/A-eroded-dirtybrush-anim.gih share/apps/krita/brushes/A-eroded-knife-anim.gih share/apps/krita/brushes/A-fairy-dust.gih share/apps/krita/brushes/A-forest.gih share/apps/krita/brushes/A-fur.gih share/apps/krita/brushes/A-herbs.gih share/apps/krita/brushes/A-leaves.gih share/apps/krita/brushes/A-lucky_star.gbr share/apps/krita/brushes/A-mineral-cristal.gih share/apps/krita/brushes/A-provencal.gih share/apps/krita/brushes/A-random-vegetal.gih share/apps/krita/brushes/A-reptile-skin.gih share/apps/krita/brushes/A-rocks.gih share/apps/krita/brushes/A-smoke.gih share/apps/krita/brushes/A-sparkle1.gbr share/apps/krita/brushes/A-sparkle2.gbr share/apps/krita/brushes/A-sparkle3.gbr share/apps/krita/brushes/A-splat1.gih share/apps/krita/brushes/A-splat2.gih share/apps/krita/brushes/A-starfield.gih share/apps/krita/brushes/A-starfield2.gih share/apps/krita/brushes/A-wall-texture.gih share/apps/krita/brushes/Z-Test-pressure.gih +share/apps/krita/brushes/ab001.myb +share/apps/krita/brushes/ab001_prev.png +share/apps/krita/brushes/ab002.myb +share/apps/krita/brushes/ab002_prev.png +share/apps/krita/brushes/ab007.myb +share/apps/krita/brushes/ab007_prev.png +share/apps/krita/brushes/ab009.myb +share/apps/krita/brushes/ab009_prev.png +share/apps/krita/brushes/ab023.myb +share/apps/krita/brushes/ab023_prev.png +share/apps/krita/brushes/ab026.myb +share/apps/krita/brushes/ab026_prev.png +share/apps/krita/brushes/ab028.myb +share/apps/krita/brushes/ab028_prev.png +share/apps/krita/brushes/ab033.myb +share/apps/krita/brushes/ab033_prev.png +share/apps/krita/brushes/ab043.myb +share/apps/krita/brushes/ab043_prev.png share/apps/krita/brushmodels/3d-deform-brush.mtl share/apps/krita/brushmodels/3d-deform-brush.obj -share/apps/krita/brushmodels/3d-pencil.mtl -share/apps/krita/brushmodels/3d-pencil.obj share/apps/krita/brushmodels/airbrush.mtl share/apps/krita/brushmodels/airbrush.obj share/apps/krita/brushmodels/smudge-finger.mtl share/apps/krita/brushmodels/smudge-finger.obj share/apps/krita/brushmodels/stylus.mtl share/apps/krita/brushmodels/stylus.obj +share/apps/krita/defaultpresets/chalkbrush.kpp +share/apps/krita/defaultpresets/complex.kpp +share/apps/krita/defaultpresets/curvebrush.kpp +share/apps/krita/defaultpresets/deformbrush.kpp +share/apps/krita/defaultpresets/duplicate.kpp +share/apps/krita/defaultpresets/dynabrush.kpp +share/apps/krita/defaultpresets/eraser.kpp +share/apps/krita/defaultpresets/experimentbrush.kpp +share/apps/krita/defaultpresets/filter.kpp +share/apps/krita/defaultpresets/gridbrush.kpp +share/apps/krita/defaultpresets/hairybrush.kpp +share/apps/krita/defaultpresets/paintbrush.kpp +share/apps/krita/defaultpresets/particlebrush.kpp +share/apps/krita/defaultpresets/smudge.kpp +share/apps/krita/defaultpresets/spraybrush.kpp share/apps/krita/dtd/krita.dtd share/apps/krita/gradients/Abstract_1.ggr share/apps/krita/gradients/Abstract_2.ggr share/apps/krita/gradients/Abstract_3.ggr share/apps/krita/gradients/Aneurism.ggr share/apps/krita/gradients/Blinds.ggr share/apps/krita/gradients/Blue_Green.ggr share/apps/krita/gradients/Browns.ggr share/apps/krita/gradients/Brushed_Aluminium.ggr share/apps/krita/gradients/Burning_Paper.ggr share/apps/krita/gradients/Burning_Transparency.ggr share/apps/krita/gradients/CD.ggr share/apps/krita/gradients/CD_Half.ggr share/apps/krita/gradients/Caribbean_Blues.ggr share/apps/krita/gradients/Coffee.ggr share/apps/krita/gradients/Cold_Steel.ggr share/apps/krita/gradients/Cold_Steel_2.ggr share/apps/krita/gradients/Crown_molding.ggr share/apps/krita/gradients/Dark_1.ggr share/apps/krita/gradients/Deep_Sea.ggr share/apps/krita/gradients/Default.ggr share/apps/krita/gradients/Flare_Glow_Angular_1.ggr share/apps/krita/gradients/Flare_Glow_Radial_1.ggr share/apps/krita/gradients/Flare_Glow_Radial_2.ggr share/apps/krita/gradients/Flare_Glow_Radial_3.ggr share/apps/krita/gradients/Flare_Glow_Radial_4.ggr share/apps/krita/gradients/Flare_Radial_101.ggr share/apps/krita/gradients/Flare_Radial_102.ggr share/apps/krita/gradients/Flare_Radial_103.ggr share/apps/krita/gradients/Flare_Rays_Radial_1.ggr share/apps/krita/gradients/Flare_Rays_Radial_2.ggr share/apps/krita/gradients/Flare_Rays_Size_1.ggr share/apps/krita/gradients/Flare_Sizefac_101.ggr share/apps/krita/gradients/Four_bars.ggr share/apps/krita/gradients/French_flag.ggr share/apps/krita/gradients/French_flag_smooth.ggr share/apps/krita/gradients/Full_saturation_spectrum_CCW.ggr share/apps/krita/gradients/Full_saturation_spectrum_CW.ggr share/apps/krita/gradients/German_flag.ggr share/apps/krita/gradients/German_flag_smooth.ggr share/apps/krita/gradients/Golden.ggr share/apps/krita/gradients/Greens.ggr share/apps/krita/gradients/Horizon_1.ggr share/apps/krita/gradients/Horizon_2.ggr share/apps/krita/gradients/Incandescent.ggr share/apps/krita/gradients/Land_1.ggr share/apps/krita/gradients/Land_and_Sea.ggr share/apps/krita/gradients/Metallic_Something.ggr share/apps/krita/gradients/Mexican_flag.ggr share/apps/krita/gradients/Mexican_flag_smooth.ggr share/apps/krita/gradients/Nauseating_Headache.ggr share/apps/krita/gradients/Neon_Cyan.ggr share/apps/krita/gradients/Neon_Green.ggr share/apps/krita/gradients/Neon_Yellow.ggr share/apps/krita/gradients/Pastel_Rainbow.ggr share/apps/krita/gradients/Pastels.ggr share/apps/krita/gradients/Purples.ggr share/apps/krita/gradients/Radial_Eyeball_Blue.ggr share/apps/krita/gradients/Radial_Eyeball_Brown.ggr share/apps/krita/gradients/Radial_Eyeball_Green.ggr share/apps/krita/gradients/Radial_Glow_1.ggr share/apps/krita/gradients/Radial_Rainbow_Hoop.ggr share/apps/krita/gradients/Romanian_flag.ggr share/apps/krita/gradients/Romanian_flag_smooth.ggr share/apps/krita/gradients/Rounded_edge.ggr share/apps/krita/gradients/Shadows_1.ggr share/apps/krita/gradients/Shadows_2.ggr share/apps/krita/gradients/Shadows_3.ggr share/apps/krita/gradients/Skyline.ggr share/apps/krita/gradients/Skyline_polluted.ggr share/apps/krita/gradients/Square_Wood_Frame.ggr share/apps/krita/gradients/Sunrise.ggr share/apps/krita/gradients/Three_bars_sin.ggr share/apps/krita/gradients/Tropical_Colors.ggr share/apps/krita/gradients/Tube_Red.ggr share/apps/krita/gradients/Wood_1.ggr share/apps/krita/gradients/Wood_2.ggr share/apps/krita/gradients/Yellow_Contrast.ggr share/apps/krita/gradients/Yellow_Orange.ggr share/apps/krita/icons/hicolor/48x48/actions/template_cmyk_empty.png +share/apps/krita/icons/hicolor/48x48/actions/template_comics_empty.png share/apps/krita/icons/hicolor/48x48/actions/template_gray_empty.png share/apps/krita/icons/hicolor/48x48/actions/template_rgb_empty.png -share/apps/krita/images/krita-chalk.png share/apps/krita/images/krita-curve.png share/apps/krita/images/krita-deform.png share/apps/krita/images/krita-duplicate.png share/apps/krita/images/krita-dyna.png share/apps/krita/images/krita-eraser.png share/apps/krita/images/krita-filterop.png +share/apps/krita/images/krita-grid.png +share/apps/krita/images/krita-hatching.png share/apps/krita/images/krita-paintbrush.png -share/apps/krita/images/krita-pencil.png share/apps/krita/images/krita-smudgebrush.png share/apps/krita/images/krita-spray.png share/apps/krita/images/krita-sumi.png +share/apps/krita/images/krita_first_start.kra share/apps/krita/images/previewfilter.png share/apps/krita/kpartplugins/scan-krita.rc share/apps/krita/krita.rc share/apps/krita/krita_readonly.rc share/apps/krita/metadata/schemas/dc.schema share/apps/krita/metadata/schemas/exif.schema %%GTL%%share/apps/krita/metadata/schemas/exrchannels.schema share/apps/krita/metadata/schemas/mkn.schema share/apps/krita/metadata/schemas/tiff.schema share/apps/krita/metadata/schemas/xmp.schema share/apps/krita/metadata/schemas/xmpmm.schema share/apps/krita/metadata/schemas/xmprights.schema +share/apps/krita/paintoppresets/Fur.kpp +share/apps/krita/paintoppresets/Sketchy.kpp +share/apps/krita/paintoppresets/chalk.kpp +share/apps/krita/paintoppresets/chrome.kpp +share/apps/krita/paintoppresets/pixelpencil.kpp +share/apps/krita/paintoppresets/shaded.kpp +share/apps/krita/paintoppresets/softbrush.kpp share/apps/krita/palettes/1-All-Color-for-good-colors-choice.gpl share/apps/krita/palettes/1-Pastel-soft-pink.gpl share/apps/krita/palettes/1-Red-Dragon-cave.gpl share/apps/krita/palettes/1-Strong-contrast.gpl share/apps/krita/palettes/1-brown-pastel.gpl share/apps/krita/palettes/1-brown.gpl share/apps/krita/palettes/1-classic-kit.gpl share/apps/krita/palettes/1-ice-party.gpl share/apps/krita/palettes/1-iced-dark-scene.gpl share/apps/krita/palettes/1-magic-forest.gpl share/apps/krita/palettes/1-pasion-fire.gpl share/apps/krita/palettes/1-red-in-night.gpl share/apps/krita/palettes/1-tropical.gpl share/apps/krita/palettes/1-turquoise-flesh.gpl share/apps/krita/palettes/40_Colors.gpl share/apps/krita/palettes/Named_Colors.gpl share/apps/krita/palettes/Web.gpl share/apps/krita/palettes/new_kde.gpl share/apps/krita/patterns/3dgreen.pat share/apps/krita/patterns/Craters.pat share/apps/krita/patterns/Moonfoot.pat share/apps/krita/patterns/Stripes1px.pat share/apps/krita/patterns/Stripes2px.pat share/apps/krita/patterns/amethyst.pat share/apps/krita/patterns/bark.pat share/apps/krita/patterns/blue.pat share/apps/krita/patterns/bluegrid.pat share/apps/krita/patterns/bluesquares.pat share/apps/krita/patterns/blueweb.pat share/apps/krita/patterns/brick.pat share/apps/krita/patterns/burlap.pat share/apps/krita/patterns/burlwood.pat share/apps/krita/patterns/choc_swirl.pat share/apps/krita/patterns/corkboard.pat share/apps/krita/patterns/cracked.pat share/apps/krita/patterns/crinklepaper.pat share/apps/krita/patterns/electric.pat share/apps/krita/patterns/fibers.pat share/apps/krita/patterns/granite1.pat share/apps/krita/patterns/ground1.pat share/apps/krita/patterns/ice.pat share/apps/krita/patterns/java.pat share/apps/krita/patterns/leather.pat share/apps/krita/patterns/leaves.pat share/apps/krita/patterns/leopard.pat share/apps/krita/patterns/lightning.pat share/apps/krita/patterns/marble1.pat share/apps/krita/patterns/marble2.pat share/apps/krita/patterns/marble3.pat share/apps/krita/patterns/nops.pat share/apps/krita/patterns/paper.pat share/apps/krita/patterns/parque1.pat share/apps/krita/patterns/parque2.pat share/apps/krita/patterns/parque3.pat share/apps/krita/patterns/pastel.pat share/apps/krita/patterns/pine.pat share/apps/krita/patterns/pink_marble.pat share/apps/krita/patterns/pool.pat share/apps/krita/patterns/qube1.pat share/apps/krita/patterns/rain.pat share/apps/krita/patterns/recessed.pat share/apps/krita/patterns/redcube.pat share/apps/krita/patterns/rock.pat share/apps/krita/patterns/sky.pat share/apps/krita/patterns/slate.pat share/apps/krita/patterns/sm_squares.pat share/apps/krita/patterns/starfield.pat share/apps/krita/patterns/stone33.pat share/apps/krita/patterns/terra.pat share/apps/krita/patterns/walnut.pat share/apps/krita/patterns/warning.pat share/apps/krita/patterns/wood1.pat share/apps/krita/patterns/wood2.pat share/apps/krita/patterns/wood3.pat share/apps/krita/patterns/wood4.pat share/apps/krita/patterns/wood5.pat share/apps/krita/pics/arrow_east.png share/apps/krita/pics/arrow_north.png share/apps/krita/pics/arrow_north_east.png share/apps/krita/pics/arrow_north_west.png share/apps/krita/pics/arrow_south.png share/apps/krita/pics/arrow_south_east.png share/apps/krita/pics/arrow_south_west.png share/apps/krita/pics/arrow_west.png -share/apps/krita/pics/closedhand_cursor.xpm +share/apps/krita/pics/cursor-cross.xpm share/apps/krita/pics/deletelayer.png +share/apps/krita/pics/extended_color_selector.png +share/apps/krita/pics/height_icon.png +share/apps/krita/pics/kis_colselng_color_patches.png +share/apps/krita/pics/kis_colselng_color_triangle.png +share/apps/krita/pics/kis_colselng_my_paint_shade_selector.png share/apps/krita/pics/krita_draw_path.png share/apps/krita/pics/krita_tool_color_fill.png share/apps/krita/pics/krita_tool_color_picker.png share/apps/krita/pics/krita_tool_dyna.png share/apps/krita/pics/krita_tool_ellipse.png share/apps/krita/pics/krita_tool_freehand.png share/apps/krita/pics/krita_tool_gradient.png share/apps/krita/pics/krita_tool_grid.png share/apps/krita/pics/krita_tool_line.png share/apps/krita/pics/krita_tool_measure.png share/apps/krita/pics/krita_tool_move.png share/apps/krita/pics/krita_tool_pan.png share/apps/krita/pics/krita_tool_rectangle.png share/apps/krita/pics/krita_tool_ruler_assistant.png share/apps/krita/pics/krita_tool_transform.png share/apps/krita/pics/linked.png share/apps/krita/pics/local_selection_active.png share/apps/krita/pics/local_selection_inactive.png share/apps/krita/pics/locked.png share/apps/krita/pics/lowerlayer.png share/apps/krita/pics/newlayer.png share/apps/krita/pics/novisible.png -share/apps/krita/pics/openhand_cursor.xpm +share/apps/krita/pics/offset_horizontal.png +share/apps/krita/pics/offset_vertical.png +share/apps/krita/pics/paintop_presets_disabled.png share/apps/krita/pics/paintop_settings_01.png share/apps/krita/pics/paintop_settings_02.png +share/apps/krita/pics/paintop_settings_disabled.png share/apps/krita/pics/polyline.png share/apps/krita/pics/raiselayer.png +share/apps/krita/pics/ratio_icon.png share/apps/krita/pics/rotate_cursor.xpm share/apps/krita/pics/select_pixel.png share/apps/krita/pics/select_shape.png share/apps/krita/pics/selection_add.png share/apps/krita/pics/selection_exclude.png share/apps/krita/pics/selection_intersect.png share/apps/krita/pics/selection_replace.png share/apps/krita/pics/selection_subtract.png +share/apps/krita/pics/shear_horizontal.png +share/apps/krita/pics/shear_vertical.png share/apps/krita/pics/tablet.png share/apps/krita/pics/tool_brush_selection.png share/apps/krita/pics/tool_brush_selection_cursor.png share/apps/krita/pics/tool_contiguous_selection.png share/apps/krita/pics/tool_contiguous_selection_cursor.png share/apps/krita/pics/tool_crop.png share/apps/krita/pics/tool_crop_cursor.png share/apps/krita/pics/tool_ellipse_cursor.png share/apps/krita/pics/tool_elliptical_selection.png share/apps/krita/pics/tool_elliptical_selection_cursor.png share/apps/krita/pics/tool_eraser_selection.png share/apps/krita/pics/tool_eraser_selection_cursor.png share/apps/krita/pics/tool_fill_cursor.png share/apps/krita/pics/tool_freehand_cursor.png share/apps/krita/pics/tool_gradient_cursor.png share/apps/krita/pics/tool_line_cursor.png share/apps/krita/pics/tool_magneticoutline_selection.png share/apps/krita/pics/tool_magneticoutline_selection_cursor.png share/apps/krita/pics/tool_outline_selection.png share/apps/krita/pics/tool_outline_selection_cursor.png share/apps/krita/pics/tool_path_selection.png share/apps/krita/pics/tool_perspectivegrid.png share/apps/krita/pics/tool_perspectivegrid_cursor.png -share/apps/krita/pics/tool_perspectivetransform.png -share/apps/krita/pics/tool_perspectivetransform_cursor.png share/apps/krita/pics/tool_polygon.png share/apps/krita/pics/tool_polygon_cursor.png share/apps/krita/pics/tool_polygonal_selection.png share/apps/krita/pics/tool_polygonal_selection_cursor.png share/apps/krita/pics/tool_polyline_cursor.png share/apps/krita/pics/tool_rect_selection.png share/apps/krita/pics/tool_rectangle_cursor.png share/apps/krita/pics/tool_rectangular_selection_cursor.png share/apps/krita/pics/tool_screenshot.png share/apps/krita/pics/tool_similar_selection.png share/apps/krita/pics/tool_similar_selection_cursor.png share/apps/krita/pics/tool_star.png share/apps/krita/pics/tool_star_cursor.png share/apps/krita/pics/transparency-locked.png share/apps/krita/pics/transparency-unlocked.png share/apps/krita/pics/unlinked.png share/apps/krita/pics/unlocked.png share/apps/krita/pics/visible.png -share/apps/krita/scripts/decorations/VanishingPoints.rb -share/apps/krita/scripts/dockers/flipbookdocker.rb -share/apps/krita/scripts/dockers/palettedocker.rb -share/apps/krita/scripts/extensions/changecs.rb -share/apps/krita/scripts/extensions/filterstest.rb -share/apps/krita/scripts/extensions/invert.js -share/apps/krita/scripts/extensions/invert.py -share/apps/krita/scripts/extensions/invert.rb -share/apps/krita/scripts/extensions/pilexport.py -share/apps/krita/scripts/extensions/pilimport.py -share/apps/krita/scripts/extensions/pilimport.ui -share/apps/krita/scripts/extensions/randompaint.rb -share/apps/krita/scripts/extensions/reshapehisto.py -share/apps/krita/scripts/extensions/sky.rb -share/apps/krita/scripts/extensions/torture-filters.rb -share/apps/krita/scripts/extensions/torture-painting.rb -share/apps/krita/scripts/filters/invert.rb -share/apps/krita/scripts/filters/random.rb -share/apps/krita/scripts/scripts.rc +share/apps/krita/pics/width_icon.png share/apps/krita/shaders/bilinear_gradient.frag share/apps/krita/shaders/conical_gradient.frag share/apps/krita/shaders/conical_symetric_gradient.frag share/apps/krita/shaders/hdr_exposure.frag share/apps/krita/shaders/linear_gradient.frag share/apps/krita/shaders/radial_gradient.frag share/apps/krita/shaders/square_gradient.frag %%GTL%%share/apps/krita/shiva/kernels/AntiBullify.shiva %%GTL%%share/apps/krita/shiva/kernels/Bullify.shiva %%GTL%%share/apps/krita/shiva/kernels/Caleidoscope.shiva %%GTL%%share/apps/krita/shiva/kernels/CentralAbsorbtion.shiva %%GTL%%share/apps/krita/shiva/kernels/CheckerBoard.shiva %%GTL%%share/apps/krita/shiva/kernels/ConcentricCircles.shiva %%GTL%%share/apps/krita/shiva/kernels/Disco.shiva %%GTL%%share/apps/krita/shiva/kernels/Droste.shiva %%GTL%%share/apps/krita/shiva/kernels/FractalExplorer.shiva %%GTL%%share/apps/krita/shiva/kernels/MandelbrotSet.shiva %%GTL%%share/apps/krita/shiva/kernels/Metaball.shiva %%GTL%%share/apps/krita/shiva/kernels/MirrorImpose.shiva %%GTL%%share/apps/krita/shiva/kernels/Moire.shiva %%GTL%%share/apps/krita/shiva/kernels/Mosaic.shiva %%GTL%%share/apps/krita/shiva/kernels/PerlinNoise.shiva %%GTL%%share/apps/krita/shiva/kernels/RadialGradient.shiva %%GTL%%share/apps/krita/shiva/kernels/Ripples.shiva %%GTL%%share/apps/krita/shiva/kernels/RotativeBlur.shiva %%GTL%%share/apps/krita/shiva/kernels/Roundify.shiva %%GTL%%share/apps/krita/shiva/kernels/Sea.shiva %%GTL%%share/apps/krita/shiva/kernels/Seamlesser.shiva %%GTL%%share/apps/krita/shiva/kernels/Sectorize.shiva %%GTL%%share/apps/krita/shiva/kernels/Singleball.shiva %%GTL%%share/apps/krita/shiva/kernels/Slices.shiva %%GTL%%share/apps/krita/shiva/kernels/Something.shiva %%GTL%%share/apps/krita/shiva/kernels/StereographicProjection.shiva %%GTL%%share/apps/krita/shiva/kernels/SunRay.shiva %%GTL%%share/apps/krita/shiva/kernels/SuperNova.shiva %%GTL%%share/apps/krita/shiva/kernels/ZigZag.shiva %%GTL%%share/apps/krita/shiva/kernels/blur.shiva %%GTL%%share/apps/krita/shiva/kernels/oilify.shiva share/apps/krita/templates/cmyk/.directory share/apps/krita/templates/cmyk/.source/white_2000x800.kra share/apps/krita/templates/cmyk/white_2000x800.desktop +share/apps/krita/templates/comics/.directory +share/apps/krita/templates/comics/.source/BD-EuroTemplate.kra +share/apps/krita/templates/comics/.source/Comics-USTemplate.kra +share/apps/krita/templates/comics/.source/Manga-JpTemplate.kra +share/apps/krita/templates/comics/.source/a4_waffle_grid.kra +share/apps/krita/templates/comics/BD-EuroTemplate.desktop +share/apps/krita/templates/comics/Comics-USTemplate.desktop +share/apps/krita/templates/comics/Manga-JpTemplate.desktop +share/apps/krita/templates/comics/a4_waffle_grid.desktop share/apps/krita/templates/gray/.directory share/apps/krita/templates/gray/.source/white_640x480.kra share/apps/krita/templates/gray/white_640x480.desktop share/apps/krita/templates/rgb/.directory share/apps/krita/templates/rgb/.source/transparent_1024x768.kra share/apps/krita/templates/rgb/.source/transparent_1280x1024.kra share/apps/krita/templates/rgb/.source/transparent_1600x1200.kra share/apps/krita/templates/rgb/.source/transparent_640x480.kra share/apps/krita/templates/rgb/.source/white_1024x768.kra share/apps/krita/templates/rgb/.source/white_1280x1024.kra share/apps/krita/templates/rgb/.source/white_1600x1200.kra share/apps/krita/templates/rgb/.source/white_640x480.kra share/apps/krita/templates/rgb/transparent_1024x768.desktop share/apps/krita/templates/rgb/transparent_1280x1024.desktop share/apps/krita/templates/rgb/transparent_1600x1200.desktop share/apps/krita/templates/rgb/transparent_640x480.desktop share/apps/krita/templates/rgb/white_1024x768.desktop share/apps/krita/templates/rgb/white_1280x1024.desktop share/apps/krita/templates/rgb/white_1600x1200.desktop share/apps/krita/templates/rgb/white_640x480.desktop -share/apps/kritaplugins/backgrounds.rc share/apps/kritaplugins/bigbrother.rc -share/apps/kritaplugins/bracketing2hdr.rc share/apps/kritaplugins/colorrange.rc share/apps/kritaplugins/colorspaceconversion.rc share/apps/kritaplugins/dropshadow.rc share/apps/kritaplugins/extensionsmanager.rc share/apps/kritaplugins/histogram.rc share/apps/kritaplugins/imageseparate.rc share/apps/kritaplugins/imagesize.rc share/apps/kritaplugins/layercompose.rc share/apps/kritaplugins/metadataeditor.rc share/apps/kritaplugins/metadataeditor/dublincore.rc share/apps/kritaplugins/metadataeditor/dublincore.ui share/apps/kritaplugins/metadataeditor/exif.rc share/apps/kritaplugins/metadataeditor/exif.ui share/apps/kritaplugins/modify_selection.rc share/apps/kritaplugins/rotateimage.rc -share/apps/kritaplugins/scripting.rc share/apps/kritaplugins/shearimage.rc share/apps/kritaplugins/together.rc share/apps/kritaplugins/tonemapping.rc share/apps/kritaplugins/trianglecolorselector.rc share/apps/kspread/dtd/kspread.dtd share/apps/kspread/functions/bitops.xml share/apps/kspread/functions/conversion.xml share/apps/kspread/functions/database.xml share/apps/kspread/functions/datetime.xml share/apps/kspread/functions/engineering.xml share/apps/kspread/functions/financial.xml share/apps/kspread/functions/information.xml share/apps/kspread/functions/logic.xml share/apps/kspread/functions/math.xml share/apps/kspread/functions/reference.xml share/apps/kspread/functions/statistical.xml share/apps/kspread/functions/text.xml share/apps/kspread/functions/trig.xml share/apps/kspread/icons/hicolor/16x16/actions/adjustcol.png share/apps/kspread/icons/hicolor/16x16/actions/adjustrow.png share/apps/kspread/icons/hicolor/16x16/actions/black_sum.png share/apps/kspread/icons/hicolor/16x16/actions/border_all.png share/apps/kspread/icons/hicolor/16x16/actions/border_bottom.png share/apps/kspread/icons/hicolor/16x16/actions/border_fall.png share/apps/kspread/icons/hicolor/16x16/actions/border_horizontal.png share/apps/kspread/icons/hicolor/16x16/actions/border_inside.png share/apps/kspread/icons/hicolor/16x16/actions/border_left.png share/apps/kspread/icons/hicolor/16x16/actions/border_outline.png share/apps/kspread/icons/hicolor/16x16/actions/border_remove.png share/apps/kspread/icons/hicolor/16x16/actions/border_right.png share/apps/kspread/icons/hicolor/16x16/actions/border_top.png share/apps/kspread/icons/hicolor/16x16/actions/border_up.png share/apps/kspread/icons/hicolor/16x16/actions/border_vertical.png share/apps/kspread/icons/hicolor/16x16/actions/cell_edit.png share/apps/kspread/icons/hicolor/16x16/actions/cell_layout.png share/apps/kspread/icons/hicolor/16x16/actions/chart.png share/apps/kspread/icons/hicolor/16x16/actions/comment.png share/apps/kspread/icons/hicolor/16x16/actions/delete_table.png share/apps/kspread/icons/hicolor/16x16/actions/deletecell.png share/apps/kspread/icons/hicolor/16x16/actions/dissociatecell.png share/apps/kspread/icons/hicolor/16x16/actions/first_letter_upper.png share/apps/kspread/icons/hicolor/16x16/actions/funct.png share/apps/kspread/icons/hicolor/16x16/actions/hide_table_column.png share/apps/kspread/icons/hicolor/16x16/actions/hide_table_row.png share/apps/kspread/icons/hicolor/16x16/actions/insert_link.png share/apps/kspread/icons/hicolor/16x16/actions/insertcell.png share/apps/kspread/icons/hicolor/16x16/actions/insertcellcopy.png share/apps/kspread/icons/hicolor/16x16/actions/inserttable.png share/apps/kspread/icons/hicolor/16x16/actions/mergecell-horizontal.png share/apps/kspread/icons/hicolor/16x16/actions/mergecell-vertical.png share/apps/kspread/icons/hicolor/16x16/actions/mergecell.png share/apps/kspread/icons/hicolor/16x16/actions/middle.png share/apps/kspread/icons/hicolor/16x16/actions/money.png share/apps/kspread/icons/hicolor/16x16/actions/multirow.png share/apps/kspread/icons/hicolor/16x16/actions/oscilloscope.png share/apps/kspread/icons/hicolor/16x16/actions/percent.png share/apps/kspread/icons/hicolor/16x16/actions/precminus.png share/apps/kspread/icons/hicolor/16x16/actions/precplus.png share/apps/kspread/icons/hicolor/16x16/actions/removecell.png share/apps/kspread/icons/hicolor/16x16/actions/removecomment.png share/apps/kspread/icons/hicolor/16x16/actions/resizecol.png share/apps/kspread/icons/hicolor/16x16/actions/resizerow.png share/apps/kspread/icons/hicolor/16x16/actions/selection.png share/apps/kspread/icons/hicolor/16x16/actions/series.png share/apps/kspread/icons/hicolor/16x16/actions/show_table_column.png share/apps/kspread/icons/hicolor/16x16/actions/show_table_row.png share/apps/kspread/icons/hicolor/16x16/actions/sort_decrease.png share/apps/kspread/icons/hicolor/16x16/actions/sort_incr.png share/apps/kspread/icons/hicolor/16x16/actions/special_paste.png share/apps/kspread/icons/hicolor/16x16/actions/text_bottom.png share/apps/kspread/icons/hicolor/16x16/actions/text_top.png share/apps/kspread/icons/hicolor/16x16/actions/vertical_text.png share/apps/kspread/icons/hicolor/22x22/actions/black_sum.png share/apps/kspread/icons/hicolor/22x22/actions/border_all.png share/apps/kspread/icons/hicolor/22x22/actions/border_bottom.png share/apps/kspread/icons/hicolor/22x22/actions/border_fall.png share/apps/kspread/icons/hicolor/22x22/actions/border_horizontal.png share/apps/kspread/icons/hicolor/22x22/actions/border_inside.png share/apps/kspread/icons/hicolor/22x22/actions/border_left.png share/apps/kspread/icons/hicolor/22x22/actions/border_outline.png share/apps/kspread/icons/hicolor/22x22/actions/border_remove.png share/apps/kspread/icons/hicolor/22x22/actions/border_right.png share/apps/kspread/icons/hicolor/22x22/actions/border_top.png share/apps/kspread/icons/hicolor/22x22/actions/border_up.png share/apps/kspread/icons/hicolor/22x22/actions/border_vertical.png share/apps/kspread/icons/hicolor/22x22/actions/funct.png share/apps/kspread/icons/hicolor/22x22/actions/insert_chart.png share/apps/kspread/icons/hicolor/22x22/actions/insert_link.png share/apps/kspread/icons/hicolor/22x22/actions/mergecell-horizontal.png share/apps/kspread/icons/hicolor/22x22/actions/mergecell-vertical.png share/apps/kspread/icons/hicolor/22x22/actions/mergecell.png share/apps/kspread/icons/hicolor/22x22/actions/middle.png share/apps/kspread/icons/hicolor/22x22/actions/money.png share/apps/kspread/icons/hicolor/22x22/actions/multirow.png share/apps/kspread/icons/hicolor/22x22/actions/percent.png share/apps/kspread/icons/hicolor/22x22/actions/prec_minus.png share/apps/kspread/icons/hicolor/22x22/actions/prec_plus.png share/apps/kspread/icons/hicolor/22x22/actions/sort_decrease.png share/apps/kspread/icons/hicolor/22x22/actions/sort_incr.png share/apps/kspread/icons/hicolor/22x22/actions/text_bottom.png share/apps/kspread/icons/hicolor/22x22/actions/text_top.png share/apps/kspread/icons/hicolor/32x32/actions/border_all.png share/apps/kspread/icons/hicolor/32x32/actions/border_bottom.png share/apps/kspread/icons/hicolor/32x32/actions/border_fall.png share/apps/kspread/icons/hicolor/32x32/actions/border_horizontal.png share/apps/kspread/icons/hicolor/32x32/actions/border_inside.png share/apps/kspread/icons/hicolor/32x32/actions/border_left.png share/apps/kspread/icons/hicolor/32x32/actions/border_outline.png share/apps/kspread/icons/hicolor/32x32/actions/border_remove.png share/apps/kspread/icons/hicolor/32x32/actions/border_right.png share/apps/kspread/icons/hicolor/32x32/actions/border_top.png share/apps/kspread/icons/hicolor/32x32/actions/border_up.png share/apps/kspread/icons/hicolor/32x32/actions/border_vertical.png share/apps/kspread/icons/hicolor/32x32/actions/funct.png share/apps/kspread/icons/hicolor/32x32/actions/percent.png share/apps/kspread/icons/hicolor/32x32/actions/prec_minus.png share/apps/kspread/icons/hicolor/32x32/actions/prec_plus.png share/apps/kspread/icons/hicolor/48x48/actions/template_balancesheet.png share/apps/kspread/icons/hicolor/48x48/actions/template_bmi.png share/apps/kspread/icons/hicolor/48x48/actions/template_creditcardtracker.png share/apps/kspread/icons/hicolor/48x48/actions/template_expensereport.png share/apps/kspread/icons/hicolor/48x48/actions/template_invoice.png share/apps/kspread/icons/hicolor/48x48/actions/template_menuplan.png share/apps/kspread/icons/hicolor/48x48/actions/template_packingslip.png share/apps/kspread/icons/hicolor/48x48/actions/template_pricequotation.png share/apps/kspread/icons/hicolor/48x48/actions/template_studentidcard.png share/apps/kspread/icons/hicolor/48x48/actions/template_vacationchecklist.png share/apps/kspread/icons/hicolor/48x48/actions/template_worksheet.png share/apps/kspread/icons/hicolor/scalable/actions/template_balancesheet.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_bmi.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_creditcardtracker.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_expensereport.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_invoice.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_menuplan.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_packingslip.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_pricequotation.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_studentidcard.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_vacationchecklist.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_worksheet.svgz share/apps/kspread/kpartplugins/scripting.rc share/apps/kspread/kpartplugins/solver.rc share/apps/kspread/kspread.notifyrc share/apps/kspread/kspread.rc share/apps/kspread/kspread_readonly.rc share/apps/kspread/scripts/docker/consoledocker.py share/apps/kspread/scripts/docker/snippetsdocker.rb share/apps/kspread/scripts/extensions/csvexport.py share/apps/kspread/scripts/extensions/csvimport.py share/apps/kspread/scripts/extensions/csvoptions.ui share/apps/kspread/scripts/extensions/htmlexport.py share/apps/kspread/scripts/extensions/htmlexportinfos.ui share/apps/kspread/scripts/extensions/kexidbexport.py share/apps/kspread/scripts/extensions/kexidbimport.py share/apps/kspread/scripts/extensions/logger.py share/apps/kspread/scripts/extensions/myorca.py share/apps/kspread/scripts/extensions/odfpyexport.py share/apps/kspread/scripts/extensions/vcardimport.py share/apps/kspread/scripts/extensions/xmlviewer.py share/apps/kspread/scripts/functions/functions.py share/apps/kspread/scripts/functions/pyregexp.py share/apps/kspread/scripts/functions/pytime.py share/apps/kspread/scripts/functions/rpyfunctions.py share/apps/kspread/scripts/functions/yfinance.py share/apps/kspread/scripts/functions/yweather.py share/apps/kspread/scripts/scripts.rc share/apps/kspread/sheetstyles/standard1.ksts share/apps/kspread/sheetstyles/standard1.png share/apps/kspread/sheetstyles/standard1.xml share/apps/kspread/sheetstyles/standard2.ksts share/apps/kspread/sheetstyles/standard2.png share/apps/kspread/sheetstyles/standard2.xml share/apps/kspread/templates/Business/.directory share/apps/kspread/templates/Business/.source/BalanceSheet.kst share/apps/kspread/templates/Business/.source/ExpenseReport.kst share/apps/kspread/templates/Business/.source/Invoice.kst share/apps/kspread/templates/Business/.source/PackingSlip.kst share/apps/kspread/templates/Business/.source/PriceQuotation.kst share/apps/kspread/templates/Business/BalanceSheet.desktop share/apps/kspread/templates/Business/ExpenseReport.desktop share/apps/kspread/templates/Business/Invoice.desktop share/apps/kspread/templates/Business/PackingSlip.desktop share/apps/kspread/templates/Business/PriceQuotation.desktop share/apps/kspread/templates/General/.directory share/apps/kspread/templates/General/.source/StudentIDCard.kst share/apps/kspread/templates/General/.source/Worksheet.kst share/apps/kspread/templates/General/StudentIDCard.desktop share/apps/kspread/templates/General/Worksheet.desktop share/apps/kspread/templates/HomeFamily/.directory share/apps/kspread/templates/HomeFamily/.source/BMI.kst share/apps/kspread/templates/HomeFamily/.source/CreditCardTracker.kst share/apps/kspread/templates/HomeFamily/.source/MenuPlan.kst share/apps/kspread/templates/HomeFamily/.source/VacationChecklist.kst share/apps/kspread/templates/HomeFamily/BMI.desktop share/apps/kspread/templates/HomeFamily/CreditCardTracker.desktop share/apps/kspread/templates/HomeFamily/MenuPlan.desktop share/apps/kspread/templates/HomeFamily/VacationChecklist.desktop +share/apps/kword/html-odf/converter.xsl share/apps/kword/icons/hicolor/128x128/actions/template_colorful.png share/apps/kword/icons/hicolor/48x48/actions/template_a4.png share/apps/kword/icons/hicolor/48x48/actions/template_businesscards10.png share/apps/kword/icons/hicolor/48x48/actions/template_colorful.png share/apps/kword/icons/hicolor/48x48/actions/template_envelopec6.png share/apps/kword/icons/hicolor/48x48/actions/template_envelopedl.png share/apps/kword/icons/hicolor/48x48/actions/template_fax.png share/apps/kword/icons/hicolor/48x48/actions/template_labelsl16.png share/apps/kword/icons/hicolor/48x48/actions/template_letter.png share/apps/kword/icons/hicolor/48x48/actions/template_memo.png share/apps/kword/icons/hicolor/48x48/actions/template_plaintext.png share/apps/kword/icons/hicolor/48x48/actions/template_twocolumns.png share/apps/kword/icons/hicolor/scalable/actions/template_a4.svgz share/apps/kword/icons/hicolor/scalable/actions/template_businesscards10.svgz share/apps/kword/icons/hicolor/scalable/actions/template_envelopec6.svgz share/apps/kword/icons/hicolor/scalable/actions/template_envelopedl.svgz share/apps/kword/icons/hicolor/scalable/actions/template_fax.svgz share/apps/kword/icons/hicolor/scalable/actions/template_labelsl16.svgz share/apps/kword/icons/hicolor/scalable/actions/template_letter.svgz share/apps/kword/icons/hicolor/scalable/actions/template_memo.svgz share/apps/kword/icons/hicolor/scalable/actions/template_plaintext.svgz share/apps/kword/icons/hicolor/scalable/actions/template_twocolumns.svgz share/apps/kword/kpartplugins/scan-kword.rc share/apps/kword/kpartplugins/scripting.rc share/apps/kword/kword.rc share/apps/kword/kword_readonly.rc share/apps/kword/scripts/extensions/doctree.rb share/apps/kword/scripts/extensions/exportfile.py share/apps/kword/scripts/extensions/importdoxyxml.py share/apps/kword/scripts/extensions/importdoxyxmloptions.ui share/apps/kword/scripts/extensions/importdoxyxmlstyle.ui share/apps/kword/scripts/extensions/importfile.py share/apps/kword/scripts/extensions/kwreportlab.py share/apps/kword/scripts/extensions/onlinehelp.py share/apps/kword/scripts/extensions/ooimport.py share/apps/kword/scripts/extensions/ooimport.ui share/apps/kword/scripts/extensions/ooimportconfig.ui share/apps/kword/scripts/extensions/oouno.py share/apps/kword/scripts/extensions/xmlviewer.py share/apps/kword/scripts/samples/sample_actions.py share/apps/kword/scripts/samples/sample_allshapes.py share/apps/kword/scripts/samples/sample_cursor.rb share/apps/kword/scripts/samples/sample_insertshape.py share/apps/kword/scripts/samples/sample_lists_cursor.py share/apps/kword/scripts/samples/sample_lists_html.py share/apps/kword/scripts/samples/sample_progressbar.py share/apps/kword/scripts/samples/sample_tables.py share/apps/kword/scripts/samples/sample_text.py share/apps/kword/scripts/samples/sample_toolactions.py share/apps/kword/scripts/samples/sample_variables.py share/apps/kword/scripts/scripts.rc share/apps/kword/styles/defaultstyles.xml share/apps/kword/templates/CardsAndLabels/.directory share/apps/kword/templates/CardsAndLabels/.source/BusinessCards10.kwt share/apps/kword/templates/CardsAndLabels/.source/LabelsL16.kwt share/apps/kword/templates/CardsAndLabels/BusinessCards10.desktop share/apps/kword/templates/CardsAndLabels/LabelsL16.desktop share/apps/kword/templates/Envelopes/.directory share/apps/kword/templates/Envelopes/.source/EnvelopeC6.kwt share/apps/kword/templates/Envelopes/.source/EnvelopeDL.kwt share/apps/kword/templates/Envelopes/EnvelopeC6.desktop share/apps/kword/templates/Envelopes/EnvelopeDL.desktop share/apps/kword/templates/Normal/.directory share/apps/kword/templates/Normal/.source/A4.odt share/apps/kword/templates/Normal/.source/ColorfulA4.odt share/apps/kword/templates/Normal/.source/ColorfulLetter.odt share/apps/kword/templates/Normal/.source/FaxA4.odt share/apps/kword/templates/Normal/.source/FaxLetter.odt share/apps/kword/templates/Normal/.source/Letter.kwt share/apps/kword/templates/Normal/.source/Memo.kwt share/apps/kword/templates/Normal/.source/PlainText.kwt share/apps/kword/templates/Normal/.source/ProfessionalA4.odt share/apps/kword/templates/Normal/.source/ProfessionalLetter.odt share/apps/kword/templates/Normal/.source/TwoColumns.kwt share/apps/kword/templates/Normal/.source/TwoColumnsLetter.kwt share/apps/kword/templates/Normal/A4.desktop share/apps/kword/templates/Normal/ColorfulA4.desktop share/apps/kword/templates/Normal/ColorfulLetter.desktop share/apps/kword/templates/Normal/FaxA4.desktop share/apps/kword/templates/Normal/FaxLetter.desktop share/apps/kword/templates/Normal/Letter.desktop share/apps/kword/templates/Normal/Memo.desktop share/apps/kword/templates/Normal/ProfessionalA4.desktop share/apps/kword/templates/Normal/ProfessionalLetter.desktop share/apps/kword/templates/Normal/TwoColumns.desktop share/apps/kword/templates/Normal/TwoColumnsLetter.desktop share/apps/musicshape/fonts/Emmentaler-14.ttf %%GTL%%share/apps/pigmentcms/ctlcolorspaces/gray32f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/rgba16f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/rgba32f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/xyza16f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/xyza32f.ctlcs -%%GTL%%share/apps/pigmentcms/ctlcolorspaces/ycbcr8u.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/ycbcr16u.ctlcs +%%GTL%%share/apps/pigmentcms/ctlcolorspaces/ycbcr8u.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolortransformations/BurnHighlights.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/BurnMidtones.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/BurnShadows.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/DodgeHighlights.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/DodgeMidtones.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/DodgeShadows.ctlt %%GTL%%share/apps/pigmentcms/ctlcompositeops/alphadarken.ctlt %%GTL%%share/apps/pigmentcms/ctlcompositeops/over.ctlt %%GTL%%share/apps/pigmentcms/ctlmodules/pigmentutils.ctl %%GTL%%share/apps/pigmentcms/ctlprofiles/lmsaf32.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/scgrayf.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/scrgbaf.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/srgbaf.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/xyzaf32.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/ycbcr_16.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/ycbcr_8.ctlp %%GTL%%share/apps/pigmentcms/ctltemplates/alphabase.ctlt share/apps/xsltfilter/export/kword/xslfo/kword2xslfo-table.xsl share/apps/xsltfilter/export/kword/xslfo/main.xsl share/color/icc/krita/Adobe.icm share/color/icc/krita/Apple.icm share/color/icc/krita/CIE.icm share/color/icc/krita/ColorMatch.icm share/color/icc/krita/NTSC.icm share/color/icc/krita/PAL.icm share/color/icc/krita/SMPTE-C.icm share/color/icc/krita/WideGamut.icm share/color/icc/krita/lcmslabi.icm share/color/icc/krita/lcmsxyzi.icm share/color/icc/krita/monoscnr.icm share/color/icc/krita/sRGB.icm share/color/icc/krita/scRGB.icm share/color/icc/krita/srgb_color_space_profile.icm share/color/icc/krita/srgbspac.icm share/color/icc/krita/tifflab8spac.icm share/color/icc/krita/ycc601.icm share/color/icc/krita/ycc709.icm share/color/icc/pigment/CMY.icm share/color/icc/pigment/fogra27l.icm share/config.kcfg/kplatosettings.kcfg share/config.kcfg/kspread.kcfg share/config/karbonrc share/config/kexirc share/config/kplatorc share/config/kplatoworkrc share/config/kpresenterrc +share/config/krita.knsrc share/config/kritarc share/config/kspreadrc share/config/kwordrc share/doc/HTML/en/karbon/common share/doc/HTML/en/karbon/index.cache.bz2 share/doc/HTML/en/karbon/index.docbook -share/doc/HTML/en/kchart/common -share/doc/HTML/en/kchart/file-toolbar.png -share/doc/HTML/en/kchart/file-toolbar2.png -share/doc/HTML/en/kchart/frame_chart.png -share/doc/HTML/en/kchart/hi22-action-chart_line.png -share/doc/HTML/en/kchart/hi22-action-data.png -share/doc/HTML/en/kchart/hi22-action-options.png -share/doc/HTML/en/kchart/hi22-action-wizard.png -share/doc/HTML/en/kchart/index.cache.bz2 -share/doc/HTML/en/kchart/index.docbook -share/doc/HTML/en/kchart/kchart-config1.png -share/doc/HTML/en/kchart/kchart-config2.png -share/doc/HTML/en/kchart/kchart-config3.png -share/doc/HTML/en/kchart/kchart-config4.png -share/doc/HTML/en/kchart/kchart-config5.png -share/doc/HTML/en/kchart/kchart-config6.png -share/doc/HTML/en/kchart/kchart-config7.png -share/doc/HTML/en/kchart/kchart-config8.png -share/doc/HTML/en/kchart/kchart-dataeditor.png -share/doc/HTML/en/kchart/kchart-default.png -share/doc/HTML/en/kchart/kchart-example1-1.png -share/doc/HTML/en/kchart/kchart-example1-2.png -share/doc/HTML/en/kchart/kchart-example1-3.png -share/doc/HTML/en/kchart/kchart-example1-4.png -share/doc/HTML/en/kchart/kchart-example1-5.png -share/doc/HTML/en/kchart/kchart-example1-6.png -share/doc/HTML/en/kchart/kchart-example1-7.png -share/doc/HTML/en/kchart/kchart-example1-8.png -share/doc/HTML/en/kchart/kchart-example1-9.png -share/doc/HTML/en/kchart/kchart-kspread-bar.png -share/doc/HTML/en/kchart/kchart-kspread.png -share/doc/HTML/en/kchart/kchart-startupdialog.png -share/doc/HTML/en/kchart/kchart-wizard0.png -share/doc/HTML/en/kchart/kchart-wizard1.png -share/doc/HTML/en/kchart/kchart-wizard2.png -share/doc/HTML/en/kchart/kchart-wizard3.png -share/doc/HTML/en/kchart/kchart-wizard4.png -share/doc/HTML/en/kchart/shortcut.png -share/doc/HTML/en/kchart/toolbars.png share/doc/HTML/en/kexi/basics.docbook share/doc/HTML/en/kexi/building.docbook share/doc/HTML/en/kexi/common share/doc/HTML/en/kexi/comparing.docbook share/doc/HTML/en/kexi/configuration.docbook share/doc/HTML/en/kexi/contact-example.png share/doc/HTML/en/kexi/credits.docbook share/doc/HTML/en/kexi/database.docbook share/doc/HTML/en/kexi/designingforms.docbook share/doc/HTML/en/kexi/enteringdataintotables.docbook share/doc/HTML/en/kexi/enteringdatausingforms.docbook share/doc/HTML/en/kexi/index.cache.bz2 share/doc/HTML/en/kexi/index.docbook share/doc/HTML/en/kexi/intro.docbook share/doc/HTML/en/kexi/menus.docbook share/doc/HTML/en/kexi/querydesigning.docbook share/doc/HTML/en/kformula/ambiguous-string.png share/doc/HTML/en/kformula/common share/doc/HTML/en/kformula/correct_index_location.png share/doc/HTML/en/kformula/definite_integral.png share/doc/HTML/en/kformula/file-toolbar.png share/doc/HTML/en/kformula/file-toolbar2.png share/doc/HTML/en/kformula/green1.png share/doc/HTML/en/kformula/green2.png share/doc/HTML/en/kformula/greens.png share/doc/HTML/en/kformula/incorrect_index_location.png share/doc/HTML/en/kformula/index.cache.bz2 share/doc/HTML/en/kformula/index.docbook share/doc/HTML/en/kformula/index_smear.png share/doc/HTML/en/kformula/kfontinst1.png share/doc/HTML/en/kformula/kfontinst2.png share/doc/HTML/en/kformula/kfontinst3.png share/doc/HTML/en/kformula/kfontinst4.png share/doc/HTML/en/kformula/kfontinst5.png share/doc/HTML/en/kformula/kfontinst6.png share/doc/HTML/en/kformula/lower-index.png share/doc/HTML/en/kformula/matrix-view.png share/doc/HTML/en/kformula/matrix.png share/doc/HTML/en/kformula/negative_thin_space.png share/doc/HTML/en/kformula/path-integral.png share/doc/HTML/en/kformula/rk-edit0.png share/doc/HTML/en/kformula/rk-edit1.png share/doc/HTML/en/kformula/rk-edit2.png share/doc/HTML/en/kformula/scilab-edit.png share/doc/HTML/en/kformula/scilab.png share/doc/HTML/en/kformula/shortcut0.png share/doc/HTML/en/kformula/shortcut1.png share/doc/HTML/en/kformula/sin.png share/doc/HTML/en/kformula/toolbars.png share/doc/HTML/en/kformula/upper-index.png share/doc/HTML/en/koffice/common share/doc/HTML/en/koffice/index.cache.bz2 share/doc/HTML/en/koffice/index.docbook share/doc/HTML/en/kpresenter/a11y.docbook share/doc/HTML/en/kpresenter/autocorrection1.png share/doc/HTML/en/kpresenter/autocorrection2.png share/doc/HTML/en/kpresenter/autocorrection3.png share/doc/HTML/en/kpresenter/autocorrection4.png share/doc/HTML/en/kpresenter/barstyle1.png share/doc/HTML/en/kpresenter/barstyle3.png share/doc/HTML/en/kpresenter/barstyle4.png share/doc/HTML/en/kpresenter/barstyle5.png share/doc/HTML/en/kpresenter/barstyle6.png share/doc/HTML/en/kpresenter/barstyle7.png share/doc/HTML/en/kpresenter/break.png share/doc/HTML/en/kpresenter/changeformat.png share/doc/HTML/en/kpresenter/common share/doc/HTML/en/kpresenter/completion.png share/doc/HTML/en/kpresenter/configure1.png share/doc/HTML/en/kpresenter/configure2.png share/doc/HTML/en/kpresenter/configure3.png share/doc/HTML/en/kpresenter/configure4.png share/doc/HTML/en/kpresenter/configure4a.png share/doc/HTML/en/kpresenter/configure4a1.png share/doc/HTML/en/kpresenter/configure4b.png share/doc/HTML/en/kpresenter/configure4c.png share/doc/HTML/en/kpresenter/configure5.png share/doc/HTML/en/kpresenter/configure6.png share/doc/HTML/en/kpresenter/configure6b.png share/doc/HTML/en/kpresenter/configure6c.png share/doc/HTML/en/kpresenter/configure6d.png share/doc/HTML/en/kpresenter/configure6e.png share/doc/HTML/en/kpresenter/configure7.png share/doc/HTML/en/kpresenter/faq.docbook share/doc/HTML/en/kpresenter/great-presentations.docbook share/doc/HTML/en/kpresenter/guides.docbook share/doc/HTML/en/kpresenter/htmlshow1.png share/doc/HTML/en/kpresenter/htmlshow2.png share/doc/HTML/en/kpresenter/htmlshow3.png share/doc/HTML/en/kpresenter/htmlshow4.png share/doc/HTML/en/kpresenter/htmlshow5.png share/doc/HTML/en/kpresenter/htmlshow6.png share/doc/HTML/en/kpresenter/htmlshow7.png share/doc/HTML/en/kpresenter/htmlshow8.png share/doc/HTML/en/kpresenter/htmlshow9.png share/doc/HTML/en/kpresenter/index.cache.bz2 share/doc/HTML/en/kpresenter/index.docbook share/doc/HTML/en/kpresenter/kbd-focus-ext.png share/doc/HTML/en/kpresenter/link.png share/doc/HTML/en/kpresenter/menus.docbook share/doc/HTML/en/kpresenter/mousenav.png share/doc/HTML/en/kpresenter/msexport1.png share/doc/HTML/en/kpresenter/msexport2.png share/doc/HTML/en/kpresenter/msexport2b.png share/doc/HTML/en/kpresenter/msexport3.png share/doc/HTML/en/kpresenter/msexport4.png share/doc/HTML/en/kpresenter/options.docbook share/doc/HTML/en/kpresenter/properties.png share/doc/HTML/en/kpresenter/screen.docbook share/doc/HTML/en/kpresenter/settings01.png share/doc/HTML/en/kpresenter/settings03.png share/doc/HTML/en/kpresenter/settings04.png share/doc/HTML/en/kpresenter/template02.png share/doc/HTML/en/kpresenter/template03.png share/doc/HTML/en/kpresenter/template04.png share/doc/HTML/en/kpresenter/template05.png share/doc/HTML/en/kpresenter/template06.png share/doc/HTML/en/kpresenter/template07.png share/doc/HTML/en/kpresenter/textmenu1.png share/doc/HTML/en/kpresenter/textmenu2.png share/doc/HTML/en/kpresenter/toolsmenu01.png share/doc/HTML/en/kpresenter/tts.png share/doc/HTML/en/kpresenter/tut01.png share/doc/HTML/en/kpresenter/tut02.png share/doc/HTML/en/kpresenter/tut03.png share/doc/HTML/en/kpresenter/tut04.png share/doc/HTML/en/kpresenter/tut05.png share/doc/HTML/en/kpresenter/tut06.png share/doc/HTML/en/kpresenter/tut07.png share/doc/HTML/en/kpresenter/tut08.png share/doc/HTML/en/kpresenter/tut09.png share/doc/HTML/en/kpresenter/tut10.png share/doc/HTML/en/kpresenter/tut11.png share/doc/HTML/en/kpresenter/tut12.png share/doc/HTML/en/kpresenter/tut13.png share/doc/HTML/en/kpresenter/tut14.png share/doc/HTML/en/kpresenter/tut15.png share/doc/HTML/en/kpresenter/tut16.png share/doc/HTML/en/kpresenter/tut17.png share/doc/HTML/en/kpresenter/tut18.png share/doc/HTML/en/kpresenter/tut19.png share/doc/HTML/en/kpresenter/tut20.png share/doc/HTML/en/kpresenter/tut21.png share/doc/HTML/en/kpresenter/tut22.png share/doc/HTML/en/kpresenter/tut23.png share/doc/HTML/en/kpresenter/tut24.png share/doc/HTML/en/kpresenter/tut25.png share/doc/HTML/en/kpresenter/tut26.png share/doc/HTML/en/kpresenter/tutorial.docbook share/doc/HTML/en/kpresenter/zoomfactor.png share/doc/HTML/en/kspread/a11y.docbook share/doc/HTML/en/kspread/advanced.docbook share/doc/HTML/en/kspread/basics.docbook share/doc/HTML/en/kspread/cellformat0.png share/doc/HTML/en/kspread/cellformat1.png share/doc/HTML/en/kspread/cellformat2.png share/doc/HTML/en/kspread/cellformat3.png share/doc/HTML/en/kspread/cellformat4.png share/doc/HTML/en/kspread/cellformat5.png share/doc/HTML/en/kspread/cellformat6.png share/doc/HTML/en/kspread/cellformat7.png share/doc/HTML/en/kspread/cellprotection1.png share/doc/HTML/en/kspread/cellprotection2.png share/doc/HTML/en/kspread/chart1.png share/doc/HTML/en/kspread/commands.docbook share/doc/HTML/en/kspread/common share/doc/HTML/en/kspread/config.docbook share/doc/HTML/en/kspread/configdialog.docbook share/doc/HTML/en/kspread/configure1.png share/doc/HTML/en/kspread/configure2.png share/doc/HTML/en/kspread/configure3.png share/doc/HTML/en/kspread/configure4.png share/doc/HTML/en/kspread/configure5.png share/doc/HTML/en/kspread/configure6.png share/doc/HTML/en/kspread/copy1.png share/doc/HTML/en/kspread/currency.png share/doc/HTML/en/kspread/decreasedecimal.png share/doc/HTML/en/kspread/faq.docbook share/doc/HTML/en/kspread/format.docbook share/doc/HTML/en/kspread/hideformula1.png share/doc/HTML/en/kspread/hideformula2.png share/doc/HTML/en/kspread/hideformula3.png share/doc/HTML/en/kspread/hideformula4.png share/doc/HTML/en/kspread/hideformula5.png share/doc/HTML/en/kspread/importexport.docbook share/doc/HTML/en/kspread/increasedecimal.png share/doc/HTML/en/kspread/index.cache.bz2 share/doc/HTML/en/kspread/index.docbook share/doc/HTML/en/kspread/kbd-focus-ext.png share/doc/HTML/en/kspread/mousenav.png share/doc/HTML/en/kspread/newdocument.png share/doc/HTML/en/kspread/percent.png share/doc/HTML/en/kspread/sheetproperties.png share/doc/HTML/en/kspread/shortcut1.png share/doc/HTML/en/kspread/shortcut2.png share/doc/HTML/en/kspread/shortcut3.png share/doc/HTML/en/kspread/sort1.png share/doc/HTML/en/kspread/starting1.png share/doc/HTML/en/kspread/tts.png share/doc/HTML/en/thesaurus/common share/doc/HTML/en/thesaurus/index.cache.bz2 share/doc/HTML/en/thesaurus/index.docbook share/icons/hicolor/128x128/apps/kplato.png share/icons/hicolor/128x128/apps/kplatowork.png share/icons/hicolor/128x128/apps/krita.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/16x16/actions/black.png share/icons/hicolor/16x16/actions/highlight.png share/icons/hicolor/16x16/actions/pen.png share/icons/hicolor/16x16/apps/karbon.png -share/icons/hicolor/16x16/apps/kchart.png share/icons/hicolor/16x16/apps/kformula.png share/icons/hicolor/16x16/apps/kplato.png share/icons/hicolor/16x16/apps/kplatowork.png share/icons/hicolor/16x16/apps/kpresenter.png share/icons/hicolor/16x16/apps/krita.png share/icons/hicolor/16x16/apps/kspread.png share/icons/hicolor/16x16/apps/kword.png share/icons/hicolor/16x16/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/16x16/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/22x22/apps/karbon.png share/icons/hicolor/22x22/apps/kformula.png share/icons/hicolor/22x22/apps/kplato.png share/icons/hicolor/22x22/apps/kplatowork.png share/icons/hicolor/22x22/apps/kpresenter.png share/icons/hicolor/22x22/apps/krita.png share/icons/hicolor/22x22/apps/kspread.png share/icons/hicolor/22x22/apps/kword.png share/icons/hicolor/22x22/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/22x22/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/32x32/apps/karbon.png -share/icons/hicolor/32x32/apps/kchart.png share/icons/hicolor/32x32/apps/kformula.png share/icons/hicolor/32x32/apps/kplato.png share/icons/hicolor/32x32/apps/kplatowork.png share/icons/hicolor/32x32/apps/kpresenter.png share/icons/hicolor/32x32/apps/krita.png share/icons/hicolor/32x32/apps/kspread.png share/icons/hicolor/32x32/apps/kword.png share/icons/hicolor/32x32/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/32x32/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/45x45/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/48x48/apps/karbon.png -share/icons/hicolor/48x48/apps/kchart.png share/icons/hicolor/48x48/apps/kformula.png share/icons/hicolor/48x48/apps/kplato.png share/icons/hicolor/48x48/apps/kplatowork.png share/icons/hicolor/48x48/apps/kpresenter.png share/icons/hicolor/48x48/apps/krita.png share/icons/hicolor/48x48/apps/kspread.png share/icons/hicolor/48x48/apps/kword.png share/icons/hicolor/48x48/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/48x48/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/64x64/apps/kplato.png share/icons/hicolor/64x64/apps/kplatowork.png share/icons/hicolor/64x64/apps/krita.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/scalable/apps/karbon.svgz share/icons/hicolor/scalable/apps/kplato.svgz share/icons/hicolor/scalable/apps/kplatowork.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.kplato.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.kplato.work.svgz share/icons/oxygen/16x16/actions/object-align-horizontal-center-koffice.png share/icons/oxygen/16x16/actions/object-align-horizontal-left-koffice.png share/icons/oxygen/16x16/actions/object-align-horizontal-right-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-bottom-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-bottom-top-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-center-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-top-koffice.png share/icons/oxygen/16x16/actions/object-group-koffice.png share/icons/oxygen/16x16/actions/object-order-back-koffice.png share/icons/oxygen/16x16/actions/object-order-front-koffice.png share/icons/oxygen/16x16/actions/object-order-lower-koffice.png share/icons/oxygen/16x16/actions/object-order-raise-koffice.png share/icons/oxygen/16x16/actions/object-ungroup-koffice.png share/icons/oxygen/16x16/actions/table.png share/icons/oxygen/22x22/actions/table.png share/icons/oxygen/32x32/actions/shape-choose.png share/icons/oxygen/32x32/actions/table.png share/icons/oxygen/32x32/actions/x-shape-chart.png share/icons/oxygen/32x32/actions/x-shape-connection.png share/icons/oxygen/32x32/actions/x-shape-formula.png share/icons/oxygen/32x32/actions/x-shape-image.png share/icons/oxygen/32x32/actions/x-shape-text.png share/icons/oxygen/48x48/actions/table.png share/icons/oxygen/scalable/actions/shape-choose.svgz share/icons/oxygen/scalable/actions/table.svgz share/kde4/services/Filterkpr2odf.desktop share/kde4/services/ServiceMenus/karbon_konqi.desktop share/kde4/services/ServiceMenus/kchart_konqi.desktop share/kde4/services/ServiceMenus/kformula_konqi.desktop share/kde4/services/ServiceMenus/kivio_konqi.desktop share/kde4/services/ServiceMenus/kpresenter_konqi.desktop share/kde4/services/ServiceMenus/krita_konqi.desktop share/kde4/services/ServiceMenus/kspread_konqi.desktop share/kde4/services/ServiceMenus/kword_konqi.desktop share/kde4/services/artistictextshape.desktop share/kde4/services/autocorrect.desktop share/kde4/services/changecase.desktop share/kde4/services/chartshape.desktop +share/kde4/services/commentshape.desktop share/kde4/services/defaulttools.desktop share/kde4/services/divineproportionshape.desktop share/kde4/services/formulashape.desktop share/kde4/services/generic_filter.desktop +share/kde4/services/html-odf_export.desktop share/kde4/services/karbon_1x_import.desktop %%EPS%%share/kde4/services/karbon_eps_import.desktop share/kde4/services/karbon_pdf_import.desktop share/kde4/services/karbon_png_export.desktop share/kde4/services/karbon_svg_export.desktop share/kde4/services/karbon_svg_import.desktop share/kde4/services/karbon_svgz_import.desktop share/kde4/services/karbon_wmf_export.desktop share/kde4/services/karbon_wmf_import.desktop share/kde4/services/karbon_wpg_import.desktop share/kde4/services/karbonfiltereffects.desktop share/kde4/services/karbonpart.desktop share/kde4/services/karbontools.desktop -share/kde4/services/kchart_bmp_export.desktop -share/kde4/services/kchart_jpeg_export.desktop -share/kde4/services/kchart_mng_export.desktop -share/kde4/services/kchart_png_export.desktop -share/kde4/services/kchart_svg_export.desktop -share/kde4/services/kchart_xbm_export.desktop -share/kde4/services/kchart_xpm_export.desktop share/kde4/services/kchartpart.desktop share/kde4/services/kexi/kexicsv_importexporthandler.desktop share/kde4/services/kexi/kexiformhandler.desktop share/kde4/services/kexi/keximigrationhandler.desktop share/kde4/services/kexi/kexiqueryhandler.desktop share/kde4/services/kexi/kexireporthandler.desktop share/kde4/services/kexi/kexiscripthandler.desktop share/kde4/services/kexi/kexitablehandler.desktop share/kde4/services/kexidb_mysqldriver.desktop share/kde4/services/kexidb_pqxxsqldriver.desktop share/kde4/services/kexidb_sqlite3driver.desktop +%%SYBASE%%share/kde4/services/kexidb_sybasedriver.desktop %%XBASE%%share/kde4/services/kexidb_xbasedriver.desktop share/kde4/services/keximigrate_kspread.desktop share/kde4/services/keximigrate_mdb.desktop share/kde4/services/keximigrate_mysql.desktop share/kde4/services/keximigrate_pqxx.desktop %%SYBASE%%share/kde4/services/keximigrate_sybase.desktop share/kde4/services/keximigrate_txt.desktop %%XBASE%%share/kde4/services/keximigrate_xbase.desktop share/kde4/services/kexirelationdesignshape.desktop share/kde4/services/kformdesigner/kformdesigner_containers.desktop share/kde4/services/kformdesigner/kformdesigner_kexidbfactory.desktop share/kde4/services/kformdesigner/kformdesigner_stdwidgets.desktop share/kde4/services/kformulapart.desktop +share/kde4/services/kodocinfopropspage.desktop share/kde4/services/kofficedockers.desktop share/kde4/services/kofficethumbnail.desktop share/kde4/services/kolcmsengine.desktop share/kde4/services/kopabackgroundtool.desktop +share/kde4/services/koreport_barcodeplugin.desktop +share/kde4/services/koreport_chartplugin.desktop +share/kde4/services/koreport_shapeplugin.desktop share/kde4/services/kounavail.desktop share/kde4/services/kplato_icalendar_export.desktop share/kde4/services/kplatopart.desktop share/kde4/services/kplatoworkpart.desktop share/kde4/services/kpr_pageeffect_barwipe.desktop share/kde4/services/kpr_pageeffect_clockwipe.desktop share/kde4/services/kpr_pageeffect_edgewipe.desktop +share/kde4/services/kpr_pageeffect_fade.desktop share/kde4/services/kpr_pageeffect_iriswipe.desktop share/kde4/services/kpr_pageeffect_matrixwipe.desktop share/kde4/services/kpr_pageeffect_slidewipe.desktop +share/kde4/services/kpr_pageeffect_spacerotation.desktop +share/kde4/services/kpr_pageeffect_swapeffect.desktop share/kde4/services/kpr_shapeanimation_example.desktop share/kde4/services/kpresenter_powerpoint_import.desktop share/kde4/services/kpresenter_pptx_import.desktop share/kde4/services/kpresentereventactions.desktop share/kde4/services/kpresenterpart.desktop share/kde4/services/kpresentertoolanimation.desktop share/kde4/services/kprvariables.desktop share/kde4/services/krita_bmp_export.desktop share/kde4/services/krita_bmp_import.desktop +share/kde4/services/krita_colorselectorng.desktop share/kde4/services/krita_colorspaces_extensions_plugin.desktop %%GTL%%share/kde4/services/krita_ctlcs_plugin.desktop share/kde4/services/krita_digitalmixer.desktop %%GTL%%share/kde4/services/krita_exr_export.desktop %%GTL%%share/kde4/services/krita_exr_import.desktop share/kde4/services/krita_gif_import.desktop share/kde4/services/krita_jp2_export.desktop share/kde4/services/krita_jp2_import.desktop share/kde4/services/krita_jpeg_export.desktop share/kde4/services/krita_jpeg_import.desktop share/kde4/services/krita_ora_export.desktop share/kde4/services/krita_ora_import.desktop share/kde4/services/krita_pdf_import.desktop share/kde4/services/krita_png_export.desktop share/kde4/services/krita_png_import.desktop share/kde4/services/krita_ppm_export.desktop share/kde4/services/krita_ppm_import.desktop share/kde4/services/krita_raw_import.desktop share/kde4/services/krita_smallcolorselector.desktop share/kde4/services/krita_specificcolorselector.desktop share/kde4/services/krita_tiff_export.desktop share/kde4/services/krita_tiff_import.desktop share/kde4/services/krita_xcf_import.desktop -share/kde4/services/kritabackgrounds.desktop share/kde4/services/kritabigbrother.desktop share/kde4/services/kritablurfilter.desktop -share/kde4/services/kritabracketing2hdr.desktop -share/kde4/services/kritabumpmapfilter.desktop -share/kde4/services/kritachalkpaintop.desktop share/kde4/services/kritacolorgenerator.desktop share/kde4/services/kritacolorrange.desktop share/kde4/services/kritacolorsfilter.desktop share/kde4/services/kritacolorspaceconversion.desktop share/kde4/services/kritaconvolutionfilters.desktop share/kde4/services/kritacurvepaintop.desktop share/kde4/services/kritadefaultdockers.desktop share/kde4/services/kritadefaultpaintops.desktop share/kde4/services/kritadefaulttools.desktop share/kde4/services/kritadeformpaintop.desktop share/kde4/services/kritadodgeburn.desktop share/kde4/services/kritadropshadow.desktop share/kde4/services/kritadynapaintop.desktop share/kde4/services/kritaembossfilter.desktop share/kde4/services/kritaexample.desktop share/kde4/services/kritaextensioncolorsfilters.desktop share/kde4/services/kritaextensionsmanager.desktop share/kde4/services/kritafastcolortransfer.desktop share/kde4/services/kritafilterop.desktop share/kde4/services/kritagridpaintop.desktop share/kde4/services/kritahairypaintop.desktop +share/kde4/services/kritahatchingpaintop.desktop share/kde4/services/kritahistogram.desktop share/kde4/services/kritaimageenhancement.desktop share/kde4/services/kritaimagesize.desktop share/kde4/services/kritalayercompose.desktop share/kde4/services/kritalevelfilter.desktop share/kde4/services/kritametadataeditor.desktop share/kde4/services/kritamodifyselection.desktop share/kde4/services/kritanoisefilter.desktop -share/kde4/services/kritaoilpaintfilter.desktop share/kde4/services/kritapart.desktop share/kde4/services/kritaparticlepaintop.desktop share/kde4/services/kritapixelizefilter.desktop share/kde4/services/kritaraindropsfilter.desktop share/kde4/services/kritarandompickfilter.desktop share/kde4/services/kritarotateimage.desktop share/kde4/services/kritaroundcornersfilter.desktop share/kde4/services/kritarulerassistanttool.desktop -share/kde4/services/kritascripting.desktop share/kde4/services/kritaselectiontools.desktop share/kde4/services/kritaseparatechannels.desktop share/kde4/services/kritashearimage.desktop %%GTL%%share/kde4/services/kritashivafilters.desktop %%GTL%%share/kde4/services/kritashivagenerators.desktop -share/kde4/services/kritasmalltilesfilter.desktop -share/kde4/services/kritasobelfilter.desktop -share/kde4/services/kritasoftpaintop.desktop +share/kde4/services/kritasketchpaintop.desktop share/kde4/services/kritaspraypaintop.desktop share/kde4/services/kritatogether.desktop share/kde4/services/kritatonemapping.desktop share/kde4/services/kritatoolcrop.desktop share/kde4/services/kritatooldyna.desktop share/kde4/services/kritatoolgrid.desktop share/kde4/services/kritatoolperspectivegrid.desktop -share/kde4/services/kritatoolperspectivetransform.desktop share/kde4/services/kritatoolpolygon.desktop share/kde4/services/kritatoolpolyline.desktop share/kde4/services/kritatoolstar.desktop share/kde4/services/kritatooltransform.desktop share/kde4/services/kritatrianglecolorselector.desktop share/kde4/services/kritaunsharpfilter.desktop share/kde4/services/kritawavefilter.desktop share/kde4/services/krossmodulekplato.desktop share/kde4/services/krossmodulekspread.desktop share/kde4/services/krossmodulekword.desktop share/kde4/services/kspread_applixspread_import.desktop share/kde4/services/kspread_csv_export.desktop share/kde4/services/kspread_csv_import.desktop share/kde4/services/kspread_dbase_import.desktop share/kde4/services/kspread_excel_import.desktop share/kde4/services/kspread_gnumeric_export.desktop share/kde4/services/kspread_gnumeric_import.desktop share/kde4/services/kspread_html_export.desktop share/kde4/services/kspread_html_import.desktop share/kde4/services/kspread_latex_export.desktop share/kde4/services/kspread_opencalc_export.desktop share/kde4/services/kspread_opencalc_import.desktop share/kde4/services/kspread_plugin_tool_calendar.desktop share/kde4/services/kspread_qpro_import.desktop share/kde4/services/kspread_xlsx_import.desktop share/kde4/services/kspreadbitopsmodule.desktop share/kde4/services/kspreadconversionmodule.desktop share/kde4/services/kspreaddatabasemodule.desktop share/kde4/services/kspreaddatetimemodule.desktop share/kde4/services/kspreadengineeringmodule.desktop share/kde4/services/kspreadfinancialmodule.desktop share/kde4/services/kspreadinformationmodule.desktop share/kde4/services/kspreadlogicmodule.desktop share/kde4/services/kspreadmathmodule.desktop share/kde4/services/kspreadpart.desktop share/kde4/services/kspreadreferencemodule.desktop share/kde4/services/kspreadstatisticalmodule.desktop share/kde4/services/kspreadtextmodule.desktop share/kde4/services/kspreadtrigonometrymodule.desktop share/kde4/services/kword_abiword_export.desktop share/kde4/services/kword_abiword_import.desktop share/kde4/services/kword_amipro_export.desktop share/kde4/services/kword_amipro_import.desktop share/kde4/services/kword_applixword_import.desktop share/kde4/services/kword_ascii_export.desktop share/kde4/services/kword_ascii_import.desktop +share/kde4/services/kword_dcm_import.desktop share/kde4/services/kword_docbook_export.desktop share/kde4/services/kword_docx_import.desktop share/kde4/services/kword_hancomword_import.desktop share/kde4/services/kword_html_export.desktop share/kde4/services/kword_html_import.desktop share/kde4/services/kword_oowriter_export.desktop share/kde4/services/kword_oowriter_import.desktop share/kde4/services/kword_palmdoc_export.desktop share/kde4/services/kword_palmdoc_import.desktop share/kde4/services/kword_rtf_export.desktop share/kde4/services/kword_rtf_import.desktop share/kde4/services/kword_wml_export.desktop share/kde4/services/kword_wml_import.desktop share/kde4/services/kword_wp_export.desktop share/kde4/services/kword_wp_import.desktop share/kde4/services/kwordpart.desktop +share/kde4/services/libokularGenerator_odp.desktop share/kde4/services/musicshape.desktop +share/kde4/services/okularOdp.desktop share/kde4/services/paragraphtool.desktop share/kde4/services/pathshapes.desktop share/kde4/services/pictureshape.desktop +share/kde4/services/pluginshape.desktop share/kde4/services/spellcheck.desktop share/kde4/services/spreadsheetshape.desktop share/kde4/services/textshape.desktop share/kde4/services/textvariables.desktop share/kde4/services/thesaurustool.desktop -share/kde4/services/vectorshape.desktop share/kde4/services/videoshape.desktop share/kde4/services/xslt_export.desktop share/kde4/services/xslt_import.desktop share/kde4/servicetypes/filtereffect.desktop share/kde4/servicetypes/flake.desktop share/kde4/servicetypes/flakedevice.desktop share/kde4/servicetypes/flakeshape.desktop share/kde4/servicetypes/flaketool.desktop share/kde4/servicetypes/inlinetextobject.desktop share/kde4/servicetypes/karbon_module.desktop share/kde4/servicetypes/kexidb_driver.desktop share/kde4/servicetypes/kexihandler.desktop share/kde4/servicetypes/keximigration_driver.desktop share/kde4/servicetypes/kochart.desktop share/kde4/servicetypes/kofficedocker.desktop share/kde4/servicetypes/kofficepart.desktop share/kde4/servicetypes/kofilter.desktop share/kde4/servicetypes/kofilterwrapper.desktop share/kde4/servicetypes/koplugin.desktop +share/kde4/servicetypes/koreport_itemplugin.desktop share/kde4/servicetypes/kplato_schedulerplugin.desktop share/kde4/servicetypes/kpr_pageeffect.desktop share/kde4/servicetypes/kpr_shapeanimation.desktop share/kde4/servicetypes/krita_brush.desktop share/kde4/servicetypes/krita_dock.desktop share/kde4/servicetypes/krita_filter.desktop share/kde4/servicetypes/krita_generator.desktop share/kde4/servicetypes/krita_paintop.desktop share/kde4/servicetypes/krita_plugin.desktop share/kde4/servicetypes/krita_tool.desktop share/kde4/servicetypes/kspread_plugin.desktop share/kde4/servicetypes/pigment.desktop share/kde4/servicetypes/pigmentextension.desktop share/kde4/servicetypes/presentationeventaction.desktop share/kde4/servicetypes/scripteventaction.desktop share/kde4/servicetypes/texteditingplugin.desktop share/kde4/servicetypes/textvariableplugin.desktop share/kde4/servicetypes/widgetfactory.desktop share/mime/packages/krita_ora.xml share/mime/packages/msooxml-all.xml share/templates/.source/Illustration.karbon share/templates/.source/Presentation.kpt share/templates/.source/SpreadSheet.kst share/templates/.source/TextDocument.kwt share/templates/Illustration.desktop share/templates/Presentation.desktop share/templates/SpreadSheet.desktop share/templates/TextDocument.desktop @dirrmtry share/mime/packages @dirrmtry share/mime @dirrm share/kde4/services/kformdesigner @dirrm share/kde4/services/kexi @dirrmtry share/icons/hicolor/45x45/mimetypes @dirrmtry share/icons/hicolor/45x45 @dirrm share/doc/HTML/en/thesaurus @dirrm share/doc/HTML/en/kspread @dirrm share/doc/HTML/en/kpresenter @dirrm share/doc/HTML/en/koffice @dirrm share/doc/HTML/en/kformula @dirrm share/doc/HTML/en/kexi -@dirrm share/doc/HTML/en/kchart @dirrm share/doc/HTML/en/karbon @dirrm share/color/icc/pigment @dirrm share/color/icc/krita @dirrm share/color/icc @dirrm share/color @dirrm share/apps/xsltfilter/export/kword/xslfo @dirrm share/apps/xsltfilter/export/kword @dirrm share/apps/xsltfilter/export @dirrm share/apps/xsltfilter %%GTL%%@dirrm share/apps/pigmentcms/ctltemplates %%GTL%%@dirrm share/apps/pigmentcms/ctlprofiles %%GTL%%@dirrm share/apps/pigmentcms/ctlmodules %%GTL%%@dirrm share/apps/pigmentcms/ctlcompositeops %%GTL%%@dirrm share/apps/pigmentcms/ctlcolortransformations %%GTL%%@dirrm share/apps/pigmentcms/ctlcolorspaces %%GTL%%@dirrm share/apps/pigmentcms @dirrm share/apps/musicshape/fonts @dirrm share/apps/musicshape @dirrm share/apps/kword/templates/Normal/.source @dirrm share/apps/kword/templates/Normal @dirrm share/apps/kword/templates/Envelopes/.source @dirrm share/apps/kword/templates/Envelopes @dirrm share/apps/kword/templates/CardsAndLabels/.source @dirrm share/apps/kword/templates/CardsAndLabels @dirrm share/apps/kword/templates @dirrm share/apps/kword/styles @dirrm share/apps/kword/scripts/samples @dirrm share/apps/kword/scripts/extensions @dirrm share/apps/kword/scripts @dirrm share/apps/kword/kpartplugins @dirrm share/apps/kword/icons/hicolor/scalable/actions @dirrm share/apps/kword/icons/hicolor/scalable @dirrm share/apps/kword/icons/hicolor/48x48/actions @dirrm share/apps/kword/icons/hicolor/48x48 @dirrm share/apps/kword/icons/hicolor/128x128/actions @dirrm share/apps/kword/icons/hicolor/128x128 @dirrm share/apps/kword/icons/hicolor @dirrm share/apps/kword/icons +@dirrm share/apps/kword/html-odf @dirrm share/apps/kword @dirrm share/apps/kspread/templates/HomeFamily/.source @dirrm share/apps/kspread/templates/HomeFamily @dirrm share/apps/kspread/templates/General/.source @dirrm share/apps/kspread/templates/General @dirrm share/apps/kspread/templates/Business/.source @dirrm share/apps/kspread/templates/Business @dirrm share/apps/kspread/templates @dirrm share/apps/kspread/sheetstyles @dirrm share/apps/kspread/scripts/functions @dirrm share/apps/kspread/scripts/extensions @dirrm share/apps/kspread/scripts/docker @dirrm share/apps/kspread/scripts @dirrm share/apps/kspread/kpartplugins @dirrm share/apps/kspread/icons/hicolor/scalable/actions @dirrm share/apps/kspread/icons/hicolor/scalable @dirrm share/apps/kspread/icons/hicolor/48x48/actions @dirrm share/apps/kspread/icons/hicolor/48x48 @dirrm share/apps/kspread/icons/hicolor/32x32/actions @dirrm share/apps/kspread/icons/hicolor/32x32 @dirrm share/apps/kspread/icons/hicolor/22x22/actions @dirrm share/apps/kspread/icons/hicolor/22x22 @dirrm share/apps/kspread/icons/hicolor/16x16/actions @dirrm share/apps/kspread/icons/hicolor/16x16 @dirrm share/apps/kspread/icons/hicolor @dirrm share/apps/kspread/icons @dirrm share/apps/kspread/functions @dirrm share/apps/kspread/dtd @dirrm share/apps/kspread @dirrm share/apps/kritaplugins/metadataeditor @dirrm share/apps/kritaplugins @dirrm share/apps/krita/templates/rgb/.source @dirrm share/apps/krita/templates/rgb @dirrm share/apps/krita/templates/gray/.source @dirrm share/apps/krita/templates/gray +@dirrm share/apps/krita/templates/comics/.source +@dirrm share/apps/krita/templates/comics @dirrm share/apps/krita/templates/cmyk/.source @dirrm share/apps/krita/templates/cmyk @dirrm share/apps/krita/templates %%GTL%%@dirrm share/apps/krita/shiva/kernels %%GTL%%@dirrm share/apps/krita/shiva @dirrm share/apps/krita/shaders -@dirrm share/apps/krita/scripts/filters -@dirrm share/apps/krita/scripts/extensions -@dirrm share/apps/krita/scripts/dockers -@dirrm share/apps/krita/scripts/decorations -@dirrm share/apps/krita/scripts @dirrm share/apps/krita/pics @dirrm share/apps/krita/patterns @dirrm share/apps/krita/palettes +@dirrm share/apps/krita/paintoppresets @dirrm share/apps/krita/metadata/schemas @dirrm share/apps/krita/metadata @dirrm share/apps/krita/kpartplugins @dirrm share/apps/krita/images @dirrm share/apps/krita/icons/hicolor/48x48/actions @dirrm share/apps/krita/icons/hicolor/48x48 @dirrm share/apps/krita/icons/hicolor @dirrm share/apps/krita/icons @dirrm share/apps/krita/gradients @dirrm share/apps/krita/dtd +@dirrm share/apps/krita/defaultpresets @dirrm share/apps/krita/brushmodels @dirrm share/apps/krita/brushes @dirrm share/apps/krita/backgrounds @dirrm share/apps/krita +@dirrm share/apps/kpresenter/templates/odf/.source +@dirrm share/apps/kpresenter/templates/odf +@dirrm share/apps/kpresenter/templates/exportHTML/templates +@dirrm share/apps/kpresenter/templates/exportHTML @dirrm share/apps/kpresenter/templates/Screen/.source @dirrm share/apps/kpresenter/templates/Screen @dirrm share/apps/kpresenter/templates @dirrm share/apps/kpresenter/styles @dirrm share/apps/kpresenter/pics/rotate @dirrm share/apps/kpresenter/pics @dirrm share/apps/kpresenter/kpartplugins @dirrm share/apps/kpresenter/icons/hicolor/scalable/actions @dirrm share/apps/kpresenter/icons/hicolor/scalable +@dirrm share/apps/kpresenter/icons/hicolor/64x64/actions +@dirrm share/apps/kpresenter/icons/hicolor/64x64 @dirrm share/apps/kpresenter/icons/hicolor/48x48/actions @dirrm share/apps/kpresenter/icons/hicolor/48x48 @dirrm share/apps/kpresenter/icons/hicolor @dirrm share/apps/kpresenter/icons @dirrm share/apps/kpresenter @dirrm share/apps/kplatowork/templates/Simple/.source @dirrm share/apps/kplatowork/templates/Simple @dirrm share/apps/kplatowork/templates @dirrm share/apps/kplatowork/icons/hicolor/scalable/actions @dirrm share/apps/kplatowork/icons/hicolor/scalable @dirrm share/apps/kplatowork/icons/hicolor/64x64/actions @dirrm share/apps/kplatowork/icons/hicolor/64x64 @dirrm share/apps/kplatowork/icons/hicolor/48x48/actions @dirrm share/apps/kplatowork/icons/hicolor/48x48 @dirrm share/apps/kplatowork/icons/hicolor/32x32/actions @dirrm share/apps/kplatowork/icons/hicolor/32x32 @dirrm share/apps/kplatowork/icons/hicolor/22x22/actions @dirrm share/apps/kplatowork/icons/hicolor/22x22 @dirrm share/apps/kplatowork/icons/hicolor/16x16/actions @dirrm share/apps/kplatowork/icons/hicolor/16x16 @dirrm share/apps/kplatowork/icons/hicolor/128x128/actions @dirrm share/apps/kplatowork/icons/hicolor/128x128 @dirrm share/apps/kplatowork/icons/hicolor @dirrm share/apps/kplatowork/icons @dirrm share/apps/kplatowork @dirrm share/apps/kplato/templates/Simple/.source @dirrm share/apps/kplato/templates/Simple @dirrm share/apps/kplato/templates @dirrm share/apps/kplato/scripts/samples @dirrm share/apps/kplato/scripts/extensions @dirrm share/apps/kplato/scripts @dirrm share/apps/kplato/kpartplugins @dirrm share/apps/kplato/icons/hicolor/scalable/actions @dirrm share/apps/kplato/icons/hicolor/scalable @dirrm share/apps/kplato/icons/hicolor/48x48/actions @dirrm share/apps/kplato/icons/hicolor/48x48 @dirrm share/apps/kplato/icons/hicolor/32x32/actions @dirrm share/apps/kplato/icons/hicolor/32x32 @dirrm share/apps/kplato/icons/hicolor/22x22/actions @dirrm share/apps/kplato/icons/hicolor/22x22 @dirrm share/apps/kplato/icons/hicolor @dirrm share/apps/kplato/icons @dirrm share/apps/kplato/about @dirrm share/apps/kplato @dirrm share/apps/koproperty/icons/hicolor/16x16/actions @dirrm share/apps/koproperty/icons/hicolor/16x16 @dirrm share/apps/koproperty/icons/hicolor @dirrm share/apps/koproperty/icons @dirrm share/apps/koproperty @dirrm share/apps/koffice/thesaurus @dirrm share/apps/koffice/icons/oxygen/22x22/actions @dirrm share/apps/koffice/icons/oxygen/22x22 @dirrm share/apps/koffice/icons/oxygen/16x16/actions @dirrm share/apps/koffice/icons/oxygen/16x16 @dirrm share/apps/koffice/icons/oxygen @dirrm share/apps/koffice/icons/hicolor/scalable/actions @dirrm share/apps/koffice/icons/hicolor/scalable @dirrm share/apps/koffice/icons/hicolor/48x48/apps @dirrm share/apps/koffice/icons/hicolor/48x48/actions @dirrm share/apps/koffice/icons/hicolor/48x48 @dirrm share/apps/koffice/icons/hicolor/32x32/apps @dirrm share/apps/koffice/icons/hicolor/32x32/actions @dirrm share/apps/koffice/icons/hicolor/32x32 @dirrm share/apps/koffice/icons/hicolor/22x22/actions @dirrm share/apps/koffice/icons/hicolor/22x22 @dirrm share/apps/koffice/icons/hicolor/16x16/apps @dirrm share/apps/koffice/icons/hicolor/16x16/actions @dirrm share/apps/koffice/icons/hicolor/16x16 @dirrm share/apps/koffice/icons/hicolor @dirrm share/apps/koffice/icons @dirrmtry share/apps/koffice/autocorrect @dirrmtry share/apps/koffice @dirrm share/apps/kformula @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22 @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16 @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes/small @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes @dirrm share/apps/kexi/icons/oxygen/scalable/actions/small/22x22 @dirrm share/apps/kexi/icons/oxygen/scalable/actions/small/16x16 @dirrm share/apps/kexi/icons/oxygen/scalable/actions/small @dirrm share/apps/kexi/icons/oxygen/scalable/actions @dirrm share/apps/kexi/icons/oxygen/scalable @dirrm share/apps/kexi/icons/oxygen/64x64/mimetypes @dirrm share/apps/kexi/icons/oxygen/64x64 @dirrm share/apps/kexi/icons/oxygen/48x48/mimetypes @dirrm share/apps/kexi/icons/oxygen/48x48 @dirrm share/apps/kexi/icons/oxygen/32x32/mimetypes @dirrm share/apps/kexi/icons/oxygen/32x32/actions @dirrm share/apps/kexi/icons/oxygen/32x32 @dirrm share/apps/kexi/icons/oxygen/22x22/mimetypes @dirrm share/apps/kexi/icons/oxygen/22x22/actions @dirrm share/apps/kexi/icons/oxygen/22x22 @dirrm share/apps/kexi/icons/oxygen/16x16/mimetypes @dirrm share/apps/kexi/icons/oxygen/16x16/actions @dirrm share/apps/kexi/icons/oxygen/16x16 @dirrm share/apps/kexi/icons/oxygen/128x128/mimetypes @dirrm share/apps/kexi/icons/oxygen/128x128 @dirrm share/apps/kexi/icons/oxygen @dirrm share/apps/kexi/icons/hicolor/64x64/actions @dirrm share/apps/kexi/icons/hicolor/64x64 @dirrm share/apps/kexi/icons/hicolor/48x48/actions @dirrm share/apps/kexi/icons/hicolor/48x48 @dirrm share/apps/kexi/icons/hicolor/32x32/actions @dirrm share/apps/kexi/icons/hicolor/32x32 @dirrm share/apps/kexi/icons/hicolor/22x22/actions @dirrm share/apps/kexi/icons/hicolor/22x22 @dirrm share/apps/kexi/icons/hicolor/16x16/actions @dirrm share/apps/kexi/icons/hicolor/16x16 @dirrm share/apps/kexi/icons/hicolor/128x128/actions @dirrm share/apps/kexi/icons/hicolor/128x128 @dirrm share/apps/kexi/icons/hicolor @dirrm share/apps/kexi/icons @dirrm share/apps/kexi -@dirrm share/apps/kchart/templates/chart/.source -@dirrm share/apps/kchart/templates/chart -@dirrm share/apps/kchart/templates -@dirrm share/apps/kchart/pics -@dirrm share/apps/kchart/icons/hicolor/scalable/actions -@dirrm share/apps/kchart/icons/hicolor/scalable -@dirrm share/apps/kchart/icons/hicolor/48x48/actions -@dirrm share/apps/kchart/icons/hicolor/48x48 -@dirrm share/apps/kchart/icons/hicolor/32x32/actions -@dirrm share/apps/kchart/icons/hicolor/32x32 -@dirrm share/apps/kchart/icons/hicolor/22x22/actions -@dirrm share/apps/kchart/icons/hicolor/22x22 -@dirrm share/apps/kchart/icons/hicolor/16x16/actions -@dirrm share/apps/kchart/icons/hicolor/16x16 -@dirrm share/apps/kchart/icons/hicolor -@dirrm share/apps/kchart/icons -@dirrm share/apps/kchart @dirrm share/apps/karbon/templates/Basic/.source @dirrm share/apps/karbon/templates/Basic @dirrm share/apps/karbon/templates @dirrm share/apps/karbon/kpartplugins @dirrm share/apps/karbon/icons/oxygen/16x16/actions @dirrm share/apps/karbon/icons/oxygen/16x16 @dirrm share/apps/karbon/icons/oxygen @dirrm share/apps/karbon/icons/hicolor/scalable/actions @dirrm share/apps/karbon/icons/hicolor/scalable @dirrm share/apps/karbon/icons/hicolor/48x48/actions @dirrm share/apps/karbon/icons/hicolor/48x48 @dirrm share/apps/karbon/icons/hicolor/22x22/actions @dirrm share/apps/karbon/icons/hicolor/22x22 @dirrm share/apps/karbon/icons/hicolor/16x16/actions @dirrm share/apps/karbon/icons/hicolor/16x16 @dirrm share/apps/karbon/icons/hicolor @dirrm share/apps/karbon/icons @dirrm share/apps/karbon/gradients @dirrm share/apps/karbon @dirrm share/apps/formulashape/fonts @dirrm share/apps/formulashape @dirrm include/styles @dirrm include/kexi/forms @dirrm include/kexi @dirrm include/changetracker @exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true @unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true Property changes on: head/editors/calligra/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.40 \ No newline at end of property +1.41 \ No newline at end of property Index: head/editors/calligra-l10n/Makefile =================================================================== --- head/editors/calligra-l10n/Makefile (revision 271655) +++ head/editors/calligra-l10n/Makefile (revision 271656) @@ -1,60 +1,61 @@ # New ports collection makefile for: koffice-kde4-l10n # Date created: 28 November 2009 # Whom: Dima Panov # # $FreeBSD$ # PORTNAME= koffice-l10n PORTVERSION= ${KOFFICE2_VERSION} CATEGORIES= editors kde MASTER_SITES= # none DISTFILES= # none EXTRACT_ONLY= # none MAINTAINER= kde@FreeBSD.org COMMENT= Localized messages and documentation for KOffice2 NO_BUILD= yes # NO_INSTALL= yes USE_KDE4= kdeprefix -KOFFICE2_LANG_ALL= ca ca@valencia da de el en_GB es et fr gl it ja kk \ +KOFFICE2_LANG_ALL= ca ca@valencia da de el en_GB es et fr gl hu it ja kk \ nb nds nl pl pt pt_BR ru sv tr uk wa zh_CN zh_TW ca@valencia_PORT= editors/koffice-kde4-l10n-ca_valencia de_PORT= german/koffice-kde4-l10n fr_PORT= french/koffice-kde4-l10n +hu_PORT= hungarian/koffice-kde4-l10n ja_PORT= japanese/koffice-kde4-l10n pl_PORT= polish/koffice-kde4-l10n pt_BR_PORT= portuguese/koffice-kde4-l10n-pt_BR pt_PORT= portuguese/koffice-kde4-l10n ru_PORT= russian/koffice-kde4-l10n uk_PORT= ukrainian/koffice-kde4-l10n zh_CN_PORT= chinese/koffice-kde4-l10n-zh_CN zh_TW_PORT= chinese/koffice-kde4-l10n-zh_TW .include <${.CURDIR}/../../misc/kde4-l10n/files/kde4-lang-names> nb_NAME= Norwegian Bokmal OPTIONS= ALL "All localizations" on .for lang in ${KOFFICE2_LANG_ALL} ${lang}_DETECT?= ${KDE4_PREFIX}/share/locale/${lang}/LC_MESSAGES/koffice.mo ${lang}_PORT?= editors/koffice-kde4-l10n-${lang} ${lang}_NAME?= ${lang} ${lang}_OPTION= ${lang:S/@/_/} OPTIONS+= ${${lang}_OPTION} "${${lang}_NAME} localization" off .endfor .include .for lang in ${KOFFICE2_LANG_ALL} .if defined(WITH_ALL) || defined(WITH_${${lang}_OPTION}) RUN_DEPENDS+= ${${lang}_DETECT}:${PORTSDIR}/${${lang}_PORT} .endif .endfor do-install: ${DO_NADA} .include Property changes on: head/editors/calligra-l10n/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.54 \ No newline at end of property +1.55 \ No newline at end of property Index: head/editors/calligra-l10n/files/bsd.l10n.mk =================================================================== --- head/editors/calligra-l10n/files/bsd.l10n.mk (revision 271655) +++ head/editors/calligra-l10n/files/bsd.l10n.mk (revision 271656) @@ -1,16 +1,14 @@ .if defined(KOFFICE2_L10N) MASTER_SITES?= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR?= ${KOFFICE2_BRANCH}/koffice-${PORTVERSION}/koffice-l10n/ PKGNAMEPREFIX= ${KOFFICE2_L10N:S/@/_/}- DISTNAME= ${PORTNAME}-${KOFFICE2_L10N}-${PORTVERSION} DIST_SUBDIR= KDE/koffice-l10n -BUILD_DEPENDS= ${LOCALBASE}/share/xml/docbook/4.2/docbookx.dtd:${PORTSDIR}/textproc/docbook-xml - USE_BZIP2= yes USE_QT_VER= 4 QT_COMPONENTS= uic_build moc_build qmake_build rcc_build xml USE_GETTEXT= yes USE_KDE4= kdelibs kdehier kdeprefix automoc4 USE_CMAKE= yes .endif Property changes on: head/editors/calligra-l10n/files/bsd.l10n.mk ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/editors/calligra-l10n-ca/distinfo =================================================================== --- head/editors/calligra-l10n-ca/distinfo (revision 271655) +++ head/editors/calligra-l10n-ca/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-ca-2.2.2.tar.bz2) = e5682579bdd4a8dd6235900215fbf5fa07f947fc459105740e96200d4667ed23 -SIZE (KDE/koffice-l10n/koffice-l10n-ca-2.2.2.tar.bz2) = 609607 +SHA256 (KDE/koffice-l10n/koffice-l10n-ca-2.3.1.tar.bz2) = 7471fb7811d3455364ce068047a40bf4fc00b8d080d331a1f1f83c6442cb5c43 +SIZE (KDE/koffice-l10n/koffice-l10n-ca-2.3.1.tar.bz2) = 602505 Property changes on: head/editors/calligra-l10n-ca/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/editors/calligra-l10n-ca/pkg-plist =================================================================== --- head/editors/calligra-l10n-ca/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-ca/pkg-plist (revision 271656) @@ -1,112 +1,121 @@ -share/apps/koffice/autocorrect/ca.xml share/doc/HTML/ca/karbon/common share/doc/HTML/ca/karbon/index.cache.bz2 share/doc/HTML/ca/karbon/index.docbook share/doc/HTML/ca/kchart/common share/doc/HTML/ca/kchart/index.cache.bz2 share/doc/HTML/ca/kchart/index.docbook share/doc/HTML/ca/kexi/basics.docbook share/doc/HTML/ca/kexi/building.docbook share/doc/HTML/ca/kexi/common share/doc/HTML/ca/kexi/comparing.docbook share/doc/HTML/ca/kexi/configuration.docbook share/doc/HTML/ca/kexi/credits.docbook share/doc/HTML/ca/kexi/database.docbook share/doc/HTML/ca/kexi/designingforms.docbook share/doc/HTML/ca/kexi/enteringdataintotables.docbook share/doc/HTML/ca/kexi/enteringdatausingforms.docbook share/doc/HTML/ca/kexi/index.cache.bz2 share/doc/HTML/ca/kexi/index.docbook share/doc/HTML/ca/kexi/intro.docbook share/doc/HTML/ca/kexi/menus.docbook share/doc/HTML/ca/kexi/querydesigning.docbook share/doc/HTML/ca/kformula/common share/doc/HTML/ca/kformula/index.cache.bz2 share/doc/HTML/ca/kformula/index.docbook +share/doc/HTML/ca/kivio/common +share/doc/HTML/ca/kivio/credits.docbook +share/doc/HTML/ca/kivio/index.cache.bz2 +share/doc/HTML/ca/kivio/index.docbook +share/doc/HTML/ca/kivio/introduction.docbook +share/doc/HTML/ca/kivio/usage.docbook +share/doc/HTML/ca/kivio/working.docbook share/doc/HTML/ca/koffice/common share/doc/HTML/ca/koffice/index.cache.bz2 share/doc/HTML/ca/koffice/index.docbook share/doc/HTML/ca/kpresenter/a11y.docbook share/doc/HTML/ca/kpresenter/common share/doc/HTML/ca/kpresenter/faq.docbook share/doc/HTML/ca/kpresenter/great-presentations.docbook share/doc/HTML/ca/kpresenter/guides.docbook share/doc/HTML/ca/kpresenter/index.cache.bz2 share/doc/HTML/ca/kpresenter/index.docbook share/doc/HTML/ca/kpresenter/menus.docbook share/doc/HTML/ca/kpresenter/options.docbook share/doc/HTML/ca/kpresenter/screen.docbook share/doc/HTML/ca/kpresenter/tutorial.docbook share/doc/HTML/ca/kspread/a11y.docbook share/doc/HTML/ca/kspread/advanced.docbook share/doc/HTML/ca/kspread/basics.docbook share/doc/HTML/ca/kspread/commands.docbook share/doc/HTML/ca/kspread/common share/doc/HTML/ca/kspread/config.docbook share/doc/HTML/ca/kspread/configdialog.docbook share/doc/HTML/ca/kspread/faq.docbook share/doc/HTML/ca/kspread/format.docbook share/doc/HTML/ca/kspread/importexport.docbook share/doc/HTML/ca/kspread/index.cache.bz2 share/doc/HTML/ca/kspread/index.docbook share/doc/HTML/ca/thesaurus/common share/doc/HTML/ca/thesaurus/index.cache.bz2 share/doc/HTML/ca/thesaurus/index.docbook share/locale/ca/LC_MESSAGES/ArtisticTextShape.mo share/locale/ca/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/ca/LC_MESSAGES/BarcodePlugin.mo share/locale/ca/LC_MESSAGES/CalendarTool.mo share/locale/ca/LC_MESSAGES/ChangecasePlugin.mo +share/locale/ca/LC_MESSAGES/ChartPlugin.mo share/locale/ca/LC_MESSAGES/ChartShape.mo +share/locale/ca/LC_MESSAGES/CommentShape.mo share/locale/ca/LC_MESSAGES/DivineProportion.mo share/locale/ca/LC_MESSAGES/FormulaShape.mo -share/locale/ca/LC_MESSAGES/FreOffice.mo share/locale/ca/LC_MESSAGES/KarbonTools.mo share/locale/ca/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/ca/LC_MESSAGES/MusicShape.mo share/locale/ca/LC_MESSAGES/ParagraphTool.mo share/locale/ca/LC_MESSAGES/PathShapes.mo share/locale/ca/LC_MESSAGES/PictureShape.mo +share/locale/ca/LC_MESSAGES/PluginShape.mo +share/locale/ca/LC_MESSAGES/ShapePlugin.mo share/locale/ca/LC_MESSAGES/SpellCheckPlugin.mo share/locale/ca/LC_MESSAGES/TableShape.mo share/locale/ca/LC_MESSAGES/TextShape.mo share/locale/ca/LC_MESSAGES/VariablesPlugin.mo share/locale/ca/LC_MESSAGES/VideoShape.mo share/locale/ca/LC_MESSAGES/desktop_koffice.mo share/locale/ca/LC_MESSAGES/karbon.mo share/locale/ca/LC_MESSAGES/kchart.mo share/locale/ca/LC_MESSAGES/kexi.mo share/locale/ca/LC_MESSAGES/kformula.mo share/locale/ca/LC_MESSAGES/kocolorspaces.mo share/locale/ca/LC_MESSAGES/koconverter.mo share/locale/ca/LC_MESSAGES/koffice-defaulttools.mo share/locale/ca/LC_MESSAGES/koffice-dockers.mo share/locale/ca/LC_MESSAGES/koffice-simpletextedit.mo share/locale/ca/LC_MESSAGES/koffice.mo share/locale/ca/LC_MESSAGES/kofficefilters.mo share/locale/ca/LC_MESSAGES/koproperty.mo share/locale/ca/LC_MESSAGES/kounavail.mo share/locale/ca/LC_MESSAGES/kplato.mo share/locale/ca/LC_MESSAGES/kplatolibs.mo share/locale/ca/LC_MESSAGES/kplatorcpsplugin.mo share/locale/ca/LC_MESSAGES/kplatowork.mo share/locale/ca/LC_MESSAGES/kpresenter.mo share/locale/ca/LC_MESSAGES/krita.mo share/locale/ca/LC_MESSAGES/krossmodulekplato.mo share/locale/ca/LC_MESSAGES/krossmodulekspread.mo share/locale/ca/LC_MESSAGES/krossmodulekword.mo share/locale/ca/LC_MESSAGES/kscan_plugin.mo share/locale/ca/LC_MESSAGES/kspread.mo share/locale/ca/LC_MESSAGES/kspreadsolver.mo share/locale/ca/LC_MESSAGES/kthesaurus.mo share/locale/ca/LC_MESSAGES/kword.mo share/locale/ca/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/ca/thesaurus @dirrm share/doc/HTML/ca/kspread @dirrm share/doc/HTML/ca/kpresenter @dirrm share/doc/HTML/ca/koffice +@dirrm share/doc/HTML/ca/kivio @dirrm share/doc/HTML/ca/kformula @dirrm share/doc/HTML/ca/kexi @dirrm share/doc/HTML/ca/kchart @dirrm share/doc/HTML/ca/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/calligra-l10n-ca/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/editors/calligra-l10n-ca_valencia/distinfo =================================================================== --- head/editors/calligra-l10n-ca_valencia/distinfo (revision 271655) +++ head/editors/calligra-l10n-ca_valencia/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.2.2.tar.bz2) = f330d0838915b98fd4aa6b348bdaf39d2fb4289732772e08f4307fd450d4cd1d -SIZE (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.2.2.tar.bz2) = 322040 +SHA256 (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.3.1.tar.bz2) = 4552b512bff48dce5326b350ab77e68dd5b79476719c9b50ff5afdb3f28cd45b +SIZE (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.3.1.tar.bz2) = 333798 Property changes on: head/editors/calligra-l10n-ca_valencia/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/editors/calligra-l10n-ca_valencia/pkg-plist =================================================================== --- head/editors/calligra-l10n-ca_valencia/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-ca_valencia/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/ca@valencia/LC_MESSAGES/ArtisticTextShape.mo share/locale/ca@valencia/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/ca@valencia/LC_MESSAGES/BarcodePlugin.mo share/locale/ca@valencia/LC_MESSAGES/CalendarTool.mo share/locale/ca@valencia/LC_MESSAGES/ChangecasePlugin.mo +share/locale/ca@valencia/LC_MESSAGES/ChartPlugin.mo share/locale/ca@valencia/LC_MESSAGES/ChartShape.mo +share/locale/ca@valencia/LC_MESSAGES/CommentShape.mo share/locale/ca@valencia/LC_MESSAGES/DivineProportion.mo share/locale/ca@valencia/LC_MESSAGES/FormulaShape.mo -share/locale/ca@valencia/LC_MESSAGES/FreOffice.mo share/locale/ca@valencia/LC_MESSAGES/KarbonTools.mo share/locale/ca@valencia/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/ca@valencia/LC_MESSAGES/MusicShape.mo share/locale/ca@valencia/LC_MESSAGES/ParagraphTool.mo share/locale/ca@valencia/LC_MESSAGES/PathShapes.mo share/locale/ca@valencia/LC_MESSAGES/PictureShape.mo +share/locale/ca@valencia/LC_MESSAGES/PluginShape.mo +share/locale/ca@valencia/LC_MESSAGES/ShapePlugin.mo share/locale/ca@valencia/LC_MESSAGES/SpellCheckPlugin.mo share/locale/ca@valencia/LC_MESSAGES/TableShape.mo share/locale/ca@valencia/LC_MESSAGES/TextShape.mo share/locale/ca@valencia/LC_MESSAGES/VariablesPlugin.mo share/locale/ca@valencia/LC_MESSAGES/VideoShape.mo share/locale/ca@valencia/LC_MESSAGES/desktop_koffice.mo share/locale/ca@valencia/LC_MESSAGES/karbon.mo share/locale/ca@valencia/LC_MESSAGES/kchart.mo share/locale/ca@valencia/LC_MESSAGES/kexi.mo share/locale/ca@valencia/LC_MESSAGES/kformula.mo share/locale/ca@valencia/LC_MESSAGES/kocolorspaces.mo share/locale/ca@valencia/LC_MESSAGES/koconverter.mo share/locale/ca@valencia/LC_MESSAGES/koffice-defaulttools.mo share/locale/ca@valencia/LC_MESSAGES/koffice-dockers.mo share/locale/ca@valencia/LC_MESSAGES/koffice-simpletextedit.mo share/locale/ca@valencia/LC_MESSAGES/koffice.mo share/locale/ca@valencia/LC_MESSAGES/kofficefilters.mo share/locale/ca@valencia/LC_MESSAGES/koproperty.mo share/locale/ca@valencia/LC_MESSAGES/kounavail.mo share/locale/ca@valencia/LC_MESSAGES/kplato.mo share/locale/ca@valencia/LC_MESSAGES/kplatolibs.mo share/locale/ca@valencia/LC_MESSAGES/kplatorcpsplugin.mo share/locale/ca@valencia/LC_MESSAGES/kplatowork.mo share/locale/ca@valencia/LC_MESSAGES/kpresenter.mo share/locale/ca@valencia/LC_MESSAGES/krita.mo share/locale/ca@valencia/LC_MESSAGES/krossmodulekplato.mo share/locale/ca@valencia/LC_MESSAGES/krossmodulekspread.mo share/locale/ca@valencia/LC_MESSAGES/krossmodulekword.mo share/locale/ca@valencia/LC_MESSAGES/kscan_plugin.mo share/locale/ca@valencia/LC_MESSAGES/kspread.mo share/locale/ca@valencia/LC_MESSAGES/kspreadsolver.mo share/locale/ca@valencia/LC_MESSAGES/kthesaurus.mo share/locale/ca@valencia/LC_MESSAGES/kword.mo share/locale/ca@valencia/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/editors/calligra-l10n-ca_valencia/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/editors/calligra-l10n-da/distinfo =================================================================== --- head/editors/calligra-l10n-da/distinfo (revision 271655) +++ head/editors/calligra-l10n-da/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-da-2.2.2.tar.bz2) = 04528abc8dfd2785a282fc4228f7c9a88a8760376e79fd9e8c6b129a299d8dc5 -SIZE (KDE/koffice-l10n/koffice-l10n-da-2.2.2.tar.bz2) = 601612 +SHA256 (KDE/koffice-l10n/koffice-l10n-da-2.3.1.tar.bz2) = 0e68b45c8a2f0e357eaa24905605ea16f6ee4877363319afb9f484c261bbcf53 +SIZE (KDE/koffice-l10n/koffice-l10n-da-2.3.1.tar.bz2) = 574070 Property changes on: head/editors/calligra-l10n-da/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-da/pkg-plist =================================================================== --- head/editors/calligra-l10n-da/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-da/pkg-plist (revision 271656) @@ -1,109 +1,101 @@ share/doc/HTML/da/karbon/common share/doc/HTML/da/karbon/index.cache.bz2 share/doc/HTML/da/karbon/index.docbook share/doc/HTML/da/kchart/common share/doc/HTML/da/kchart/index.cache.bz2 share/doc/HTML/da/kchart/index.docbook share/doc/HTML/da/kexi/basics.docbook share/doc/HTML/da/kexi/building.docbook share/doc/HTML/da/kexi/common share/doc/HTML/da/kexi/comparing.docbook share/doc/HTML/da/kexi/configuration.docbook share/doc/HTML/da/kexi/credits.docbook share/doc/HTML/da/kexi/database.docbook share/doc/HTML/da/kexi/designingforms.docbook share/doc/HTML/da/kexi/enteringdataintotables.docbook share/doc/HTML/da/kexi/enteringdatausingforms.docbook share/doc/HTML/da/kexi/index.cache.bz2 share/doc/HTML/da/kexi/index.docbook share/doc/HTML/da/kexi/intro.docbook share/doc/HTML/da/kexi/menus.docbook share/doc/HTML/da/kexi/querydesigning.docbook share/doc/HTML/da/kformula/common share/doc/HTML/da/kformula/index.cache.bz2 share/doc/HTML/da/kformula/index.docbook share/doc/HTML/da/koffice/common share/doc/HTML/da/koffice/index.cache.bz2 share/doc/HTML/da/koffice/index.docbook -share/doc/HTML/da/kpresenter/a11y.docbook -share/doc/HTML/da/kpresenter/common -share/doc/HTML/da/kpresenter/faq.docbook -share/doc/HTML/da/kpresenter/great-presentations.docbook -share/doc/HTML/da/kpresenter/guides.docbook -share/doc/HTML/da/kpresenter/index.cache.bz2 -share/doc/HTML/da/kpresenter/index.docbook -share/doc/HTML/da/kpresenter/menus.docbook -share/doc/HTML/da/kpresenter/options.docbook -share/doc/HTML/da/kpresenter/screen.docbook -share/doc/HTML/da/kpresenter/tutorial.docbook share/doc/HTML/da/kspread/a11y.docbook share/doc/HTML/da/kspread/advanced.docbook share/doc/HTML/da/kspread/basics.docbook share/doc/HTML/da/kspread/commands.docbook share/doc/HTML/da/kspread/common share/doc/HTML/da/kspread/config.docbook share/doc/HTML/da/kspread/configdialog.docbook share/doc/HTML/da/kspread/faq.docbook share/doc/HTML/da/kspread/format.docbook share/doc/HTML/da/kspread/importexport.docbook share/doc/HTML/da/kspread/index.cache.bz2 share/doc/HTML/da/kspread/index.docbook share/doc/HTML/da/thesaurus/common share/doc/HTML/da/thesaurus/index.cache.bz2 share/doc/HTML/da/thesaurus/index.docbook share/locale/da/LC_MESSAGES/ArtisticTextShape.mo share/locale/da/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/da/LC_MESSAGES/BarcodePlugin.mo share/locale/da/LC_MESSAGES/CalendarTool.mo share/locale/da/LC_MESSAGES/ChangecasePlugin.mo +share/locale/da/LC_MESSAGES/ChartPlugin.mo share/locale/da/LC_MESSAGES/ChartShape.mo +share/locale/da/LC_MESSAGES/CommentShape.mo share/locale/da/LC_MESSAGES/DivineProportion.mo share/locale/da/LC_MESSAGES/FormulaShape.mo -share/locale/da/LC_MESSAGES/FreOffice.mo share/locale/da/LC_MESSAGES/KarbonTools.mo share/locale/da/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/da/LC_MESSAGES/MusicShape.mo share/locale/da/LC_MESSAGES/ParagraphTool.mo share/locale/da/LC_MESSAGES/PathShapes.mo share/locale/da/LC_MESSAGES/PictureShape.mo +share/locale/da/LC_MESSAGES/PluginShape.mo +share/locale/da/LC_MESSAGES/ShapePlugin.mo share/locale/da/LC_MESSAGES/SpellCheckPlugin.mo share/locale/da/LC_MESSAGES/TableShape.mo share/locale/da/LC_MESSAGES/TextShape.mo share/locale/da/LC_MESSAGES/VariablesPlugin.mo share/locale/da/LC_MESSAGES/VideoShape.mo share/locale/da/LC_MESSAGES/desktop_koffice.mo share/locale/da/LC_MESSAGES/karbon.mo share/locale/da/LC_MESSAGES/kchart.mo share/locale/da/LC_MESSAGES/kexi.mo share/locale/da/LC_MESSAGES/kformula.mo share/locale/da/LC_MESSAGES/kocolorspaces.mo share/locale/da/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/koffice-defaulttools.mo share/locale/da/LC_MESSAGES/koffice-dockers.mo share/locale/da/LC_MESSAGES/koffice-simpletextedit.mo share/locale/da/LC_MESSAGES/koffice.mo share/locale/da/LC_MESSAGES/kofficefilters.mo share/locale/da/LC_MESSAGES/koproperty.mo share/locale/da/LC_MESSAGES/kounavail.mo share/locale/da/LC_MESSAGES/kplato.mo share/locale/da/LC_MESSAGES/kplatolibs.mo share/locale/da/LC_MESSAGES/kplatorcpsplugin.mo share/locale/da/LC_MESSAGES/kplatowork.mo share/locale/da/LC_MESSAGES/kpresenter.mo share/locale/da/LC_MESSAGES/krita.mo share/locale/da/LC_MESSAGES/krossmodulekplato.mo share/locale/da/LC_MESSAGES/krossmodulekspread.mo share/locale/da/LC_MESSAGES/krossmodulekword.mo share/locale/da/LC_MESSAGES/kscan_plugin.mo share/locale/da/LC_MESSAGES/kspread.mo share/locale/da/LC_MESSAGES/kspreadsolver.mo share/locale/da/LC_MESSAGES/kthesaurus.mo share/locale/da/LC_MESSAGES/kword.mo share/locale/da/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/da/thesaurus @dirrm share/doc/HTML/da/kspread -@dirrm share/doc/HTML/da/kpresenter @dirrm share/doc/HTML/da/koffice @dirrm share/doc/HTML/da/kformula @dirrm share/doc/HTML/da/kexi @dirrm share/doc/HTML/da/kchart @dirrm share/doc/HTML/da/karbon Property changes on: head/editors/calligra-l10n-da/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/editors/calligra-l10n-el/distinfo =================================================================== --- head/editors/calligra-l10n-el/distinfo (revision 271655) +++ head/editors/calligra-l10n-el/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-el-2.2.2.tar.bz2) = 3846c902fa59e473c823bb783f7036c860a5329cd34d3430a3ba08b01e2b3dff -SIZE (KDE/koffice-l10n/koffice-l10n-el-2.2.2.tar.bz2) = 334551 +SHA256 (KDE/koffice-l10n/koffice-l10n-el-2.3.1.tar.bz2) = 76804f96c3a931f369fdbc0b8a5d2041870bb7273995822973273ef715ed52a3 +SIZE (KDE/koffice-l10n/koffice-l10n-el-2.3.1.tar.bz2) = 344757 Property changes on: head/editors/calligra-l10n-el/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-en_GB/distinfo =================================================================== --- head/editors/calligra-l10n-en_GB/distinfo (revision 271655) +++ head/editors/calligra-l10n-en_GB/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-en_GB-2.2.2.tar.bz2) = f1b8962de072c2304b70c271ec75918e3c71590a900575552a7b8d1481095934 -SIZE (KDE/koffice-l10n/koffice-l10n-en_GB-2.2.2.tar.bz2) = 346856 +SHA256 (KDE/koffice-l10n/koffice-l10n-en_GB-2.3.1.tar.bz2) = 965533eb638a1246db6bb0bc4ab208783eaa860a447bc653551e2c91cc9731af +SIZE (KDE/koffice-l10n/koffice-l10n-en_GB-2.3.1.tar.bz2) = 335483 Property changes on: head/editors/calligra-l10n-en_GB/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-en_GB/pkg-plist =================================================================== --- head/editors/calligra-l10n-en_GB/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-en_GB/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/en_GB/LC_MESSAGES/ArtisticTextShape.mo share/locale/en_GB/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/en_GB/LC_MESSAGES/BarcodePlugin.mo share/locale/en_GB/LC_MESSAGES/CalendarTool.mo share/locale/en_GB/LC_MESSAGES/ChangecasePlugin.mo +share/locale/en_GB/LC_MESSAGES/ChartPlugin.mo share/locale/en_GB/LC_MESSAGES/ChartShape.mo +share/locale/en_GB/LC_MESSAGES/CommentShape.mo share/locale/en_GB/LC_MESSAGES/DivineProportion.mo share/locale/en_GB/LC_MESSAGES/FormulaShape.mo -share/locale/en_GB/LC_MESSAGES/FreOffice.mo share/locale/en_GB/LC_MESSAGES/KarbonTools.mo share/locale/en_GB/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/en_GB/LC_MESSAGES/MusicShape.mo share/locale/en_GB/LC_MESSAGES/ParagraphTool.mo share/locale/en_GB/LC_MESSAGES/PathShapes.mo share/locale/en_GB/LC_MESSAGES/PictureShape.mo +share/locale/en_GB/LC_MESSAGES/PluginShape.mo +share/locale/en_GB/LC_MESSAGES/ShapePlugin.mo share/locale/en_GB/LC_MESSAGES/SpellCheckPlugin.mo share/locale/en_GB/LC_MESSAGES/TableShape.mo share/locale/en_GB/LC_MESSAGES/TextShape.mo share/locale/en_GB/LC_MESSAGES/VariablesPlugin.mo share/locale/en_GB/LC_MESSAGES/VideoShape.mo share/locale/en_GB/LC_MESSAGES/desktop_koffice.mo share/locale/en_GB/LC_MESSAGES/karbon.mo share/locale/en_GB/LC_MESSAGES/kchart.mo share/locale/en_GB/LC_MESSAGES/kexi.mo share/locale/en_GB/LC_MESSAGES/kformula.mo share/locale/en_GB/LC_MESSAGES/kocolorspaces.mo share/locale/en_GB/LC_MESSAGES/koconverter.mo share/locale/en_GB/LC_MESSAGES/koffice-defaulttools.mo share/locale/en_GB/LC_MESSAGES/koffice-dockers.mo share/locale/en_GB/LC_MESSAGES/koffice-simpletextedit.mo share/locale/en_GB/LC_MESSAGES/koffice.mo share/locale/en_GB/LC_MESSAGES/kofficefilters.mo share/locale/en_GB/LC_MESSAGES/koproperty.mo share/locale/en_GB/LC_MESSAGES/kounavail.mo share/locale/en_GB/LC_MESSAGES/kplato.mo share/locale/en_GB/LC_MESSAGES/kplatolibs.mo share/locale/en_GB/LC_MESSAGES/kplatorcpsplugin.mo share/locale/en_GB/LC_MESSAGES/kplatowork.mo share/locale/en_GB/LC_MESSAGES/kpresenter.mo share/locale/en_GB/LC_MESSAGES/krita.mo share/locale/en_GB/LC_MESSAGES/krossmodulekplato.mo share/locale/en_GB/LC_MESSAGES/krossmodulekspread.mo share/locale/en_GB/LC_MESSAGES/krossmodulekword.mo share/locale/en_GB/LC_MESSAGES/kscan_plugin.mo share/locale/en_GB/LC_MESSAGES/kspread.mo share/locale/en_GB/LC_MESSAGES/kspreadsolver.mo share/locale/en_GB/LC_MESSAGES/kthesaurus.mo share/locale/en_GB/LC_MESSAGES/kword.mo share/locale/en_GB/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/editors/calligra-l10n-en_GB/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/editors/calligra-l10n-es/distinfo =================================================================== --- head/editors/calligra-l10n-es/distinfo (revision 271655) +++ head/editors/calligra-l10n-es/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-es-2.2.2.tar.bz2) = 9624407d6099a0e29abb7019062ead5e53886f4bd2496240cd2c9b7105e37a56 -SIZE (KDE/koffice-l10n/koffice-l10n-es-2.2.2.tar.bz2) = 6222081 +SHA256 (KDE/koffice-l10n/koffice-l10n-es-2.3.1.tar.bz2) = 44a83ca8e92159e8121a2535244db45595d78044a8cee5297e4652d0591c2e3f +SIZE (KDE/koffice-l10n/koffice-l10n-es-2.3.1.tar.bz2) = 6264314 Property changes on: head/editors/calligra-l10n-es/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-es/pkg-plist =================================================================== --- head/editors/calligra-l10n-es/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-es/pkg-plist (revision 271656) @@ -1,195 +1,204 @@ -share/apps/koffice/autocorrect/es.xml share/doc/HTML/es/karbon/common share/doc/HTML/es/karbon/index.cache.bz2 share/doc/HTML/es/karbon/index.docbook share/doc/HTML/es/kchart/common share/doc/HTML/es/kchart/cr22-action-chart_line.png share/doc/HTML/es/kchart/cr22-action-data.png share/doc/HTML/es/kchart/cr22-action-options.png share/doc/HTML/es/kchart/cr22-action-wizard.png share/doc/HTML/es/kchart/file-toolbar.png share/doc/HTML/es/kchart/file-toolbar2.png share/doc/HTML/es/kchart/frame_chart.png share/doc/HTML/es/kchart/index.cache.bz2 share/doc/HTML/es/kchart/index.docbook share/doc/HTML/es/kchart/kchart-config1.png share/doc/HTML/es/kchart/kchart-config2.png share/doc/HTML/es/kchart/kchart-config3.png share/doc/HTML/es/kchart/kchart-config4.png share/doc/HTML/es/kchart/kchart-config5.png share/doc/HTML/es/kchart/kchart-config6.png share/doc/HTML/es/kchart/kchart-config7.png share/doc/HTML/es/kchart/kchart-config8.png share/doc/HTML/es/kchart/kchart-dataeditor.png share/doc/HTML/es/kchart/kchart-default.png share/doc/HTML/es/kchart/kchart-example1-1.png share/doc/HTML/es/kchart/kchart-example1-2.png share/doc/HTML/es/kchart/kchart-example1-3.png share/doc/HTML/es/kchart/kchart-example1-4.png share/doc/HTML/es/kchart/kchart-example1-5.png share/doc/HTML/es/kchart/kchart-example1-6.png share/doc/HTML/es/kchart/kchart-example1-7.png share/doc/HTML/es/kchart/kchart-example1-8.png share/doc/HTML/es/kchart/kchart-example1-9.png share/doc/HTML/es/kchart/kchart-kspread-bar.png share/doc/HTML/es/kchart/kchart-kspread.png share/doc/HTML/es/kchart/kchart-startupdialog.png share/doc/HTML/es/kchart/kchart-wizard1.png share/doc/HTML/es/kchart/kchart-wizard2.png share/doc/HTML/es/kchart/kchart-wizard3.png share/doc/HTML/es/kchart/kchart-wizard4.png share/doc/HTML/es/kchart/shortcut.png share/doc/HTML/es/kchart/toolbars.png share/doc/HTML/es/kformula/ambiguous-string.png share/doc/HTML/es/kformula/common share/doc/HTML/es/kformula/correct_index_location.png share/doc/HTML/es/kformula/definite_integral.png share/doc/HTML/es/kformula/file-toolbar.png share/doc/HTML/es/kformula/file-toolbar2.png share/doc/HTML/es/kformula/green1.png share/doc/HTML/es/kformula/green2.png share/doc/HTML/es/kformula/greens.png share/doc/HTML/es/kformula/incorrect_index_location.png share/doc/HTML/es/kformula/index.cache.bz2 share/doc/HTML/es/kformula/index.docbook share/doc/HTML/es/kformula/index_smear.png share/doc/HTML/es/kformula/kfontinst1.png share/doc/HTML/es/kformula/kfontinst2.png share/doc/HTML/es/kformula/kfontinst3.png share/doc/HTML/es/kformula/kfontinst4.png share/doc/HTML/es/kformula/kfontinst5.png share/doc/HTML/es/kformula/kfontinst6.png share/doc/HTML/es/kformula/lower-index.png share/doc/HTML/es/kformula/matrix-view.png share/doc/HTML/es/kformula/matrix.png share/doc/HTML/es/kformula/negative_thin_space.png share/doc/HTML/es/kformula/path-integral.png share/doc/HTML/es/kformula/rk-edit0.png share/doc/HTML/es/kformula/rk-edit1.png share/doc/HTML/es/kformula/rk-edit2.png share/doc/HTML/es/kformula/scilab-edit.png share/doc/HTML/es/kformula/scilab.png share/doc/HTML/es/kformula/shortcut0.png share/doc/HTML/es/kformula/shortcut1.png share/doc/HTML/es/kformula/sin.png share/doc/HTML/es/kformula/toolbars.png share/doc/HTML/es/kformula/upper-index.png +share/doc/HTML/es/kivio/common +share/doc/HTML/es/kivio/credits.docbook +share/doc/HTML/es/kivio/index.cache.bz2 +share/doc/HTML/es/kivio/index.docbook +share/doc/HTML/es/kivio/introduction.docbook +share/doc/HTML/es/kivio/usage.docbook +share/doc/HTML/es/kivio/working.docbook share/doc/HTML/es/koffice/common share/doc/HTML/es/koffice/index.cache.bz2 share/doc/HTML/es/koffice/index.docbook share/doc/HTML/es/kpresenter/a11y.docbook share/doc/HTML/es/kpresenter/common share/doc/HTML/es/kpresenter/faq.docbook share/doc/HTML/es/kpresenter/great-presentations.docbook share/doc/HTML/es/kpresenter/guides.docbook share/doc/HTML/es/kpresenter/index.cache.bz2 share/doc/HTML/es/kpresenter/index.docbook share/doc/HTML/es/kpresenter/menus.docbook share/doc/HTML/es/kpresenter/options.docbook share/doc/HTML/es/kpresenter/screen.docbook share/doc/HTML/es/kpresenter/tutorial.docbook share/doc/HTML/es/kspread/a11y.docbook share/doc/HTML/es/kspread/advanced.docbook share/doc/HTML/es/kspread/basics.docbook share/doc/HTML/es/kspread/cellformat0.png share/doc/HTML/es/kspread/cellformat1.png share/doc/HTML/es/kspread/cellformat2.png share/doc/HTML/es/kspread/cellformat3.png share/doc/HTML/es/kspread/cellformat4.png share/doc/HTML/es/kspread/cellformat5.png share/doc/HTML/es/kspread/cellformat6.png share/doc/HTML/es/kspread/cellprotection1.png share/doc/HTML/es/kspread/cellprotection2.png share/doc/HTML/es/kspread/chart1.png share/doc/HTML/es/kspread/commands.docbook share/doc/HTML/es/kspread/common share/doc/HTML/es/kspread/config.docbook share/doc/HTML/es/kspread/configdialog.docbook share/doc/HTML/es/kspread/configure1.png share/doc/HTML/es/kspread/configure2.png share/doc/HTML/es/kspread/configure3.png share/doc/HTML/es/kspread/configure4.png share/doc/HTML/es/kspread/configure5.png share/doc/HTML/es/kspread/configure6.png share/doc/HTML/es/kspread/copy1.png share/doc/HTML/es/kspread/currency.png share/doc/HTML/es/kspread/decreasedecimal.png share/doc/HTML/es/kspread/faq.docbook share/doc/HTML/es/kspread/format.docbook share/doc/HTML/es/kspread/hideformula1.png share/doc/HTML/es/kspread/hideformula2.png share/doc/HTML/es/kspread/hideformula3.png share/doc/HTML/es/kspread/hideformula4.png share/doc/HTML/es/kspread/hideformula5.png share/doc/HTML/es/kspread/importexport.docbook share/doc/HTML/es/kspread/increasedecimal.png share/doc/HTML/es/kspread/index.cache.bz2 share/doc/HTML/es/kspread/index.docbook share/doc/HTML/es/kspread/newdocument.png share/doc/HTML/es/kspread/percent.png share/doc/HTML/es/kspread/sheetproperties.png share/doc/HTML/es/kspread/shortcut1.png share/doc/HTML/es/kspread/shortcut2.png share/doc/HTML/es/kspread/shortcut3.png share/doc/HTML/es/kspread/sort1.png share/doc/HTML/es/kspread/starting1.png share/doc/HTML/es/thesaurus/common share/doc/HTML/es/thesaurus/index.cache.bz2 share/doc/HTML/es/thesaurus/index.docbook share/locale/es/LC_MESSAGES/ArtisticTextShape.mo share/locale/es/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/es/LC_MESSAGES/BarcodePlugin.mo share/locale/es/LC_MESSAGES/CalendarTool.mo share/locale/es/LC_MESSAGES/ChangecasePlugin.mo +share/locale/es/LC_MESSAGES/ChartPlugin.mo share/locale/es/LC_MESSAGES/ChartShape.mo +share/locale/es/LC_MESSAGES/CommentShape.mo share/locale/es/LC_MESSAGES/DivineProportion.mo share/locale/es/LC_MESSAGES/FormulaShape.mo -share/locale/es/LC_MESSAGES/FreOffice.mo share/locale/es/LC_MESSAGES/KarbonTools.mo share/locale/es/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/es/LC_MESSAGES/MusicShape.mo share/locale/es/LC_MESSAGES/ParagraphTool.mo share/locale/es/LC_MESSAGES/PathShapes.mo share/locale/es/LC_MESSAGES/PictureShape.mo +share/locale/es/LC_MESSAGES/PluginShape.mo +share/locale/es/LC_MESSAGES/ShapePlugin.mo share/locale/es/LC_MESSAGES/SpellCheckPlugin.mo share/locale/es/LC_MESSAGES/TableShape.mo share/locale/es/LC_MESSAGES/TextShape.mo share/locale/es/LC_MESSAGES/VariablesPlugin.mo share/locale/es/LC_MESSAGES/VideoShape.mo share/locale/es/LC_MESSAGES/desktop_koffice.mo share/locale/es/LC_MESSAGES/karbon.mo share/locale/es/LC_MESSAGES/kchart.mo share/locale/es/LC_MESSAGES/kexi.mo share/locale/es/LC_MESSAGES/kformula.mo share/locale/es/LC_MESSAGES/kocolorspaces.mo share/locale/es/LC_MESSAGES/koconverter.mo share/locale/es/LC_MESSAGES/koffice-defaulttools.mo share/locale/es/LC_MESSAGES/koffice-dockers.mo share/locale/es/LC_MESSAGES/koffice-simpletextedit.mo share/locale/es/LC_MESSAGES/koffice.mo share/locale/es/LC_MESSAGES/kofficefilters.mo share/locale/es/LC_MESSAGES/koproperty.mo share/locale/es/LC_MESSAGES/kounavail.mo share/locale/es/LC_MESSAGES/kplato.mo share/locale/es/LC_MESSAGES/kplatolibs.mo share/locale/es/LC_MESSAGES/kplatorcpsplugin.mo share/locale/es/LC_MESSAGES/kplatowork.mo share/locale/es/LC_MESSAGES/kpresenter.mo share/locale/es/LC_MESSAGES/krita.mo share/locale/es/LC_MESSAGES/krossmodulekplato.mo share/locale/es/LC_MESSAGES/krossmodulekspread.mo share/locale/es/LC_MESSAGES/krossmodulekword.mo share/locale/es/LC_MESSAGES/kscan_plugin.mo share/locale/es/LC_MESSAGES/kspread.mo share/locale/es/LC_MESSAGES/kspreadsolver.mo share/locale/es/LC_MESSAGES/kthesaurus.mo share/locale/es/LC_MESSAGES/kword.mo share/locale/es/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/es/thesaurus @dirrm share/doc/HTML/es/kspread @dirrm share/doc/HTML/es/kpresenter @dirrm share/doc/HTML/es/koffice +@dirrm share/doc/HTML/es/kivio @dirrm share/doc/HTML/es/kformula @dirrm share/doc/HTML/es/kchart @dirrm share/doc/HTML/es/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/calligra-l10n-es/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/editors/calligra-l10n-et/distinfo =================================================================== --- head/editors/calligra-l10n-et/distinfo (revision 271655) +++ head/editors/calligra-l10n-et/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-et-2.2.2.tar.bz2) = c857460c23c24a3a031dbdf740d9d08d0b74699874f01586ec5ea7630360851f -SIZE (KDE/koffice-l10n/koffice-l10n-et-2.2.2.tar.bz2) = 700518 +SHA256 (KDE/koffice-l10n/koffice-l10n-et-2.3.1.tar.bz2) = 1afdea159e43e0d2e1e4b6eff9307e53c6f42fea2dfb1ff23a8138f4792c4a5f +SIZE (KDE/koffice-l10n/koffice-l10n-et-2.3.1.tar.bz2) = 732850 Property changes on: head/editors/calligra-l10n-et/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-et/pkg-plist =================================================================== --- head/editors/calligra-l10n-et/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-et/pkg-plist (revision 271656) @@ -1,115 +1,127 @@ share/doc/HTML/et/karbon/common share/doc/HTML/et/karbon/index.cache.bz2 share/doc/HTML/et/karbon/index.docbook share/doc/HTML/et/kchart/common share/doc/HTML/et/kchart/index.cache.bz2 share/doc/HTML/et/kchart/index.docbook share/doc/HTML/et/kexi/basics.docbook share/doc/HTML/et/kexi/building.docbook share/doc/HTML/et/kexi/common share/doc/HTML/et/kexi/comparing.docbook share/doc/HTML/et/kexi/configuration.docbook share/doc/HTML/et/kexi/credits.docbook share/doc/HTML/et/kexi/database.docbook share/doc/HTML/et/kexi/designingforms.docbook share/doc/HTML/et/kexi/enteringdataintotables.docbook share/doc/HTML/et/kexi/enteringdatausingforms.docbook share/doc/HTML/et/kexi/index.cache.bz2 share/doc/HTML/et/kexi/index.docbook share/doc/HTML/et/kexi/intro.docbook share/doc/HTML/et/kexi/menus.docbook share/doc/HTML/et/kexi/querydesigning.docbook share/doc/HTML/et/kformula/common share/doc/HTML/et/kformula/index.cache.bz2 share/doc/HTML/et/kformula/index.docbook +share/doc/HTML/et/kivio/common +share/doc/HTML/et/kivio/credits.docbook +share/doc/HTML/et/kivio/index.cache.bz2 +share/doc/HTML/et/kivio/index.docbook +share/doc/HTML/et/kivio/introduction.docbook +share/doc/HTML/et/kivio/usage.docbook +share/doc/HTML/et/kivio/working.docbook share/doc/HTML/et/koffice/common share/doc/HTML/et/koffice/index.cache.bz2 share/doc/HTML/et/koffice/index.docbook share/doc/HTML/et/kpresenter/a11y.docbook share/doc/HTML/et/kpresenter/common share/doc/HTML/et/kpresenter/faq.docbook share/doc/HTML/et/kpresenter/great-presentations.docbook share/doc/HTML/et/kpresenter/guides.docbook share/doc/HTML/et/kpresenter/index.cache.bz2 share/doc/HTML/et/kpresenter/index.docbook share/doc/HTML/et/kpresenter/menus.docbook share/doc/HTML/et/kpresenter/options.docbook share/doc/HTML/et/kpresenter/screen.docbook share/doc/HTML/et/kpresenter/tutorial.docbook share/doc/HTML/et/kspread/a11y.docbook share/doc/HTML/et/kspread/advanced.docbook share/doc/HTML/et/kspread/basics.docbook share/doc/HTML/et/kspread/chart1.png share/doc/HTML/et/kspread/commands.docbook share/doc/HTML/et/kspread/common share/doc/HTML/et/kspread/config.docbook share/doc/HTML/et/kspread/configdialog.docbook share/doc/HTML/et/kspread/copy1.png share/doc/HTML/et/kspread/faq.docbook share/doc/HTML/et/kspread/format.docbook share/doc/HTML/et/kspread/importexport.docbook share/doc/HTML/et/kspread/index.cache.bz2 share/doc/HTML/et/kspread/index.docbook share/doc/HTML/et/kspread/shortcut1.png share/doc/HTML/et/kspread/shortcut2.png share/doc/HTML/et/kspread/sort1.png share/doc/HTML/et/kspread/starting1.png share/doc/HTML/et/thesaurus/common share/doc/HTML/et/thesaurus/index.cache.bz2 share/doc/HTML/et/thesaurus/index.docbook share/locale/et/LC_MESSAGES/ArtisticTextShape.mo share/locale/et/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/et/LC_MESSAGES/BarcodePlugin.mo share/locale/et/LC_MESSAGES/CalendarTool.mo share/locale/et/LC_MESSAGES/ChangecasePlugin.mo +share/locale/et/LC_MESSAGES/ChartPlugin.mo share/locale/et/LC_MESSAGES/ChartShape.mo +share/locale/et/LC_MESSAGES/CommentShape.mo share/locale/et/LC_MESSAGES/DivineProportion.mo share/locale/et/LC_MESSAGES/FormulaShape.mo -share/locale/et/LC_MESSAGES/FreOffice.mo share/locale/et/LC_MESSAGES/KarbonTools.mo share/locale/et/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/et/LC_MESSAGES/MusicShape.mo share/locale/et/LC_MESSAGES/ParagraphTool.mo share/locale/et/LC_MESSAGES/PathShapes.mo share/locale/et/LC_MESSAGES/PictureShape.mo +share/locale/et/LC_MESSAGES/PluginShape.mo +share/locale/et/LC_MESSAGES/ShapePlugin.mo share/locale/et/LC_MESSAGES/SpellCheckPlugin.mo share/locale/et/LC_MESSAGES/TableShape.mo share/locale/et/LC_MESSAGES/TextShape.mo share/locale/et/LC_MESSAGES/VariablesPlugin.mo share/locale/et/LC_MESSAGES/VideoShape.mo share/locale/et/LC_MESSAGES/desktop_koffice.mo share/locale/et/LC_MESSAGES/karbon.mo share/locale/et/LC_MESSAGES/kchart.mo share/locale/et/LC_MESSAGES/kexi.mo share/locale/et/LC_MESSAGES/kformula.mo share/locale/et/LC_MESSAGES/kocolorspaces.mo share/locale/et/LC_MESSAGES/koconverter.mo share/locale/et/LC_MESSAGES/koffice-defaulttools.mo share/locale/et/LC_MESSAGES/koffice-dockers.mo share/locale/et/LC_MESSAGES/koffice-simpletextedit.mo share/locale/et/LC_MESSAGES/koffice.mo share/locale/et/LC_MESSAGES/kofficefilters.mo share/locale/et/LC_MESSAGES/koproperty.mo share/locale/et/LC_MESSAGES/kounavail.mo share/locale/et/LC_MESSAGES/kplato.mo share/locale/et/LC_MESSAGES/kplatolibs.mo share/locale/et/LC_MESSAGES/kplatorcpsplugin.mo share/locale/et/LC_MESSAGES/kplatowork.mo share/locale/et/LC_MESSAGES/kpresenter.mo share/locale/et/LC_MESSAGES/krita.mo share/locale/et/LC_MESSAGES/krossmodulekplato.mo share/locale/et/LC_MESSAGES/krossmodulekspread.mo share/locale/et/LC_MESSAGES/krossmodulekword.mo share/locale/et/LC_MESSAGES/kscan_plugin.mo share/locale/et/LC_MESSAGES/kspread.mo share/locale/et/LC_MESSAGES/kspreadsolver.mo share/locale/et/LC_MESSAGES/kthesaurus.mo share/locale/et/LC_MESSAGES/kword.mo share/locale/et/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/et/thesaurus @dirrm share/doc/HTML/et/kspread @dirrm share/doc/HTML/et/kpresenter @dirrm share/doc/HTML/et/koffice +@dirrm share/doc/HTML/et/kivio @dirrm share/doc/HTML/et/kformula @dirrm share/doc/HTML/et/kexi @dirrm share/doc/HTML/et/kchart @dirrm share/doc/HTML/et/karbon Property changes on: head/editors/calligra-l10n-et/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/editors/calligra-l10n-it/distinfo =================================================================== --- head/editors/calligra-l10n-it/distinfo (revision 271655) +++ head/editors/calligra-l10n-it/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-it-2.2.2.tar.bz2) = 921f2d5ae5e96fb7050de23d7bce95373b3b6afd3161b4a7905ef59eba158f54 -SIZE (KDE/koffice-l10n/koffice-l10n-it-2.2.2.tar.bz2) = 680382 +SHA256 (KDE/koffice-l10n/koffice-l10n-it-2.3.1.tar.bz2) = 28968c68a511f49a1dad01b583a02344ee2999767ef77fe915f11ef35bc197aa +SIZE (KDE/koffice-l10n/koffice-l10n-it-2.3.1.tar.bz2) = 709310 Property changes on: head/editors/calligra-l10n-it/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-it/pkg-plist =================================================================== --- head/editors/calligra-l10n-it/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-it/pkg-plist (revision 271656) @@ -1,112 +1,121 @@ -share/apps/koffice/autocorrect/it.xml share/doc/HTML/it/karbon/common share/doc/HTML/it/karbon/index.cache.bz2 share/doc/HTML/it/karbon/index.docbook share/doc/HTML/it/kchart/common share/doc/HTML/it/kchart/index.cache.bz2 share/doc/HTML/it/kchart/index.docbook share/doc/HTML/it/kexi/basics.docbook share/doc/HTML/it/kexi/building.docbook share/doc/HTML/it/kexi/common share/doc/HTML/it/kexi/comparing.docbook share/doc/HTML/it/kexi/configuration.docbook share/doc/HTML/it/kexi/credits.docbook share/doc/HTML/it/kexi/database.docbook share/doc/HTML/it/kexi/designingforms.docbook share/doc/HTML/it/kexi/enteringdataintotables.docbook share/doc/HTML/it/kexi/enteringdatausingforms.docbook share/doc/HTML/it/kexi/index.cache.bz2 share/doc/HTML/it/kexi/index.docbook share/doc/HTML/it/kexi/intro.docbook share/doc/HTML/it/kexi/menus.docbook share/doc/HTML/it/kexi/querydesigning.docbook share/doc/HTML/it/kformula/common share/doc/HTML/it/kformula/index.cache.bz2 share/doc/HTML/it/kformula/index.docbook +share/doc/HTML/it/kivio/common +share/doc/HTML/it/kivio/credits.docbook +share/doc/HTML/it/kivio/index.cache.bz2 +share/doc/HTML/it/kivio/index.docbook +share/doc/HTML/it/kivio/introduction.docbook +share/doc/HTML/it/kivio/usage.docbook +share/doc/HTML/it/kivio/working.docbook share/doc/HTML/it/koffice/common share/doc/HTML/it/koffice/index.cache.bz2 share/doc/HTML/it/koffice/index.docbook share/doc/HTML/it/kpresenter/a11y.docbook share/doc/HTML/it/kpresenter/common share/doc/HTML/it/kpresenter/faq.docbook share/doc/HTML/it/kpresenter/great-presentations.docbook share/doc/HTML/it/kpresenter/guides.docbook share/doc/HTML/it/kpresenter/index.cache.bz2 share/doc/HTML/it/kpresenter/index.docbook share/doc/HTML/it/kpresenter/menus.docbook share/doc/HTML/it/kpresenter/options.docbook share/doc/HTML/it/kpresenter/screen.docbook share/doc/HTML/it/kpresenter/tutorial.docbook share/doc/HTML/it/kspread/a11y.docbook share/doc/HTML/it/kspread/advanced.docbook share/doc/HTML/it/kspread/basics.docbook share/doc/HTML/it/kspread/commands.docbook share/doc/HTML/it/kspread/common share/doc/HTML/it/kspread/config.docbook share/doc/HTML/it/kspread/configdialog.docbook share/doc/HTML/it/kspread/faq.docbook share/doc/HTML/it/kspread/format.docbook share/doc/HTML/it/kspread/importexport.docbook share/doc/HTML/it/kspread/index.cache.bz2 share/doc/HTML/it/kspread/index.docbook share/doc/HTML/it/thesaurus/common share/doc/HTML/it/thesaurus/index.cache.bz2 share/doc/HTML/it/thesaurus/index.docbook share/locale/it/LC_MESSAGES/ArtisticTextShape.mo share/locale/it/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/it/LC_MESSAGES/BarcodePlugin.mo share/locale/it/LC_MESSAGES/CalendarTool.mo share/locale/it/LC_MESSAGES/ChangecasePlugin.mo +share/locale/it/LC_MESSAGES/ChartPlugin.mo share/locale/it/LC_MESSAGES/ChartShape.mo +share/locale/it/LC_MESSAGES/CommentShape.mo share/locale/it/LC_MESSAGES/DivineProportion.mo share/locale/it/LC_MESSAGES/FormulaShape.mo -share/locale/it/LC_MESSAGES/FreOffice.mo share/locale/it/LC_MESSAGES/KarbonTools.mo share/locale/it/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/it/LC_MESSAGES/MusicShape.mo share/locale/it/LC_MESSAGES/ParagraphTool.mo share/locale/it/LC_MESSAGES/PathShapes.mo share/locale/it/LC_MESSAGES/PictureShape.mo +share/locale/it/LC_MESSAGES/PluginShape.mo +share/locale/it/LC_MESSAGES/ShapePlugin.mo share/locale/it/LC_MESSAGES/SpellCheckPlugin.mo share/locale/it/LC_MESSAGES/TableShape.mo share/locale/it/LC_MESSAGES/TextShape.mo share/locale/it/LC_MESSAGES/VariablesPlugin.mo share/locale/it/LC_MESSAGES/VideoShape.mo share/locale/it/LC_MESSAGES/desktop_koffice.mo share/locale/it/LC_MESSAGES/karbon.mo share/locale/it/LC_MESSAGES/kchart.mo share/locale/it/LC_MESSAGES/kexi.mo share/locale/it/LC_MESSAGES/kformula.mo share/locale/it/LC_MESSAGES/kocolorspaces.mo share/locale/it/LC_MESSAGES/koconverter.mo share/locale/it/LC_MESSAGES/koffice-defaulttools.mo share/locale/it/LC_MESSAGES/koffice-dockers.mo share/locale/it/LC_MESSAGES/koffice-simpletextedit.mo share/locale/it/LC_MESSAGES/koffice.mo share/locale/it/LC_MESSAGES/kofficefilters.mo share/locale/it/LC_MESSAGES/koproperty.mo share/locale/it/LC_MESSAGES/kounavail.mo share/locale/it/LC_MESSAGES/kplato.mo share/locale/it/LC_MESSAGES/kplatolibs.mo share/locale/it/LC_MESSAGES/kplatorcpsplugin.mo share/locale/it/LC_MESSAGES/kplatowork.mo share/locale/it/LC_MESSAGES/kpresenter.mo share/locale/it/LC_MESSAGES/krita.mo share/locale/it/LC_MESSAGES/krossmodulekplato.mo share/locale/it/LC_MESSAGES/krossmodulekspread.mo share/locale/it/LC_MESSAGES/krossmodulekword.mo share/locale/it/LC_MESSAGES/kscan_plugin.mo share/locale/it/LC_MESSAGES/kspread.mo share/locale/it/LC_MESSAGES/kspreadsolver.mo share/locale/it/LC_MESSAGES/kthesaurus.mo share/locale/it/LC_MESSAGES/kword.mo share/locale/it/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/it/thesaurus @dirrm share/doc/HTML/it/kspread @dirrm share/doc/HTML/it/kpresenter @dirrm share/doc/HTML/it/koffice +@dirrm share/doc/HTML/it/kivio @dirrm share/doc/HTML/it/kformula @dirrm share/doc/HTML/it/kexi @dirrm share/doc/HTML/it/kchart @dirrm share/doc/HTML/it/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/calligra-l10n-it/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property Index: head/editors/calligra-l10n-kk/distinfo =================================================================== --- head/editors/calligra-l10n-kk/distinfo (revision 271655) +++ head/editors/calligra-l10n-kk/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-kk-2.2.2.tar.bz2) = a5dac93be9fda80bc9096b47f85e86073e5cc91809bbf6e48ce197b8f1b9867c -SIZE (KDE/koffice-l10n/koffice-l10n-kk-2.2.2.tar.bz2) = 323371 +SHA256 (KDE/koffice-l10n/koffice-l10n-kk-2.3.1.tar.bz2) = 5693c247306be4de0eabdb17abfb834053914ca9d9af65d6a194918dce40ab8f +SIZE (KDE/koffice-l10n/koffice-l10n-kk-2.3.1.tar.bz2) = 333063 Property changes on: head/editors/calligra-l10n-kk/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/editors/calligra-l10n-nb/distinfo =================================================================== --- head/editors/calligra-l10n-nb/distinfo (revision 271655) +++ head/editors/calligra-l10n-nb/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-nb-2.2.2.tar.bz2) = 299f406d52bb0230e868044a15fe99a743b3683648be84289b9e033f854a5ba7 -SIZE (KDE/koffice-l10n/koffice-l10n-nb-2.2.2.tar.bz2) = 319304 +SHA256 (KDE/koffice-l10n/koffice-l10n-nb-2.3.1.tar.bz2) = b4cdaf535836c7cbbf8c86661e564fa6a32a2f157e846c9bd76294dc004b0bc8 +SIZE (KDE/koffice-l10n/koffice-l10n-nb-2.3.1.tar.bz2) = 329384 Property changes on: head/editors/calligra-l10n-nb/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-nb/pkg-plist =================================================================== --- head/editors/calligra-l10n-nb/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-nb/pkg-plist (revision 271656) @@ -1,51 +1,55 @@ share/apps/koffice/autocorrect/nb.xml share/locale/nb/LC_MESSAGES/ArtisticTextShape.mo share/locale/nb/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/nb/LC_MESSAGES/BarcodePlugin.mo share/locale/nb/LC_MESSAGES/CalendarTool.mo share/locale/nb/LC_MESSAGES/ChangecasePlugin.mo +share/locale/nb/LC_MESSAGES/ChartPlugin.mo share/locale/nb/LC_MESSAGES/ChartShape.mo +share/locale/nb/LC_MESSAGES/CommentShape.mo share/locale/nb/LC_MESSAGES/DivineProportion.mo share/locale/nb/LC_MESSAGES/FormulaShape.mo -share/locale/nb/LC_MESSAGES/FreOffice.mo share/locale/nb/LC_MESSAGES/KarbonTools.mo share/locale/nb/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/nb/LC_MESSAGES/MusicShape.mo share/locale/nb/LC_MESSAGES/ParagraphTool.mo share/locale/nb/LC_MESSAGES/PathShapes.mo share/locale/nb/LC_MESSAGES/PictureShape.mo +share/locale/nb/LC_MESSAGES/PluginShape.mo +share/locale/nb/LC_MESSAGES/ShapePlugin.mo share/locale/nb/LC_MESSAGES/SpellCheckPlugin.mo share/locale/nb/LC_MESSAGES/TableShape.mo share/locale/nb/LC_MESSAGES/TextShape.mo share/locale/nb/LC_MESSAGES/VariablesPlugin.mo share/locale/nb/LC_MESSAGES/VideoShape.mo share/locale/nb/LC_MESSAGES/desktop_koffice.mo share/locale/nb/LC_MESSAGES/karbon.mo share/locale/nb/LC_MESSAGES/kchart.mo share/locale/nb/LC_MESSAGES/kexi.mo share/locale/nb/LC_MESSAGES/kformula.mo share/locale/nb/LC_MESSAGES/kocolorspaces.mo share/locale/nb/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/koffice-defaulttools.mo share/locale/nb/LC_MESSAGES/koffice-dockers.mo share/locale/nb/LC_MESSAGES/koffice-simpletextedit.mo share/locale/nb/LC_MESSAGES/koffice.mo share/locale/nb/LC_MESSAGES/kofficefilters.mo share/locale/nb/LC_MESSAGES/koproperty.mo share/locale/nb/LC_MESSAGES/kounavail.mo share/locale/nb/LC_MESSAGES/kplato.mo share/locale/nb/LC_MESSAGES/kplatolibs.mo share/locale/nb/LC_MESSAGES/kplatorcpsplugin.mo share/locale/nb/LC_MESSAGES/kplatowork.mo share/locale/nb/LC_MESSAGES/kpresenter.mo share/locale/nb/LC_MESSAGES/krita.mo share/locale/nb/LC_MESSAGES/krossmodulekplato.mo share/locale/nb/LC_MESSAGES/krossmodulekspread.mo share/locale/nb/LC_MESSAGES/krossmodulekword.mo share/locale/nb/LC_MESSAGES/kscan_plugin.mo share/locale/nb/LC_MESSAGES/kspread.mo share/locale/nb/LC_MESSAGES/kspreadsolver.mo share/locale/nb/LC_MESSAGES/kthesaurus.mo share/locale/nb/LC_MESSAGES/kword.mo share/locale/nb/LC_MESSAGES/thesaurus_tool.mo -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice +@dirrm share/apps/koffice/autocorrect +@dirrm share/apps/koffice Property changes on: head/editors/calligra-l10n-nb/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/editors/calligra-l10n-nds/distinfo =================================================================== --- head/editors/calligra-l10n-nds/distinfo (revision 271655) +++ head/editors/calligra-l10n-nds/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-nds-2.2.2.tar.bz2) = bb110c368203d0a2de8e60baa9006bc5d55dc296e75378d72a5ae0a18ec17da6 -SIZE (KDE/koffice-l10n/koffice-l10n-nds-2.2.2.tar.bz2) = 960450 +SHA256 (KDE/koffice-l10n/koffice-l10n-nds-2.3.1.tar.bz2) = 0d0328d7a9595869960eb2aa52d3b4ca4eefa95a9ccd205fea8ae7316d472fab +SIZE (KDE/koffice-l10n/koffice-l10n-nds-2.3.1.tar.bz2) = 971559 Property changes on: head/editors/calligra-l10n-nds/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/editors/calligra-l10n-nds/pkg-plist =================================================================== --- head/editors/calligra-l10n-nds/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-nds/pkg-plist (revision 271656) @@ -1,51 +1,52 @@ -share/apps/koffice/autocorrect/nds.xml share/locale/nds/LC_MESSAGES/ArtisticTextShape.mo share/locale/nds/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/nds/LC_MESSAGES/BarcodePlugin.mo share/locale/nds/LC_MESSAGES/CalendarTool.mo share/locale/nds/LC_MESSAGES/ChangecasePlugin.mo +share/locale/nds/LC_MESSAGES/ChartPlugin.mo share/locale/nds/LC_MESSAGES/ChartShape.mo +share/locale/nds/LC_MESSAGES/CommentShape.mo share/locale/nds/LC_MESSAGES/DivineProportion.mo share/locale/nds/LC_MESSAGES/FormulaShape.mo -share/locale/nds/LC_MESSAGES/FreOffice.mo share/locale/nds/LC_MESSAGES/KarbonTools.mo share/locale/nds/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/nds/LC_MESSAGES/MusicShape.mo share/locale/nds/LC_MESSAGES/ParagraphTool.mo share/locale/nds/LC_MESSAGES/PathShapes.mo share/locale/nds/LC_MESSAGES/PictureShape.mo +share/locale/nds/LC_MESSAGES/PluginShape.mo +share/locale/nds/LC_MESSAGES/ShapePlugin.mo share/locale/nds/LC_MESSAGES/SpellCheckPlugin.mo share/locale/nds/LC_MESSAGES/TableShape.mo share/locale/nds/LC_MESSAGES/TextShape.mo share/locale/nds/LC_MESSAGES/VariablesPlugin.mo share/locale/nds/LC_MESSAGES/VideoShape.mo share/locale/nds/LC_MESSAGES/desktop_koffice.mo share/locale/nds/LC_MESSAGES/karbon.mo share/locale/nds/LC_MESSAGES/kchart.mo share/locale/nds/LC_MESSAGES/kexi.mo share/locale/nds/LC_MESSAGES/kformula.mo share/locale/nds/LC_MESSAGES/kocolorspaces.mo share/locale/nds/LC_MESSAGES/koconverter.mo share/locale/nds/LC_MESSAGES/koffice-defaulttools.mo share/locale/nds/LC_MESSAGES/koffice-dockers.mo share/locale/nds/LC_MESSAGES/koffice-simpletextedit.mo share/locale/nds/LC_MESSAGES/koffice.mo share/locale/nds/LC_MESSAGES/kofficefilters.mo share/locale/nds/LC_MESSAGES/koproperty.mo share/locale/nds/LC_MESSAGES/kounavail.mo share/locale/nds/LC_MESSAGES/kplato.mo share/locale/nds/LC_MESSAGES/kplatolibs.mo share/locale/nds/LC_MESSAGES/kplatorcpsplugin.mo share/locale/nds/LC_MESSAGES/kplatowork.mo share/locale/nds/LC_MESSAGES/kpresenter.mo share/locale/nds/LC_MESSAGES/krita.mo share/locale/nds/LC_MESSAGES/krossmodulekplato.mo share/locale/nds/LC_MESSAGES/krossmodulekspread.mo share/locale/nds/LC_MESSAGES/krossmodulekword.mo share/locale/nds/LC_MESSAGES/kscan_plugin.mo share/locale/nds/LC_MESSAGES/kspread.mo share/locale/nds/LC_MESSAGES/kspreadsolver.mo share/locale/nds/LC_MESSAGES/kthesaurus.mo share/locale/nds/LC_MESSAGES/kword.mo share/locale/nds/LC_MESSAGES/thesaurus_tool.mo -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/calligra-l10n-nds/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/editors/calligra-l10n-nl/distinfo =================================================================== --- head/editors/calligra-l10n-nl/distinfo (revision 271655) +++ head/editors/calligra-l10n-nl/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-nl-2.2.2.tar.bz2) = c304a1ff3f4cd4582057bc6585ba6acdfca4759bffa81df95301d6da61fb72f4 -SIZE (KDE/koffice-l10n/koffice-l10n-nl-2.2.2.tar.bz2) = 2751492 +SHA256 (KDE/koffice-l10n/koffice-l10n-nl-2.3.1.tar.bz2) = 13785ed2b38303f5dc3e98b7d133abdf350d2d66453682583ed57b7e38f0f810 +SIZE (KDE/koffice-l10n/koffice-l10n-nl-2.3.1.tar.bz2) = 2789033 Property changes on: head/editors/calligra-l10n-nl/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-nl/pkg-plist =================================================================== --- head/editors/calligra-l10n-nl/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-nl/pkg-plist (revision 271656) @@ -1,212 +1,224 @@ share/doc/HTML/nl/karbon/common share/doc/HTML/nl/karbon/index.cache.bz2 share/doc/HTML/nl/karbon/index.docbook share/doc/HTML/nl/kchart/common share/doc/HTML/nl/kchart/index.cache.bz2 share/doc/HTML/nl/kchart/index.docbook share/doc/HTML/nl/kexi/basics.docbook share/doc/HTML/nl/kexi/building.docbook share/doc/HTML/nl/kexi/common share/doc/HTML/nl/kexi/comparing.docbook share/doc/HTML/nl/kexi/configuration.docbook share/doc/HTML/nl/kexi/credits.docbook share/doc/HTML/nl/kexi/database.docbook share/doc/HTML/nl/kexi/designingforms.docbook share/doc/HTML/nl/kexi/enteringdataintotables.docbook share/doc/HTML/nl/kexi/enteringdatausingforms.docbook share/doc/HTML/nl/kexi/index.cache.bz2 share/doc/HTML/nl/kexi/index.docbook share/doc/HTML/nl/kexi/intro.docbook share/doc/HTML/nl/kexi/menus.docbook share/doc/HTML/nl/kexi/querydesigning.docbook share/doc/HTML/nl/kformula/additional_fonts1.png share/doc/HTML/nl/kformula/ambiguous-string.png share/doc/HTML/nl/kformula/common share/doc/HTML/nl/kformula/correct_index_location.png share/doc/HTML/nl/kformula/definite_integral.png share/doc/HTML/nl/kformula/file-toolbar.png share/doc/HTML/nl/kformula/file-toolbar2.png share/doc/HTML/nl/kformula/green1.png share/doc/HTML/nl/kformula/green2.png share/doc/HTML/nl/kformula/greens.png share/doc/HTML/nl/kformula/incorrect_index_location.png share/doc/HTML/nl/kformula/index.cache.bz2 share/doc/HTML/nl/kformula/index.docbook share/doc/HTML/nl/kformula/index_smear.png share/doc/HTML/nl/kformula/kfontinst-right.png share/doc/HTML/nl/kformula/kfontinst1.png share/doc/HTML/nl/kformula/kfontinst2.png share/doc/HTML/nl/kformula/kfontinst3.png share/doc/HTML/nl/kformula/kfontinst4.png share/doc/HTML/nl/kformula/kfontinst5.png share/doc/HTML/nl/kformula/lower-index.png share/doc/HTML/nl/kformula/matrix-view.png share/doc/HTML/nl/kformula/matrix.png share/doc/HTML/nl/kformula/path-integral.png share/doc/HTML/nl/kformula/rk-edit0.png share/doc/HTML/nl/kformula/rk-edit1.png share/doc/HTML/nl/kformula/rk-edit2.png share/doc/HTML/nl/kformula/scilab-edit.png share/doc/HTML/nl/kformula/scilab.png share/doc/HTML/nl/kformula/shortcut0.png share/doc/HTML/nl/kformula/shortcut1.png share/doc/HTML/nl/kformula/sin.png share/doc/HTML/nl/kformula/toolbars.png share/doc/HTML/nl/kformula/upper-index.png +share/doc/HTML/nl/kivio/common +share/doc/HTML/nl/kivio/credits.docbook +share/doc/HTML/nl/kivio/index.cache.bz2 +share/doc/HTML/nl/kivio/index.docbook +share/doc/HTML/nl/kivio/introduction.docbook +share/doc/HTML/nl/kivio/usage.docbook +share/doc/HTML/nl/kivio/working.docbook share/doc/HTML/nl/koffice/common share/doc/HTML/nl/koffice/index.cache.bz2 share/doc/HTML/nl/koffice/index.docbook share/doc/HTML/nl/kpresenter/a11y.docbook share/doc/HTML/nl/kpresenter/barstyle1.png share/doc/HTML/nl/kpresenter/barstyle2.png share/doc/HTML/nl/kpresenter/barstyle3.png share/doc/HTML/nl/kpresenter/barstyle4.png share/doc/HTML/nl/kpresenter/barstyle5.png share/doc/HTML/nl/kpresenter/barstyle6.png share/doc/HTML/nl/kpresenter/barstyle7.png share/doc/HTML/nl/kpresenter/common share/doc/HTML/nl/kpresenter/faq.docbook share/doc/HTML/nl/kpresenter/great-presentations.docbook share/doc/HTML/nl/kpresenter/guides.docbook share/doc/HTML/nl/kpresenter/htmlshow00.png share/doc/HTML/nl/kpresenter/htmlshow01.png share/doc/HTML/nl/kpresenter/htmlshow02.png share/doc/HTML/nl/kpresenter/htmlshow02a.png share/doc/HTML/nl/kpresenter/htmlshow03.png share/doc/HTML/nl/kpresenter/htmlshow04.png share/doc/HTML/nl/kpresenter/htmlshow05.png share/doc/HTML/nl/kpresenter/htmlshow07.png share/doc/HTML/nl/kpresenter/index.cache.bz2 share/doc/HTML/nl/kpresenter/index.docbook share/doc/HTML/nl/kpresenter/menus.docbook share/doc/HTML/nl/kpresenter/msexport1.png share/doc/HTML/nl/kpresenter/msexport2.png share/doc/HTML/nl/kpresenter/msexport3.png share/doc/HTML/nl/kpresenter/msexport4.png share/doc/HTML/nl/kpresenter/options.docbook share/doc/HTML/nl/kpresenter/screen.docbook share/doc/HTML/nl/kpresenter/settings01.png share/doc/HTML/nl/kpresenter/settings03.png share/doc/HTML/nl/kpresenter/settings04.png share/doc/HTML/nl/kpresenter/settings05.png share/doc/HTML/nl/kpresenter/settings06.png share/doc/HTML/nl/kpresenter/template02.png share/doc/HTML/nl/kpresenter/template03.png share/doc/HTML/nl/kpresenter/template04.png share/doc/HTML/nl/kpresenter/template05.png share/doc/HTML/nl/kpresenter/template06.png share/doc/HTML/nl/kpresenter/template07.png share/doc/HTML/nl/kpresenter/textmenu01.png share/doc/HTML/nl/kpresenter/textmenu02.png share/doc/HTML/nl/kpresenter/textmenu03.png share/doc/HTML/nl/kpresenter/textmenu03a.png share/doc/HTML/nl/kpresenter/textmenu04.png share/doc/HTML/nl/kpresenter/toolsmenu01.png share/doc/HTML/nl/kpresenter/tut01.png share/doc/HTML/nl/kpresenter/tut02.png share/doc/HTML/nl/kpresenter/tut03.png share/doc/HTML/nl/kpresenter/tut04.png share/doc/HTML/nl/kpresenter/tut05.png share/doc/HTML/nl/kpresenter/tut06.png share/doc/HTML/nl/kpresenter/tut07.png share/doc/HTML/nl/kpresenter/tut08.png share/doc/HTML/nl/kpresenter/tut09.png share/doc/HTML/nl/kpresenter/tut10.png share/doc/HTML/nl/kpresenter/tut11.png share/doc/HTML/nl/kpresenter/tut12.png share/doc/HTML/nl/kpresenter/tut13.png share/doc/HTML/nl/kpresenter/tut14.png share/doc/HTML/nl/kpresenter/tut15.png share/doc/HTML/nl/kpresenter/tut16.png share/doc/HTML/nl/kpresenter/tut17.png share/doc/HTML/nl/kpresenter/tut18.png share/doc/HTML/nl/kpresenter/tut19.png share/doc/HTML/nl/kpresenter/tut20.png share/doc/HTML/nl/kpresenter/tut21.png share/doc/HTML/nl/kpresenter/tut22.png share/doc/HTML/nl/kpresenter/tut23.png share/doc/HTML/nl/kpresenter/tutorial.docbook share/doc/HTML/nl/kspread/a11y.docbook share/doc/HTML/nl/kspread/advanced.docbook share/doc/HTML/nl/kspread/basics.docbook share/doc/HTML/nl/kspread/celformat0.png share/doc/HTML/nl/kspread/celformat1.png share/doc/HTML/nl/kspread/celformat2.png share/doc/HTML/nl/kspread/celformat3.png share/doc/HTML/nl/kspread/celformat4.png share/doc/HTML/nl/kspread/celformat5.png share/doc/HTML/nl/kspread/chart1.png share/doc/HTML/nl/kspread/commands.docbook share/doc/HTML/nl/kspread/common share/doc/HTML/nl/kspread/config.docbook share/doc/HTML/nl/kspread/configdialog.docbook share/doc/HTML/nl/kspread/copy1.png share/doc/HTML/nl/kspread/faq.docbook share/doc/HTML/nl/kspread/format.docbook share/doc/HTML/nl/kspread/importexport.docbook share/doc/HTML/nl/kspread/index.cache.bz2 share/doc/HTML/nl/kspread/index.docbook share/doc/HTML/nl/kspread/shortcut1.png share/doc/HTML/nl/kspread/shortcut2.png share/doc/HTML/nl/kspread/shortcut3.png share/doc/HTML/nl/kspread/sort1.png share/doc/HTML/nl/kspread/starting1.png share/doc/HTML/nl/thesaurus/common share/doc/HTML/nl/thesaurus/index.cache.bz2 share/doc/HTML/nl/thesaurus/index.docbook share/locale/nl/LC_MESSAGES/ArtisticTextShape.mo share/locale/nl/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/nl/LC_MESSAGES/BarcodePlugin.mo share/locale/nl/LC_MESSAGES/CalendarTool.mo share/locale/nl/LC_MESSAGES/ChangecasePlugin.mo +share/locale/nl/LC_MESSAGES/ChartPlugin.mo share/locale/nl/LC_MESSAGES/ChartShape.mo +share/locale/nl/LC_MESSAGES/CommentShape.mo share/locale/nl/LC_MESSAGES/DivineProportion.mo share/locale/nl/LC_MESSAGES/FormulaShape.mo -share/locale/nl/LC_MESSAGES/FreOffice.mo share/locale/nl/LC_MESSAGES/KarbonTools.mo share/locale/nl/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/nl/LC_MESSAGES/MusicShape.mo share/locale/nl/LC_MESSAGES/ParagraphTool.mo share/locale/nl/LC_MESSAGES/PathShapes.mo share/locale/nl/LC_MESSAGES/PictureShape.mo +share/locale/nl/LC_MESSAGES/PluginShape.mo +share/locale/nl/LC_MESSAGES/ShapePlugin.mo share/locale/nl/LC_MESSAGES/SpellCheckPlugin.mo share/locale/nl/LC_MESSAGES/TableShape.mo share/locale/nl/LC_MESSAGES/TextShape.mo share/locale/nl/LC_MESSAGES/VariablesPlugin.mo share/locale/nl/LC_MESSAGES/VideoShape.mo share/locale/nl/LC_MESSAGES/desktop_koffice.mo share/locale/nl/LC_MESSAGES/karbon.mo share/locale/nl/LC_MESSAGES/kchart.mo share/locale/nl/LC_MESSAGES/kexi.mo share/locale/nl/LC_MESSAGES/kformula.mo share/locale/nl/LC_MESSAGES/kocolorspaces.mo share/locale/nl/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/koffice-defaulttools.mo share/locale/nl/LC_MESSAGES/koffice-dockers.mo share/locale/nl/LC_MESSAGES/koffice-simpletextedit.mo share/locale/nl/LC_MESSAGES/koffice.mo share/locale/nl/LC_MESSAGES/kofficefilters.mo share/locale/nl/LC_MESSAGES/koproperty.mo share/locale/nl/LC_MESSAGES/kounavail.mo share/locale/nl/LC_MESSAGES/kplato.mo share/locale/nl/LC_MESSAGES/kplatolibs.mo share/locale/nl/LC_MESSAGES/kplatorcpsplugin.mo share/locale/nl/LC_MESSAGES/kplatowork.mo share/locale/nl/LC_MESSAGES/kpresenter.mo share/locale/nl/LC_MESSAGES/krita.mo share/locale/nl/LC_MESSAGES/krossmodulekplato.mo share/locale/nl/LC_MESSAGES/krossmodulekspread.mo share/locale/nl/LC_MESSAGES/krossmodulekword.mo share/locale/nl/LC_MESSAGES/kscan_plugin.mo share/locale/nl/LC_MESSAGES/kspread.mo share/locale/nl/LC_MESSAGES/kspreadsolver.mo share/locale/nl/LC_MESSAGES/kthesaurus.mo share/locale/nl/LC_MESSAGES/kword.mo share/locale/nl/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/nl/thesaurus @dirrm share/doc/HTML/nl/kspread @dirrm share/doc/HTML/nl/kpresenter @dirrm share/doc/HTML/nl/koffice +@dirrm share/doc/HTML/nl/kivio @dirrm share/doc/HTML/nl/kformula @dirrm share/doc/HTML/nl/kexi @dirrm share/doc/HTML/nl/kchart @dirrm share/doc/HTML/nl/karbon Property changes on: head/editors/calligra-l10n-nl/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/editors/calligra-l10n-sv/distinfo =================================================================== --- head/editors/calligra-l10n-sv/distinfo (revision 271655) +++ head/editors/calligra-l10n-sv/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-sv-2.2.2.tar.bz2) = a902a61469be30dcb76c128d577e0e24243cd8bb8a0706b4dc6fc637568463e3 -SIZE (KDE/koffice-l10n/koffice-l10n-sv-2.2.2.tar.bz2) = 2414809 +SHA256 (KDE/koffice-l10n/koffice-l10n-sv-2.3.1.tar.bz2) = 556dd84f3db05ac890888f661f742afe7ac40252bf5d1ff76ab03aee701bde6f +SIZE (KDE/koffice-l10n/koffice-l10n-sv-2.3.1.tar.bz2) = 2447893 Property changes on: head/editors/calligra-l10n-sv/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/calligra-l10n-sv/pkg-plist =================================================================== --- head/editors/calligra-l10n-sv/pkg-plist (revision 271655) +++ head/editors/calligra-l10n-sv/pkg-plist (revision 271656) @@ -1,264 +1,276 @@ share/doc/HTML/sv/karbon/common share/doc/HTML/sv/karbon/index.cache.bz2 share/doc/HTML/sv/karbon/index.docbook share/doc/HTML/sv/kchart/common share/doc/HTML/sv/kchart/index.cache.bz2 share/doc/HTML/sv/kchart/index.docbook share/doc/HTML/sv/kchart/kchart-config1.png share/doc/HTML/sv/kchart/kchart-config2.png share/doc/HTML/sv/kchart/kchart-config3.png share/doc/HTML/sv/kchart/kchart-config4.png share/doc/HTML/sv/kchart/kchart-config5.png share/doc/HTML/sv/kchart/kchart-config6.png share/doc/HTML/sv/kchart/kchart-config7.png share/doc/HTML/sv/kchart/kchart-config8.png share/doc/HTML/sv/kchart/kchart-dataeditor.png share/doc/HTML/sv/kchart/kchart-default.png share/doc/HTML/sv/kchart/kchart-example1-1.png share/doc/HTML/sv/kchart/kchart-example1-2.png share/doc/HTML/sv/kchart/kchart-example1-3.png share/doc/HTML/sv/kchart/kchart-example1-4.png share/doc/HTML/sv/kchart/kchart-example1-5.png share/doc/HTML/sv/kchart/kchart-example1-6.png share/doc/HTML/sv/kchart/kchart-example1-7.png share/doc/HTML/sv/kchart/kchart-example1-8.png share/doc/HTML/sv/kchart/kchart-example1-9.png share/doc/HTML/sv/kchart/kchart-kspread-bar.png share/doc/HTML/sv/kchart/kchart-kspread.png share/doc/HTML/sv/kchart/kchart-startupdialog.png share/doc/HTML/sv/kchart/kchart-wizard0.png share/doc/HTML/sv/kchart/kchart-wizard1.png share/doc/HTML/sv/kchart/kchart-wizard2.png share/doc/HTML/sv/kchart/kchart-wizard3.png share/doc/HTML/sv/kchart/kchart-wizard4.png share/doc/HTML/sv/kchart/shortcut.png share/doc/HTML/sv/kchart/toolbars.png share/doc/HTML/sv/kexi/basics.docbook share/doc/HTML/sv/kexi/building.docbook share/doc/HTML/sv/kexi/common share/doc/HTML/sv/kexi/comparing.docbook share/doc/HTML/sv/kexi/configuration.docbook share/doc/HTML/sv/kexi/contact-example.png share/doc/HTML/sv/kexi/credits.docbook share/doc/HTML/sv/kexi/database.docbook share/doc/HTML/sv/kexi/designingforms.docbook share/doc/HTML/sv/kexi/enteringdataintotables.docbook share/doc/HTML/sv/kexi/enteringdatausingforms.docbook share/doc/HTML/sv/kexi/index.cache.bz2 share/doc/HTML/sv/kexi/index.docbook share/doc/HTML/sv/kexi/intro.docbook share/doc/HTML/sv/kexi/menus.docbook share/doc/HTML/sv/kexi/querydesigning.docbook share/doc/HTML/sv/kformula/ambiguous-string.png share/doc/HTML/sv/kformula/common share/doc/HTML/sv/kformula/green1.png share/doc/HTML/sv/kformula/green2.png share/doc/HTML/sv/kformula/index.cache.bz2 share/doc/HTML/sv/kformula/index.docbook share/doc/HTML/sv/kformula/kfontinst1.png share/doc/HTML/sv/kformula/kfontinst2.png share/doc/HTML/sv/kformula/kfontinst3.png share/doc/HTML/sv/kformula/kfontinst4.png share/doc/HTML/sv/kformula/kfontinst5.png share/doc/HTML/sv/kformula/kfontinst6.png share/doc/HTML/sv/kformula/rk-edit0.png share/doc/HTML/sv/kformula/rk-edit1.png share/doc/HTML/sv/kformula/rk-edit2.png share/doc/HTML/sv/kformula/scilab-edit.png share/doc/HTML/sv/kformula/shortcut0.png share/doc/HTML/sv/kformula/shortcut1.png share/doc/HTML/sv/kformula/toolbars.png +share/doc/HTML/sv/kivio/common +share/doc/HTML/sv/kivio/credits.docbook +share/doc/HTML/sv/kivio/index.cache.bz2 +share/doc/HTML/sv/kivio/index.docbook +share/doc/HTML/sv/kivio/introduction.docbook +share/doc/HTML/sv/kivio/usage.docbook +share/doc/HTML/sv/kivio/working.docbook share/doc/HTML/sv/koffice/common share/doc/HTML/sv/koffice/index.cache.bz2 share/doc/HTML/sv/koffice/index.docbook share/doc/HTML/sv/kpresenter/a11y.docbook share/doc/HTML/sv/kpresenter/autocorrection1.png share/doc/HTML/sv/kpresenter/autocorrection2.png share/doc/HTML/sv/kpresenter/autocorrection3.png share/doc/HTML/sv/kpresenter/autocorrection4.png share/doc/HTML/sv/kpresenter/barstyle1.png share/doc/HTML/sv/kpresenter/barstyle3.png share/doc/HTML/sv/kpresenter/barstyle4.png share/doc/HTML/sv/kpresenter/barstyle5.png share/doc/HTML/sv/kpresenter/barstyle6.png share/doc/HTML/sv/kpresenter/barstyle7.png share/doc/HTML/sv/kpresenter/changeformat.png share/doc/HTML/sv/kpresenter/common share/doc/HTML/sv/kpresenter/completion.png share/doc/HTML/sv/kpresenter/configure1.png share/doc/HTML/sv/kpresenter/configure2.png share/doc/HTML/sv/kpresenter/configure3.png share/doc/HTML/sv/kpresenter/configure4.png share/doc/HTML/sv/kpresenter/configure5.png share/doc/HTML/sv/kpresenter/configure6.png share/doc/HTML/sv/kpresenter/configure6b.png share/doc/HTML/sv/kpresenter/configure6c.png share/doc/HTML/sv/kpresenter/configure6d.png share/doc/HTML/sv/kpresenter/configure6e.png share/doc/HTML/sv/kpresenter/configure7.png share/doc/HTML/sv/kpresenter/faq.docbook share/doc/HTML/sv/kpresenter/great-presentations.docbook share/doc/HTML/sv/kpresenter/guides.docbook share/doc/HTML/sv/kpresenter/htmlshow1.png share/doc/HTML/sv/kpresenter/htmlshow2.png share/doc/HTML/sv/kpresenter/htmlshow3.png share/doc/HTML/sv/kpresenter/htmlshow4.png share/doc/HTML/sv/kpresenter/htmlshow5.png share/doc/HTML/sv/kpresenter/htmlshow6.png share/doc/HTML/sv/kpresenter/htmlshow7.png share/doc/HTML/sv/kpresenter/htmlshow8.png share/doc/HTML/sv/kpresenter/index.cache.bz2 share/doc/HTML/sv/kpresenter/index.docbook share/doc/HTML/sv/kpresenter/kbd-focus-ext.png share/doc/HTML/sv/kpresenter/menus.docbook share/doc/HTML/sv/kpresenter/mousenav.png share/doc/HTML/sv/kpresenter/msexport1.png share/doc/HTML/sv/kpresenter/msexport2.png share/doc/HTML/sv/kpresenter/msexport2b.png share/doc/HTML/sv/kpresenter/msexport3.png share/doc/HTML/sv/kpresenter/options.docbook share/doc/HTML/sv/kpresenter/properties.png share/doc/HTML/sv/kpresenter/screen.docbook share/doc/HTML/sv/kpresenter/settings01.png share/doc/HTML/sv/kpresenter/settings03.png share/doc/HTML/sv/kpresenter/settings04.png share/doc/HTML/sv/kpresenter/template02.png share/doc/HTML/sv/kpresenter/template03.png share/doc/HTML/sv/kpresenter/template04.png share/doc/HTML/sv/kpresenter/template05.png share/doc/HTML/sv/kpresenter/template06.png share/doc/HTML/sv/kpresenter/template07.png share/doc/HTML/sv/kpresenter/textmenu1.png share/doc/HTML/sv/kpresenter/textmenu2.png share/doc/HTML/sv/kpresenter/toolsmenu01.png share/doc/HTML/sv/kpresenter/tts.png share/doc/HTML/sv/kpresenter/tut01.png share/doc/HTML/sv/kpresenter/tut02.png share/doc/HTML/sv/kpresenter/tut03.png share/doc/HTML/sv/kpresenter/tut04.png share/doc/HTML/sv/kpresenter/tut05.png share/doc/HTML/sv/kpresenter/tut06.png share/doc/HTML/sv/kpresenter/tut07.png share/doc/HTML/sv/kpresenter/tut08.png share/doc/HTML/sv/kpresenter/tut09.png share/doc/HTML/sv/kpresenter/tut10.png share/doc/HTML/sv/kpresenter/tut11.png share/doc/HTML/sv/kpresenter/tut12.png share/doc/HTML/sv/kpresenter/tut13.png share/doc/HTML/sv/kpresenter/tut14.png share/doc/HTML/sv/kpresenter/tut15.png share/doc/HTML/sv/kpresenter/tut16.png share/doc/HTML/sv/kpresenter/tut17.png share/doc/HTML/sv/kpresenter/tut18.png share/doc/HTML/sv/kpresenter/tut19.png share/doc/HTML/sv/kpresenter/tut20.png share/doc/HTML/sv/kpresenter/tut21.png share/doc/HTML/sv/kpresenter/tut22.png share/doc/HTML/sv/kpresenter/tut23.png share/doc/HTML/sv/kpresenter/tut24.png share/doc/HTML/sv/kpresenter/tut26.png share/doc/HTML/sv/kpresenter/tutorial.docbook share/doc/HTML/sv/kspread/a11y.docbook share/doc/HTML/sv/kspread/advanced.docbook share/doc/HTML/sv/kspread/basics.docbook share/doc/HTML/sv/kspread/cellformat0.png share/doc/HTML/sv/kspread/cellformat1.png share/doc/HTML/sv/kspread/cellformat2.png share/doc/HTML/sv/kspread/cellformat3.png share/doc/HTML/sv/kspread/cellformat4.png share/doc/HTML/sv/kspread/cellformat5.png share/doc/HTML/sv/kspread/cellformat6.png share/doc/HTML/sv/kspread/cellformat7.png share/doc/HTML/sv/kspread/cellprotection1.png share/doc/HTML/sv/kspread/cellprotection2.png share/doc/HTML/sv/kspread/chart1.png share/doc/HTML/sv/kspread/commands.docbook share/doc/HTML/sv/kspread/common share/doc/HTML/sv/kspread/config.docbook share/doc/HTML/sv/kspread/configdialog.docbook share/doc/HTML/sv/kspread/configure1.png share/doc/HTML/sv/kspread/configure2.png share/doc/HTML/sv/kspread/configure3.png share/doc/HTML/sv/kspread/configure4.png share/doc/HTML/sv/kspread/configure5.png share/doc/HTML/sv/kspread/configure6.png share/doc/HTML/sv/kspread/copy1.png share/doc/HTML/sv/kspread/faq.docbook share/doc/HTML/sv/kspread/format.docbook share/doc/HTML/sv/kspread/hideformula1.png share/doc/HTML/sv/kspread/hideformula2.png share/doc/HTML/sv/kspread/hideformula3.png share/doc/HTML/sv/kspread/hideformula4.png share/doc/HTML/sv/kspread/hideformula5.png share/doc/HTML/sv/kspread/importexport.docbook share/doc/HTML/sv/kspread/index.cache.bz2 share/doc/HTML/sv/kspread/index.docbook share/doc/HTML/sv/kspread/kbd-focus-ext.png share/doc/HTML/sv/kspread/mousenav.png share/doc/HTML/sv/kspread/newdocument.png share/doc/HTML/sv/kspread/sheetproperties.png share/doc/HTML/sv/kspread/shortcut1.png share/doc/HTML/sv/kspread/shortcut2.png share/doc/HTML/sv/kspread/shortcut3.png share/doc/HTML/sv/kspread/sort1.png share/doc/HTML/sv/kspread/starting1.png share/doc/HTML/sv/kspread/tts.png share/doc/HTML/sv/thesaurus/common share/doc/HTML/sv/thesaurus/index.cache.bz2 share/doc/HTML/sv/thesaurus/index.docbook share/locale/sv/LC_MESSAGES/ArtisticTextShape.mo share/locale/sv/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/sv/LC_MESSAGES/BarcodePlugin.mo share/locale/sv/LC_MESSAGES/CalendarTool.mo share/locale/sv/LC_MESSAGES/ChangecasePlugin.mo +share/locale/sv/LC_MESSAGES/ChartPlugin.mo share/locale/sv/LC_MESSAGES/ChartShape.mo +share/locale/sv/LC_MESSAGES/CommentShape.mo share/locale/sv/LC_MESSAGES/DivineProportion.mo share/locale/sv/LC_MESSAGES/FormulaShape.mo -share/locale/sv/LC_MESSAGES/FreOffice.mo share/locale/sv/LC_MESSAGES/KarbonTools.mo share/locale/sv/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/sv/LC_MESSAGES/MusicShape.mo share/locale/sv/LC_MESSAGES/ParagraphTool.mo share/locale/sv/LC_MESSAGES/PathShapes.mo share/locale/sv/LC_MESSAGES/PictureShape.mo +share/locale/sv/LC_MESSAGES/PluginShape.mo +share/locale/sv/LC_MESSAGES/ShapePlugin.mo share/locale/sv/LC_MESSAGES/SpellCheckPlugin.mo share/locale/sv/LC_MESSAGES/TableShape.mo share/locale/sv/LC_MESSAGES/TextShape.mo share/locale/sv/LC_MESSAGES/VariablesPlugin.mo share/locale/sv/LC_MESSAGES/VideoShape.mo share/locale/sv/LC_MESSAGES/desktop_koffice.mo share/locale/sv/LC_MESSAGES/karbon.mo share/locale/sv/LC_MESSAGES/kchart.mo share/locale/sv/LC_MESSAGES/kexi.mo share/locale/sv/LC_MESSAGES/kformula.mo share/locale/sv/LC_MESSAGES/kocolorspaces.mo share/locale/sv/LC_MESSAGES/koconverter.mo share/locale/sv/LC_MESSAGES/koffice-defaulttools.mo share/locale/sv/LC_MESSAGES/koffice-dockers.mo share/locale/sv/LC_MESSAGES/koffice-simpletextedit.mo share/locale/sv/LC_MESSAGES/koffice.mo share/locale/sv/LC_MESSAGES/kofficefilters.mo share/locale/sv/LC_MESSAGES/koproperty.mo share/locale/sv/LC_MESSAGES/kounavail.mo share/locale/sv/LC_MESSAGES/kplato.mo share/locale/sv/LC_MESSAGES/kplatolibs.mo share/locale/sv/LC_MESSAGES/kplatorcpsplugin.mo share/locale/sv/LC_MESSAGES/kplatowork.mo share/locale/sv/LC_MESSAGES/kpresenter.mo share/locale/sv/LC_MESSAGES/krita.mo share/locale/sv/LC_MESSAGES/krossmodulekplato.mo share/locale/sv/LC_MESSAGES/krossmodulekspread.mo share/locale/sv/LC_MESSAGES/krossmodulekword.mo share/locale/sv/LC_MESSAGES/kscan_plugin.mo share/locale/sv/LC_MESSAGES/kspread.mo share/locale/sv/LC_MESSAGES/kspreadsolver.mo share/locale/sv/LC_MESSAGES/kthesaurus.mo share/locale/sv/LC_MESSAGES/kword.mo share/locale/sv/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/sv/thesaurus @dirrm share/doc/HTML/sv/kspread @dirrm share/doc/HTML/sv/kpresenter @dirrm share/doc/HTML/sv/koffice +@dirrm share/doc/HTML/sv/kivio @dirrm share/doc/HTML/sv/kformula @dirrm share/doc/HTML/sv/kexi @dirrm share/doc/HTML/sv/kchart @dirrm share/doc/HTML/sv/karbon Property changes on: head/editors/calligra-l10n-sv/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/editors/koffice-kde4/Makefile =================================================================== --- head/editors/koffice-kde4/Makefile (revision 271655) +++ head/editors/koffice-kde4/Makefile (revision 271656) @@ -1,120 +1,120 @@ # New ports collection makefile for: koffice-kde4 # Date created: 2008-07-22 # Whom: Max Brazhnikov # # $FreeBSD$ # PORTNAME= koffice PORTVERSION= ${KOFFICE2_VERSION} -PORTREVISION= 6 CATEGORIES= editors kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTNAME}-${PORTVERSION}/ +MASTER_SITE_SUBDIR= ${KOFFICE2_BRANCH}/${PORTNAME}-${PORTVERSION}/ PKGNAMESUFFIX= -kde4 DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Office suite for KDE BUILD_DEPENDS= eigen>=2.0.b3:${PORTSDIR}/math/eigen2 \ gmm++>=3.0.4:${PORTSDIR}/math/gmm++ \ - ${LOCALBASE}/lib/libpqxx.a:${PORTSDIR}/databases/postgresql-libpqxx30 \ - ${LOCALBASE}/share/xml/docbook/4.2/docbookx.dtd:${PORTSDIR}/textproc/docbook-xml + ${LOCALBASE}/lib/libpqxx.a:${PORTSDIR}/databases/postgresql-libpqxx30 LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs \ qca.2:${PORTSDIR}/devel/qca \ GraphicsMagick++.1:${PORTSDIR}/graphics/GraphicsMagick \ IlmImf.6:${PORTSDIR}/graphics/OpenEXR \ exiv2.9:${PORTSDIR}/graphics/exiv2 \ jpeg.11:${PORTSDIR}/graphics/jpeg \ - kipi.7:${PORTSDIR}/graphics/kdegraphics4 \ - lcms.1:${PORTSDIR}/graphics/lcms \ - wpg-0.1:${PORTSDIR}/graphics/libwpg01 \ + kdcraw.9:${PORTSDIR}/graphics/kdegraphics4 \ + lcms2.2:${PORTSDIR}/graphics/lcms2 \ + wpg-0.2:${PORTSDIR}/graphics/libwpg \ png.6:${PORTSDIR}/graphics/png \ poppler-qt4.3:${PORTSDIR}/graphics/poppler-qt4 \ tiff.4:${PORTSDIR}/graphics/tiff \ gsl.15:${PORTSDIR}/math/gsl \ wv2.4:${PORTSDIR}/textproc/wv2 \ freetype.9:${PORTSDIR}/print/freetype2 \ qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ - fftw3.5:${PORTSDIR}/math/fftw3 + fftw3.5:${PORTSDIR}/math/fftw3 \ + dcmdata.3:${PORTSDIR}/devel/dcmtk RUN_DEPENDS= ${LOCALBASE}/lib/libpqxx.a:${PORTSDIR}/databases/postgresql-libpqxx30 USE_BZIP2= yes USE_CMAKE= yes USE_ICONV= yes USE_PGSQL= yes MAKE_JOBS_SAFE= yes USE_KDE4= kdelibs pimlibs kdehier kdeprefix sharedmime automoc4 USE_QT_VER= 4 QT_COMPONENTS= corelib phonon qmake_build moc_build porting_build rcc_build uic_build \ uic3_build USE_GL= glut glew USE_LDCONFIG= yes CMAKE_OUTSOURCE= yes CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:STRING="${QT_INCDIR} ${LOCALBASE}/include" LDFLAGS+= "-L${LOCALBASE}/lib" OPTIONS+= GTL "Color transformations in Krita" off OPTIONS+= SYBASE "SyBase support in Kexi" off OPTIONS+= XBASE "XBase support in Kexi" off .include .if exists(${LOCALBASE}/include/qconfig.h) -IGNORE= does not build with x11-toolkits/qt33 installed. Please, deinstall qt-3.x first +IGNORE= does not build with x11-toolkits/qt33 installed. Please deinstall qt-3.x first .endif .if !defined(WITHOUT_GTL) || exists (${LOCALBASE}/lib/libQtShiva.so) LIB_DEPENDS+= OpenCTL.0:${PORTSDIR}/graphics/opengtl \ QtShiva.0:${PORTSDIR}/graphics/qtgtl PLIST_SUB+= GTL="" .else PLIST_SUB+= GTL="@comment " .endif .if exists(${LOCALBASE}/lib/pstoedit/libp2edrvlplot.so) +QT_COMPONENTS+= qt3support BUILD_DEPENDS+= ${LOCALBASE}/lib/pstoedit/libp2edrvlplot.so:${PORTSDIR}/graphics/pstoedit RUN_DEPENDS+= ${LOCALBASE}/lib/pstoedit/libp2edrvlplot.so:${PORTSDIR}/graphics/pstoedit PLIST_SUB+= EPS="" .else PLIST_SUB+= EPS="@comment " .endif .if defined(WITH_SYBASE) || exists (${LOCALBASE}/lib/libsybdb.so) LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds PLIST_SUB+= SYBASE="" .else PLIST_SUB+= SYBASE="@comment " .endif .if defined(WITH_XBASE) || exists (${LOCALBASE}/lib/libxbase-2.0.so) LIB_DEPENDS+= xbase-2.0.0:${PORTSDIR}/databases/xbase PLIST_SUB+= XBASE="" .else PLIST_SUB+= XBASE="@comment " .endif post-patch: # prevent updating mime during build/install ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ ${PATCH_WRKSRC}/krita/plugins/formats/ora/CMakeLists.txt ${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|' \ ${PATCH_WRKSRC}/cmake/modules/FindGLEW.cmake ${REINPLACE_CMD} -e 's|/opt/local|${LOCALBASE}|' \ ${PATCH_WRKSRC}/cmake/modules/FindImageMagick.cmake ${REINPLACE_CMD} -e 's|/usr/include|${LOCALBASE}/include|' \ ${PATCH_WRKSRC}/cmake/modules/FindWPD.cmake ${REINPLACE_CMD} -e 's|-DHAVE_ICONV_H|-DHAVE_ICONV_H -L${LOCALBASE}/lib -liconv -Wl,-rpath -Wl,${LOCALBASE}/lib -liconv|' \ ${PATCH_WRKSRC}/filters/kword/CMakeLists.txt ${REINPLACE_CMD} -e '/add_subdirectory(wv2)/d' \ ${PATCH_WRKSRC}/filters/kword/msword-odf/CMakeLists.txt post-install: @-update-mime-database ${PREFIX}/share/mime .include Property changes on: head/editors/koffice-kde4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.141 \ No newline at end of property +1.142 \ No newline at end of property Index: head/editors/koffice-kde4/distinfo =================================================================== --- head/editors/koffice-kde4/distinfo (revision 271655) +++ head/editors/koffice-kde4/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-2.2.2.tar.bz2) = e5b060f640dd7ecd13b5d17f7e9ace7c0d1c0621e5fb83529f6e6db2d5c1edcb -SIZE (KDE/koffice-2.2.2.tar.bz2) = 56470974 +SHA256 (KDE/koffice-2.3.1.tar.bz2) = e73da38cfbfb2c6b7170767065addc0de38725e82c4fa49c76bcf375ee44f143 +SIZE (KDE/koffice-2.3.1.tar.bz2) = 75687214 Property changes on: head/editors/koffice-kde4/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.40 \ No newline at end of property +1.41 \ No newline at end of property Index: head/editors/koffice-kde4/files/patch-cmake__modules__FindWPD.cmake =================================================================== --- head/editors/koffice-kde4/files/patch-cmake__modules__FindWPD.cmake (revision 271655) +++ head/editors/koffice-kde4/files/patch-cmake__modules__FindWPD.cmake (revision 271656) @@ -1,11 +1,17 @@ ---- ./cmake/modules/FindWPD.cmake.orig 2010-03-30 13:10:16.507260418 +1100 -+++ ./cmake/modules/FindWPD.cmake 2010-03-30 13:09:54.253774780 +1100 -@@ -24,7 +24,7 @@ +--- ./cmake/modules/FindWPD.cmake.orig 2011-03-25 01:34:51.930775929 +0100 ++++ ./cmake/modules/FindWPD.cmake 2011-03-25 01:37:46.910772674 +0100 +@@ -19,13 +19,11 @@ + else (WPD_INCLUDE_DIR AND WPD_LIBRARIES) + if(NOT WIN32) + INCLUDE(FindPkgConfig) +- pkg_check_modules(WPD libwpd-0.8) + pkg_check_modules(WPD libwpd-0.9) + endif(NOT WIN32) FIND_PATH(WPD_INCLUDE_DIR libwpd/libwpd.h ${WPD_INCLUDE_DIR} - /usr/include/libwpd-0.8 -+ PATH_SUFFIXES libwpd-0.8 +- /usr/include/libwpd-0.9 ++ PATH_SUFFIXES libwpd-0.9 ) - Property changes on: head/editors/koffice-kde4/files/patch-cmake__modules__FindWPD.cmake ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/editors/koffice-kde4/files/patch-cmake__modules__FindWPG.cmake =================================================================== --- head/editors/koffice-kde4/files/patch-cmake__modules__FindWPG.cmake (revision 271655) +++ head/editors/koffice-kde4/files/patch-cmake__modules__FindWPG.cmake (revision 271656) @@ -1,11 +1,24 @@ ---- ./cmake/modules/FindWPG.cmake.orig 2010-03-30 00:05:52.000000000 +1100 -+++ ./cmake/modules/FindWPG.cmake 2010-03-30 13:07:46.392743489 +1100 -@@ -29,7 +29,7 @@ +--- ./cmake/modules/FindWPG.cmake.orig 2011-03-25 01:38:36.660731693 +0100 ++++ ./cmake/modules/FindWPG.cmake 2011-03-25 01:40:49.690727037 +0100 +@@ -18,11 +18,10 @@ + + IF (NOT WIN32) + INCLUDE(FindPkgConfig) +- pkg_check_modules(LIBWPG libwpg-0.1) + pkg_check_modules(LIBWPG libwpg-0.2) + ENDIF (NOT WIN32) + +- FIND_LIBRARY(LIBWPG_STREAM_LIBRARIES NAMES libwpg-stream-0.1 wpg-stream-0.1 libwpd-stream-0.9 wpd-stream-0.9 ++ FIND_LIBRARY(LIBWPG_STREAM_LIBRARIES NAMES libwpd-stream-0.9 wpd-stream-0.9 + PATHS + ${LIBWPG_LIBRARIES} + ) +@@ -30,7 +29,7 @@ FIND_PATH(LIBWPG_INCLUDE_DIR libwpg/libwpg.h PATHS ${LIBWPG_INCLUDE_DIRS} - PATH_SUFFIXES libwpg -+ PATH_SUFFIXES libwpg-0.1 ++ PATH_SUFFIXES libwpg-0.2 ) IF (LIBWPG_INCLUDE_DIR AND LIBWPG_LIBRARIES) Property changes on: head/editors/koffice-kde4/files/patch-cmake__modules__FindWPG.cmake ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/editors/koffice-kde4/files/patch-krita_plugins_formats_CMakeLists.txt =================================================================== --- head/editors/koffice-kde4/files/patch-krita_plugins_formats_CMakeLists.txt (revision 271655) +++ head/editors/koffice-kde4/files/patch-krita_plugins_formats_CMakeLists.txt (revision 271656) @@ -1,29 +1,28 @@ ---- ./krita/plugins/formats/CMakeLists.txt.orig 2009-08-24 01:58:24.000000000 +1100 -+++ ./krita/plugins/formats/CMakeLists.txt 2009-09-04 23:56:05.000000000 +1100 -@@ -15,15 +15,23 @@ +--- krita/plugins/formats/CMakeLists.txt.orig 2010-11-30 04:06:29.223954558 +0100 ++++ krita/plugins/formats/CMakeLists.txt 2010-11-30 04:14:21.883911180 +0100 +@@ -15,15 +15,22 @@ macro_optional_find_package(Poppler) - macro_log_feature( POPPLER_FOUND "poppler-qt4" "The Poppler Qt4 interface library" "http://poppler.freedesktop.org" FALSE "" "Required by the Krita PDF filter (version 0.6.x is currently required)") + macro_log_feature( POPPLER_FOUND "poppler-qt4" "The Poppler Qt4 interface library" "http://poppler.freedesktop.org" FALSE "" "Required by the Krita PDF filter") -macro_optional_find_package(Kdcraw) -macro_log_feature( KDCRAW_FOUND "kdcraw" "The KDCraw library" "http://www.digikam.org/" FALSE "" "Required by the Krita RAW filter") - macro_optional_find_package(OpenJPEG) macro_log_feature(OPENJPEG_FOUND "openjpeg" "Free library for JPEG 2000 image compression" "http://www.openjpeg.org" FALSE "" "Required by the Krita JPEG 2000 filter") macro_optional_find_package(GIF2) - macro_log_feature(GIF_FOUND "libungif/giflib" "Free library for reading and writing GIF images" "htt://XXX!!!" FALSE "" "Required by the Krita GIF filter") + macro_log_feature(GIF_FOUND "libungif/giflib" "Free library for reading and writing GIF images" "http://directory.fsf.org/project/libungif/" FALSE "" "Required by the Krita GIF filter") +# Check for Kdcraw +PKG_CHECK_MODULES(LIBKDCRAW libkdcraw-kde4>=0.4.0) +FIND_PATH(KDCRAW_INCLUDE_DIR NAMES libkdcraw/version.h + PATHS ${LIBKDCRAW_INCLUDE_DIRS} ${KDE4_INCLUDE_DIR} NO_DEFAULT_PATH) +FIND_LIBRARY(KDCRAW_LIBRARY NAMES kdcraw + PATHS ${LIBKDCRAW_LIBRARY_DIRS} ${KDE4_LIB_DIR} NO_DEFAULT_PATH) -+ +INCLUDE(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(KDCRAW DEFAULT_MSG KDCRAW_LIBRARY KDCRAW_INCLUDE_DIR) +macro_log_feature( KDCRAW_FOUND "kdcraw" "The KDCraw library" "http://www.digikam.org/" FALSE "" "Required by the Krita RAW filter") + include_directories(${KRITA_INCLUDES}) if(KDCRAW_FOUND) Property changes on: head/editors/koffice-kde4/files/patch-krita_plugins_formats_CMakeLists.txt ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/editors/koffice-kde4/files/patch-libwpg02-libwpd09 =================================================================== --- head/editors/koffice-kde4/files/patch-libwpg02-libwpd09 (nonexistent) +++ head/editors/koffice-kde4/files/patch-libwpg02-libwpd09 (revision 271656) @@ -0,0 +1,1334 @@ +diff -Nur ./filters/karbon/wpg/import/CMakeLists.txt ./filters/karbon/wpg/import/CMakeLists.txt +--- ./filters/karbon/wpg/import/CMakeLists.txt 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/CMakeLists.txt 2011-01-18 07:40:25.000000000 +0100 +@@ -1,16 +1,11 @@ + +- + include_directories(${CMAKE_BINARY_DIR}/filters/ ${WPD_INCLUDE_DIR} ${LIBWPG_INCLUDE_DIR}/) + +-set(wpgimport_PART_SRCS +-WPGImport.cpp +-OdgExporter.cxx +-FileOutputHandler.cxx +-GraphicsElement.cxx) ++set(wpgimport_PART_SRCS WPGImport.cpp) + + kde4_add_plugin(wpgimport ${wpgimport_PART_SRCS}) + +-target_link_libraries(wpgimport komain ${LIBWPG_LIBRARIES} ${LIBWPG_STREAM_LIBRARIES}) ++target_link_libraries(wpgimport komain ${LIBWPG_LIBRARIES} ${LIBWPG_STREAM_LIBRARIES} ${WPD_LIBRARIES}) + + install(TARGETS wpgimport DESTINATION ${PLUGIN_INSTALL_DIR}) + install(FILES karbon_wpg_import.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +diff -Nur ./filters/karbon/wpg/import/FileOutputHandler.cxx ./filters/karbon/wpg/import/FileOutputHandler.cxx +--- ./filters/karbon/wpg/import/FileOutputHandler.cxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/FileOutputHandler.cxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,95 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#include "FileOutputHandler.hxx" +- +-FileOutputHandler::FileOutputHandler(std::ostringstream &contentStream) : +- mbIsTagOpened(false), +- mContentStream(contentStream) +-{ +-} +- +-void FileOutputHandler::startDocument() +-{ +-} +- +-void FileOutputHandler::startElement(const char *psName, const std::vector > &xPropList) +-{ +- if (mbIsTagOpened) +- { +- mContentStream << ">"; +- mbIsTagOpened = false; +- } +- mContentStream << "<" << psName; +- +- for (std::vector >::const_iterator i = xPropList.begin(); i != xPropList.end(); i++) +- { +- mContentStream << " " << (*i).first.c_str() << "=\"" << (*i).second.c_str() << "\""; +- } +- mbIsTagOpened = true; +- msOpenedTagName = psName; +-} +- +-void FileOutputHandler::endElement(const char *psName) +-{ +- if (mbIsTagOpened) +- { +- if( msOpenedTagName == psName ) +- { +- mContentStream << "/>"; +- mbIsTagOpened = false; +- } +- else // should not happen, but handle it +- { +- mContentStream << ">"; +- mContentStream << ""; +- mbIsTagOpened = false; +- } +- } +- else +- { +- mContentStream << ""; +- mbIsTagOpened = false; +- } +-} +- +-void FileOutputHandler::characters(const std::string &sCharacters) +-{ +- if (mbIsTagOpened) +- { +- mContentStream << ">"; +- mbIsTagOpened = false; +- } +- mContentStream << sCharacters.c_str(); +-} +- +-void FileOutputHandler::endDocument() +-{ +- if (mbIsTagOpened) +- { +- mContentStream << ">"; +- mbIsTagOpened = false; +- } +-} +diff -Nur ./filters/karbon/wpg/import/FileOutputHandler.hxx ./filters/karbon/wpg/import/FileOutputHandler.hxx +--- ./filters/karbon/wpg/import/FileOutputHandler.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/FileOutputHandler.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,49 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#ifndef FILEOUTPUTHANDLER_H +-#define FILEOUTPUTHANDLER_H +- +-#include +-#include +-#include +-#include "GraphicsHandler.hxx" +- +-class FileOutputHandler : public GraphicsHandler +-{ +- public: +- explicit FileOutputHandler(std::ostringstream &contentStream); +- virtual void startDocument(); +- virtual void endDocument(); +- virtual void startElement(const char *psName, const std::vector > &xPropList); +- virtual void endElement(const char *psName); +- virtual void characters(const std::string &sCharacters); +- +- private: +- bool mbIsTagOpened; +- std::string msOpenedTagName; +- std::ostringstream &mContentStream; +-}; +-#endif +diff -Nur ./filters/karbon/wpg/import/GraphicsElement.cxx ./filters/karbon/wpg/import/GraphicsElement.cxx +--- ./filters/karbon/wpg/import/GraphicsElement.cxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/GraphicsElement.cxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,66 +0,0 @@ +-/* GraphicsElement: The items we are collecting to be put into the Writer +- * document: paragraph and spans of text, as well as section breaks. +- * +- * Copyright (C) 2002-2003 William Lachance (william.lachance@sympatico.ca) +- * +- * This program is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Lesser General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This program 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- * +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#include "GraphicsElement.hxx" +-#include "GraphicsHandler.hxx" +-#include +- +-#define ASCII_SPACE 0x0020 +- +-void TagGraphicsElement::print() const +-{ +-} +- +-void OpenTagGraphicsElement::write(GraphicsHandler *pHandler) const +-{ +- pHandler->startElement(getTagName().c_str(), maAttrList); +-} +- +-void OpenTagGraphicsElement::print() const +-{ +- TagGraphicsElement::print(); +-} +- +-void OpenTagGraphicsElement::addAttribute(const std::string &szAttributeName, const std::string &sAttributeValue) +-{ +- std::pair tmpAttribute; +- tmpAttribute.first = szAttributeName; +- tmpAttribute.second = sAttributeValue; +- maAttrList.push_back(tmpAttribute); +-} +- +-void CloseTagGraphicsElement::write(GraphicsHandler *pHandler) const +-{ +- +- pHandler->endElement(getTagName().c_str()); +-} +- +-void CharDataGraphicsElement::write(GraphicsHandler *pHandler) const +-{ +- pHandler->characters(msData); +-} +diff -Nur ./filters/karbon/wpg/import/GraphicsElement.hxx ./filters/karbon/wpg/import/GraphicsElement.hxx +--- ./filters/karbon/wpg/import/GraphicsElement.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/GraphicsElement.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,84 +0,0 @@ +-/* GraphicsElement: The items we are collecting to be put into the Writer +- * document: paragraph and spans of text, as well as section breaks. +- * +- * Copyright (C) 2002-2003 William Lachance (william.lachance@sympatico.ca) +- * +- * This program is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Lesser General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This program 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpd.sourceforge.net +- * +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#ifndef _GRAPHICSELEMENT_H +-#define _GRAPHICSELEMENT_H +-#include +-#include +-#include +- +-#include "GraphicsHandler.hxx" +- +-class GraphicsElement +-{ +-public: +- virtual ~GraphicsElement() {} +- virtual void write(GraphicsHandler *pHandler) const = 0; +- virtual void print() const {} +-}; +- +-class TagGraphicsElement : public GraphicsElement +-{ +-public: +- explicit TagGraphicsElement(const char *szTagName) : msTagName(szTagName) {} +- const std::string &getTagName() const { return msTagName; } +- virtual void print() const; +-private: +- const std::string msTagName; +-}; +- +-class OpenTagGraphicsElement : public TagGraphicsElement +-{ +-public: +- explicit OpenTagGraphicsElement(const char *szTagName) : TagGraphicsElement(szTagName) {} +- ~OpenTagGraphicsElement() {} +- void addAttribute(const std::string &szAttributeName, const std::string &sAttributeValue); +- virtual void write(GraphicsHandler *pHandler) const; +- virtual void print () const; +-private: +- std::vector > maAttrList; +-}; +- +-class CloseTagGraphicsElement : public TagGraphicsElement +-{ +-public: +- explicit CloseTagGraphicsElement(const char *szTagName) : TagGraphicsElement(szTagName) {} +- virtual void write(GraphicsHandler *pHandler) const; +-}; +- +-class CharDataGraphicsElement : public GraphicsElement +-{ +-public: +- CharDataGraphicsElement(const char *sData) : GraphicsElement(), msData(sData) {} +- virtual void write(GraphicsHandler *pHandler) const; +-private: +- std::string msData; +-}; +- +- +-#endif +diff -Nur ./filters/karbon/wpg/import/GraphicsHandler.hxx ./filters/karbon/wpg/import/GraphicsHandler.hxx +--- ./filters/karbon/wpg/import/GraphicsHandler.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/GraphicsHandler.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,43 +0,0 @@ +-/* +- * Copyright (C) 2004 William Lachance (wlach@interlog.com) +- * Copyright (C) 2004 Net Integration Technologies (http://www.net-itech.com) +- * +- * This program 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. +- * +- * This program 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 Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * Contributor(s): Martin Gallwey (gallwey@sun.com) +- * +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +-#ifndef _GRAPHICSHANDLER_H +-#define _GRAPHICSHANDLER_H +-#include +-#include +-#include +- +-class GraphicsHandler +-{ +-public: +- virtual ~GraphicsHandler() {} +- virtual void startDocument() = 0; +- virtual void endDocument() = 0; +- virtual void startElement(const char *psName, const std::vector< std::pair > &xPropList) = 0; +- virtual void endElement(const char *psName) = 0; +- virtual void characters(const std::string &sCharacters) = 0; +-}; +-#endif +diff -Nur ./filters/karbon/wpg/import/karbon_wpg_import.desktop ./filters/karbon/wpg/import/karbon_wpg_import.desktop +--- ./filters/karbon/wpg/import/karbon_wpg_import.desktop 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/karbon_wpg_import.desktop 2011-01-18 07:41:33.000000000 +0100 +@@ -42,7 +42,7 @@ + Name[x-test]=xxKarbon WPG Import Filterxx + Name[zh_CN]=Karbon WPG 导入过滤器 + Name[zh_TW]=Karbon WPG 匯入過濾程式 +-X-KDE-Export=application/vnd.oasis.opendocument.graphics ++X-KDE-Export=image/svg+xml + X-KDE-Import=application/x-wpg + X-KDE-Weight=1 + X-KDE-Library=wpgimport +diff -Nur ./filters/karbon/wpg/import/OdgExporter.cxx ./filters/karbon/wpg/import/OdgExporter.cxx +--- ./filters/karbon/wpg/import/OdgExporter.cxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/OdgExporter.cxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,662 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org) +- * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#include "OdgExporter.hxx" +-#include "GraphicsElement.hxx" +-#include "GraphicsHandler.hxx" +-#include +- +-static std::string doubleToString(const double value) +-{ +- std::ostringstream tempStream; +- tempStream << value; +- std::string decimalPoint(localeconv()->decimal_point); +- if ((decimalPoint.size() == 0) || (decimalPoint == ".")) +- return tempStream.str(); +- std::string stringValue(tempStream.str()); +- if (!stringValue.empty()) +- { +- std::string::size_type pos; +- while ((pos = stringValue.find(decimalPoint)) != std::string::npos) +- stringValue.replace(pos,decimalPoint.size(),"."); +- } +- return stringValue; +-} +- +- +-OdgExporter::OdgExporter(GraphicsHandler *pHandler, const bool isFlatXML): +- mpHandler(pHandler), +- m_fillRule(AlternatingFill), +- m_gradientIndex(1), +- m_dashIndex(1), +- m_styleIndex(1), +- m_width(0.0f), +- m_height(0.0f), +- m_isFlatXML(isFlatXML) +-{ +-} +- +-OdgExporter::~OdgExporter() +-{ +- for (std::vector ::iterator iterStroke = mStrokeDashElements.begin(); +- iterStroke != mStrokeDashElements.end(); iterStroke++) +- delete (*iterStroke); +- +- for (std::vector ::iterator iterGradient = mGradientElements.begin(); +- iterGradient != mGradientElements.end(); iterGradient++) +- delete (*iterGradient); +- +- for (std::vector ::iterator iterAutomaticStyles = mAutomaticStylesElements.begin(); +- iterAutomaticStyles != mAutomaticStylesElements.end(); iterAutomaticStyles++) +- delete (*iterAutomaticStyles); +- +- for (std::vector::iterator bodyIter = mBodyElements.begin(); +- bodyIter != mBodyElements.end(); bodyIter++) +- delete (*bodyIter); +-} +- +-void OdgExporter::startGraphics(double width, double height) +-{ +- m_gradientIndex = 1; +- m_dashIndex = 1; +- m_styleIndex = 1; +- m_width = width; +- m_height = height; +- +- +- mpHandler->startDocument(); +- OpenTagGraphicsElement tmpOfficeDocumentContent("office:document"); +- tmpOfficeDocumentContent.addAttribute("xmlns:office", "urn:oasis:names:tc:opendocument:xmlns:office:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:style", "urn:oasis:names:tc:opendocument:xmlns:style:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:text", "urn:oasis:names:tc:opendocument:xmlns:text:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:draw", "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:dc", "http://purl.org/dc/elements/1.1/"); +- tmpOfficeDocumentContent.addAttribute("xmlns:svg", "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:fo", "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:config", "urn:oasis:names:tc:opendocument:xmlns:config:1.0"); +- tmpOfficeDocumentContent.addAttribute("xmlns:ooo", "http://openoffice.org/2004/office"); +- tmpOfficeDocumentContent.addAttribute("office:version", "1.0"); +- if (m_isFlatXML) +- tmpOfficeDocumentContent.addAttribute("office:mimetype", "application/x-vnd.oasis.openoffice.drawing"); +- tmpOfficeDocumentContent.write(mpHandler); +- +- OpenTagGraphicsElement("office:settings").write(mpHandler); +- +- OpenTagGraphicsElement configItemSetOpenElement("config:config-item-set"); +- configItemSetOpenElement.addAttribute("config:name", "ooo:view-settings"); +- configItemSetOpenElement.write(mpHandler); +- +- OpenTagGraphicsElement configItemOpenElement1("config:config-item"); +- configItemOpenElement1.addAttribute("config:name", "VisibleAreaTop"); +- configItemOpenElement1.addAttribute("config:type", "int"); +- configItemOpenElement1.write(mpHandler); +- mpHandler->characters("0"); +- mpHandler->endElement("config:config-item"); +- +- OpenTagGraphicsElement configItemOpenElement2("config:config-item"); +- configItemOpenElement2.addAttribute("config:name", "VisibleAreaLeft"); +- configItemOpenElement2.addAttribute("config:type", "int"); +- configItemOpenElement2.write(mpHandler); +- mpHandler->characters("0"); +- mpHandler->endElement("config:config-item"); +- +- OpenTagGraphicsElement configItemOpenElement3("config:config-item"); +- configItemOpenElement3.addAttribute("config:name", "VisibleAreaWidth"); +- configItemOpenElement3.addAttribute("config:type", "int"); +- configItemOpenElement3.write(mpHandler); +- m_value.str(""); +- m_value << (unsigned)(2540 * width); +- mpHandler->characters(m_value.str()); +- mpHandler->endElement("config:config-item"); +- +- OpenTagGraphicsElement configItemOpenElement4("config:config-item"); +- configItemOpenElement4.addAttribute("config:name", "VisibleAreaHeight"); +- configItemOpenElement4.addAttribute("config:type", "int"); +- configItemOpenElement4.write(mpHandler); +- m_value.str(""); +- m_value << (unsigned)(2540 * height); +- mpHandler->characters(m_value.str()); +- mpHandler->endElement("config:config-item"); +- +- mpHandler->endElement("config:config-item-set"); +- +- mpHandler->endElement("office:settings"); +- +-} +- +-void OdgExporter::endGraphics() +-{ +- OpenTagGraphicsElement("office:styles").write(mpHandler); +- +- for (std::vector ::const_iterator iterStroke = mStrokeDashElements.begin(); +- iterStroke != mStrokeDashElements.end(); iterStroke++) +- (*iterStroke)->write(mpHandler); +- +- for (std::vector ::const_iterator iterGradient = mGradientElements.begin(); +- iterGradient != mGradientElements.end(); iterGradient++) +- (*iterGradient)->write(mpHandler); +- +- mpHandler->endElement("office:styles"); +- +- OpenTagGraphicsElement("office:automatic-styles").write(mpHandler); +- +- for (std::vector ::const_iterator iterAutomaticStyles = mAutomaticStylesElements.begin(); +- iterAutomaticStyles != mAutomaticStylesElements.end(); iterAutomaticStyles++) +- (*iterAutomaticStyles)->write(mpHandler); +- +- OpenTagGraphicsElement tmpStylePageLayoutOpenElement("style:page-layout"); +- tmpStylePageLayoutOpenElement.addAttribute("style:name", "PM0"); +- tmpStylePageLayoutOpenElement.write(mpHandler); +- +- OpenTagGraphicsElement tmpStylePageLayoutPropertiesOpenElement("style:page-layout-properties"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-top", "0in"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-bottom", "0in"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-left", "0in"); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:margin-right", "0in"); +- m_value.str(""); +- m_value << doubleToString(m_width) << "in"; +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:page-width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(m_height) << "in"; +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("fo:page-height", m_value.str()); +- m_value.str(""); +- tmpStylePageLayoutPropertiesOpenElement.addAttribute("style:print-orientation", "portrait"); +- tmpStylePageLayoutPropertiesOpenElement.write(mpHandler); +- +- mpHandler->endElement("style:page-layout-properties"); +- +- mpHandler->endElement("style:page-layout"); +- +- OpenTagGraphicsElement tmpStyleStyleOpenElement("style:style"); +- tmpStyleStyleOpenElement.addAttribute("style:name", "dp1"); +- tmpStyleStyleOpenElement.addAttribute("style:family", "drawing-page"); +- tmpStyleStyleOpenElement.write(mpHandler); +- +- OpenTagGraphicsElement tmpStyleDrawingPagePropertiesOpenElement("style:drawing-page-properties"); +- // tmpStyleDrawingPagePropertiesOpenElement.addAttribute("draw:background-size", "border"); +- tmpStyleDrawingPagePropertiesOpenElement.addAttribute("draw:fill", "none"); +- tmpStyleDrawingPagePropertiesOpenElement.write(mpHandler); +- +- mpHandler->endElement("style:drawing-page-properties"); +- +- mpHandler->endElement("style:style"); +- +- mpHandler->endElement("office:automatic-styles"); +- +- OpenTagGraphicsElement("office:master-styles").write(mpHandler); +- +- OpenTagGraphicsElement tmpStyleMasterPageOpenElement("style:master-page"); +- tmpStyleMasterPageOpenElement.addAttribute("style:name", "Default"); +- tmpStyleMasterPageOpenElement.addAttribute("style:page-layout-name", "PM0"); +- tmpStyleMasterPageOpenElement.addAttribute("draw:style-name", "dp1"); +- tmpStyleMasterPageOpenElement.write(mpHandler); +- +- mpHandler->endElement("style:master-page"); +- +- mpHandler->endElement("office:master-styles"); +- +- OpenTagGraphicsElement("office:body").write(mpHandler); +- +- OpenTagGraphicsElement("office:drawing").write(mpHandler); +- +- OpenTagGraphicsElement tmpDrawPageOpenElement("draw:page"); +- tmpDrawPageOpenElement.addAttribute("draw:name", "page1"); +- tmpDrawPageOpenElement.addAttribute("draw:style-name", "dp1"); +- tmpDrawPageOpenElement.addAttribute("draw:master-page-name", "Default"); +- tmpDrawPageOpenElement.write(mpHandler); +- +- for (std::vector::const_iterator bodyIter = mBodyElements.begin(); +- bodyIter != mBodyElements.end(); bodyIter++) +- { +- (*bodyIter)->write(mpHandler); +- } +- +- mpHandler->endElement("draw:page"); +- mpHandler->endElement("office:drawing"); +- mpHandler->endElement("office:body"); +- mpHandler->endElement("office:document"); +- +- mpHandler->endDocument(); +-} +- +-void OdgExporter::setPen(const libwpg::WPGPen& pen) +-{ +- m_pen = pen; +-} +- +-void OdgExporter::setBrush(const libwpg::WPGBrush& brush) +-{ +- m_brush = brush; +-} +- +-void OdgExporter::setFillRule(FillRule rule) +-{ +- m_fillRule = rule; +-} +- +-void OdgExporter::startLayer(unsigned int) +-{ +-} +- +-void OdgExporter::endLayer(unsigned int) +-{ +-} +- +-void OdgExporter::drawRectangle(const libwpg::WPGRect& rect, double rx, double ) +-{ +- writeStyle(); +- OpenTagGraphicsElement *pDrawRectElement = new OpenTagGraphicsElement("draw:rect"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawRectElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.x1) << "in"; +- pDrawRectElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.y1) << "in"; +- pDrawRectElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.x2-rect.x1) << "in"; +- pDrawRectElement->addAttribute("svg:width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rect.y2-rect.y1) << "in"; +- pDrawRectElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(rx) << "in"; +- // FIXME: what to do when rx != ry ? +- pDrawRectElement->addAttribute("draw:corner-radius", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawRectElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:rect"))); +-} +- +-void OdgExporter::drawEllipse(const libwpg::WPGPoint& center, double rx, double ry) +-{ +- writeStyle(); +- OpenTagGraphicsElement *pDrawEllipseElement = new OpenTagGraphicsElement("draw:ellipse"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawEllipseElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(center.x - rx) << "in"; +- pDrawEllipseElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(center.y - ry) << "in"; +- pDrawEllipseElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(2 * rx) << "in"; +- pDrawEllipseElement->addAttribute("svg:width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(2 * ry) << "in"; +- pDrawEllipseElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawEllipseElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:ellipse"))); +-} +- +-void OdgExporter::drawPolygon(const libwpg::WPGPointArray& vertices) +-{ +- if(vertices.count() < 2) +- return; +- +- if(vertices.count() == 2) +- { +- const libwpg::WPGPoint& p1 = vertices[0]; +- const libwpg::WPGPoint& p2 = vertices[1]; +- +- writeStyle(); +- OpenTagGraphicsElement *pDrawLineElement = new OpenTagGraphicsElement("draw:line"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawLineElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- pDrawLineElement->addAttribute("draw:text-style-name", "P1"); +- pDrawLineElement->addAttribute("draw:layer", "layout"); +- m_value << doubleToString(p1.x) << "in"; +- pDrawLineElement->addAttribute("svg:x1", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p1.y) << "in"; +- pDrawLineElement->addAttribute("svg:y1", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p2.x) << "in"; +- pDrawLineElement->addAttribute("svg:x2", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p2.y) << "in"; +- pDrawLineElement->addAttribute("svg:y2", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawLineElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:line"))); +- } +- else +- { +- // draw as path +- libwpg::WPGPath path; +- path.moveTo(vertices[0]); +- for(unsigned long ii = 1; ii < vertices.count(); ii++) +- path.lineTo(vertices[ii]); +- path.closed = true; +- drawPath(path); +- } +-} +- +-void OdgExporter::drawPath(const libwpg::WPGPath& path) +-{ +- if(path.count() == 0) +- return; +- +- // try to find the bounding box +- // this is simple convex hull technique, the bounding box might not be +- // accurate but that should be enough for this purpose +- libwpg::WPGPoint p = path.element(0).point; +- libwpg::WPGPoint q = path.element(0).point; +- for(unsigned k = 0; k < path.count(); k++) +- { +- libwpg::WPGPathElement element = path.element(k); +- p.x = (p.x > element.point.x) ? element.point.x : p.x; +- p.y = (p.y > element.point.y) ? element.point.y : p.y; +- q.x = (q.x < element.point.x) ? element.point.x : q.x; +- q.y = (q.y < element.point.y) ? element.point.y : q.y; +- if(element.type == libwpg::WPGPathElement::CurveToElement) +- { +- p.x = (p.x > element.extra1.x) ? element.extra1.x : p.x; +- p.y = (p.y > element.extra1.y) ? element.extra1.y : p.y; +- q.x = (q.x < element.extra1.x) ? element.extra1.x : q.x; +- q.y = (q.y < element.extra1.y) ? element.extra1.y : q.y; +- p.x = (p.x > element.extra2.x) ? element.extra2.x : p.x; +- p.y = (p.y > element.extra2.y) ? element.extra2.y : p.y; +- q.x = (q.x < element.extra2.x) ? element.extra2.x : q.x; +- q.y = (q.y < element.extra2.y) ? element.extra2.y : q.y; +- } +- } +- double vw = q.x - p.x; +- double vh = q.y - p.y; +- +- writeStyle(); +- +- OpenTagGraphicsElement *pDrawPathElement = new OpenTagGraphicsElement("draw:path"); +- m_value.str(""); +- m_value << "gr" << m_styleIndex-1; +- pDrawPathElement->addAttribute("draw:style-name", m_value.str()); +- m_value.str(""); +- pDrawPathElement->addAttribute("draw:text-style-name", "P1"); +- pDrawPathElement->addAttribute("draw:layer", "layout"); +- m_value << doubleToString(p.x) << "in"; +- pDrawPathElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(p.y) << "in"; +- pDrawPathElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(vw) << "in"; +- pDrawPathElement->addAttribute("svg:width", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(vh) << "in"; +- pDrawPathElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << "0 0 " << (int)(vw*2540) << " " << (int)(vh*2540); +- pDrawPathElement->addAttribute("svg:viewBox", m_value.str()); +- m_value.str(""); +- +- for(unsigned i = 0; i < path.count(); i++) +- { +- libwpg::WPGPathElement element = path.element(i); +- libwpg::WPGPoint point = element.point; +- switch(element.type) +- { +- // 2540 is 2.54*1000, 2.54 in = 1 in +- case libwpg::WPGPathElement::MoveToElement: +- m_value << "M" << (int)((point.x-p.x)*2540) << " "; +- m_value << (int)((point.y-p.y)*2540); +- break; +- +- case libwpg::WPGPathElement::LineToElement: +- m_value << "L" << (int)((point.x-p.x)*2540) << " "; +- m_value << (int)((point.y-p.y)*2540); +- break; +- +- case libwpg::WPGPathElement::CurveToElement: +- m_value << "C" << (int)((element.extra1.x-p.x)*2540) << " "; +- m_value << (int)((element.extra1.y-p.y)*2540) << " "; +- m_value << (int)((element.extra2.x-p.x)*2540) << " "; +- m_value << (int)((element.extra2.y-p.y)*2540) << " "; +- m_value << (int)((point.x-p.x)*2540) << " "; +- m_value << (int)((point.y-p.y)*2540); +- break; +- +- default: +- break; +- } +- } +- if(path.closed) +- m_value << " Z"; +- pDrawPathElement->addAttribute("svg:d", m_value.str()); +- m_value.str(""); +- mBodyElements.push_back(static_cast(pDrawPathElement)); +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:path"))); +-} +- +- +-void OdgExporter::drawBitmap(const libwpg::WPGBitmap& bitmap) +-{ +- OpenTagGraphicsElement *pDrawFrameElement = new OpenTagGraphicsElement("draw:frame"); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.x1) << "in"; +- pDrawFrameElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.y1) << "in"; +- pDrawFrameElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.height()) << "in"; +- pDrawFrameElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(bitmap.rect.width()) << "in"; +- pDrawFrameElement->addAttribute("svg:width", m_value.str()); +- mBodyElements.push_back(static_cast(pDrawFrameElement)); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("office:binary-data"))); +- +- libwpg::WPGString base64Binary; +- bitmap.generateBase64DIB(base64Binary); +- mBodyElements.push_back(static_cast(new CharDataGraphicsElement(base64Binary.cstr()))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("office:binary-data"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:frame"))); +-} +- +-void OdgExporter::drawImageObject(const libwpg::WPGBinaryData& binaryData) +-{ +- if (binaryData.mimeType.length() <= 0) +- return; +- OpenTagGraphicsElement *pDrawFrameElement = new OpenTagGraphicsElement("draw:frame"); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.x1) << "in"; +- pDrawFrameElement->addAttribute("svg:x", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.y1) << "in"; +- pDrawFrameElement->addAttribute("svg:y", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.height()) << "in"; +- pDrawFrameElement->addAttribute("svg:height", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(binaryData.rect.width()) << "in"; +- pDrawFrameElement->addAttribute("svg:width", m_value.str()); +- mBodyElements.push_back(static_cast(pDrawFrameElement)); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new OpenTagGraphicsElement("office:binary-data"))); +- +- libwpg::WPGString base64Binary = binaryData.getBase64Data(); +- mBodyElements.push_back(static_cast(new CharDataGraphicsElement(base64Binary.cstr()))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("office:binary-data"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:image"))); +- +- mBodyElements.push_back(static_cast(new CloseTagGraphicsElement("draw:frame"))); +-} +- +- +-static std::string colorToHex(const libwpg::WPGColor& color) +-{ +- char hexdigits[] = "0123456789abcdef"; +- char buffer[] = "123456"; +- buffer[0] = hexdigits[(color.red >> 4) & 15]; +- buffer[1] = hexdigits[color.red & 15]; +- buffer[2] = hexdigits[(color.green >> 4) & 15]; +- buffer[3] = hexdigits[color.green & 15]; +- buffer[4] = hexdigits[(color.blue >> 4) & 15]; +- buffer[5] = hexdigits[color.blue & 15]; +- return std::string(buffer); +-} +- +-void OdgExporter::writeStyle() +-{ +- m_value.str(""); +- m_name.str(""); +- +- if(!m_pen.solid && (m_pen.dashArray.count() >=2 ) ) +- { +- // ODG only supports dashes with the same length of spaces inbetween +- // here we take the first space and assume everything else the same +- // note that dash length is written in percentage +- double distance = m_pen.dashArray.at(1); +- OpenTagGraphicsElement *tmpDrawStrokeDashElement = new OpenTagGraphicsElement("draw:stroke-dash"); +- tmpDrawStrokeDashElement->addAttribute("draw:style", "rect"); +- m_value << "Dash_" << m_dashIndex++; +- tmpDrawStrokeDashElement->addAttribute("draw:name", m_value.str()); +- m_value.str(""); +- m_value << doubleToString(distance*100) << "%"; +- tmpDrawStrokeDashElement->addAttribute("draw:distance", m_value.str()); +- m_value.str(""); +- for(unsigned i = 0; i < m_pen.dashArray.count()/2; i++) +- { +- m_name << "draw:dots" << i+1; +- tmpDrawStrokeDashElement->addAttribute(m_name.str(), "1"); +- m_name.str(""); +- m_name << "draw:dots" << i+1 << "-length"; +- m_value << doubleToString(100*m_pen.dashArray.at(i*2)) << "%"; +- tmpDrawStrokeDashElement->addAttribute(m_name.str(), m_value.str()); +- m_name.str(""); +- m_value.str(""); +- } +- mStrokeDashElements.push_back(static_cast(tmpDrawStrokeDashElement)); +- mStrokeDashElements.push_back(static_cast(new CloseTagGraphicsElement("draw:stroke-dash"))); +- } +- +- if(m_brush.style == libwpg::WPGBrush::Gradient) +- { +- OpenTagGraphicsElement *tmpDrawGradientElement = new OpenTagGraphicsElement("draw:gradient"); +- tmpDrawGradientElement->addAttribute("draw:style", "linear"); +- m_value << "Gradient_" << m_gradientIndex++; +- tmpDrawGradientElement->addAttribute("draw:name", m_value.str()); +- m_value.str(""); +- +- // ODG angle unit is 0.1 degree +- double angle = -m_brush.gradient.angle(); +- while(angle < 0) +- angle += 360; +- while(angle > 360) +- angle -= 360; +- +- m_value << (unsigned)(angle*10); +- tmpDrawGradientElement->addAttribute("draw:angle", m_value.str()); +- m_value.str(""); +- +- libwpg::WPGColor startColor = m_brush.gradient.stopColor(0); +- libwpg::WPGColor stopColor = m_brush.gradient.stopColor(1); +- m_value << "#" << colorToHex(startColor); +- tmpDrawGradientElement->addAttribute("draw:start-color", m_value.str()); +- m_value.str(""); +- m_value << "#" << colorToHex(stopColor); +- tmpDrawGradientElement->addAttribute("draw:end-color", m_value.str()); +- m_value.str(""); +- tmpDrawGradientElement->addAttribute("draw:start-intensity", "100%"); +- tmpDrawGradientElement->addAttribute("draw:end-intensity", "100%"); +- tmpDrawGradientElement->addAttribute("draw:border", "0%"); +- mGradientElements.push_back(static_cast(tmpDrawGradientElement)); +- mGradientElements.push_back(static_cast(new CloseTagGraphicsElement("draw:gradient"))); +- } +- +- OpenTagGraphicsElement *tmpStyleStyleElement = new OpenTagGraphicsElement("style:style"); +- m_value << "gr" << m_styleIndex; +- tmpStyleStyleElement->addAttribute("style:name", m_value.str()); +- m_value.str(""); +- tmpStyleStyleElement->addAttribute("style:family", "graphic"); +- tmpStyleStyleElement->addAttribute("style:parent-style-name", "standard"); +- mAutomaticStylesElements.push_back(static_cast(tmpStyleStyleElement)); +- +- OpenTagGraphicsElement *tmpStyleGraphicPropertiesElement = new OpenTagGraphicsElement("style:graphic-properties"); +- +- if(m_pen.width > 0.0) +- { +- m_value << doubleToString(m_pen.width) << "in"; +- tmpStyleGraphicPropertiesElement->addAttribute("svg:stroke-width", m_value.str()); +- m_value.str(""); +- m_value << "#" << colorToHex(m_pen.foreColor); +- tmpStyleGraphicPropertiesElement->addAttribute("svg:stroke-color", m_value.str()); +- m_value.str(""); +- +- if(!m_pen.solid) +- { +- tmpStyleGraphicPropertiesElement->addAttribute("draw:stroke", "dash"); +- m_value << "Dash_" << m_dashIndex-1; +- tmpStyleGraphicPropertiesElement->addAttribute("draw:stroke-dash", m_value.str()); +- m_value.str(""); +- } +- } +- else +- tmpStyleGraphicPropertiesElement->addAttribute("draw:stroke", "none"); +- +- if(m_brush.style == libwpg::WPGBrush::NoBrush) +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill", "none"); +- +- if(m_brush.style == libwpg::WPGBrush::Solid) +- { +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill", "solid"); +- m_value << "#" << colorToHex(m_brush.foreColor); +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill-color", m_value.str()); +- m_value.str(""); +- } +- +- if(m_brush.style == libwpg::WPGBrush::Gradient) +- { +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill", "gradient"); +- m_value << "Gradient_" << m_gradientIndex-1; +- tmpStyleGraphicPropertiesElement->addAttribute("draw:fill-gradient-name", m_value.str()); +- m_value.str(""); +- } +- +- mAutomaticStylesElements.push_back(static_cast(tmpStyleGraphicPropertiesElement)); +- mAutomaticStylesElements.push_back(static_cast(new CloseTagGraphicsElement("style:graphic-properties"))); +- +- mAutomaticStylesElements.push_back(static_cast(new CloseTagGraphicsElement("style:style"))); +- m_styleIndex++; +-} +diff -Nur ./filters/karbon/wpg/import/OdgExporter.hxx ./filters/karbon/wpg/import/OdgExporter.hxx +--- ./filters/karbon/wpg/import/OdgExporter.hxx 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/OdgExporter.hxx 1970-01-01 01:00:00.000000000 +0100 +@@ -1,116 +0,0 @@ +-/* libwpg +- * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org) +- * +- * This library is free software; you can redistribute it and/or +- * modify it under the terms of the GNU Library General Public +- * License as published by the Free Software Foundation; either +- * version 2 of the License, or (at your option) any later version. +- * +- * This library 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 +- * Library General Public License for more details. +- * +- * You should have received a copy of the GNU Library General Public +- * License along with this library; if not, write to the +- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +- * Boston, MA 02111-1301 USA +- * +- * For further information visit http://libwpg.sourceforge.net +- */ +- +-/* "This product is not manufactured, approved, or supported by +- * Corel Corporation or Corel Corporation Limited." +- */ +- +-#ifndef __ODGEXPORTER_H__ +-#define __ODGEXPORTER_H__ +- +-#include +-#include +-#include +- +-#include +-#include "GraphicsElement.hxx" +- +-class OdgExporter : public libwpg::WPGPaintInterface { +-public: +- explicit OdgExporter(GraphicsHandler *pHandler, +- const bool isFlatXML = false); +- ~OdgExporter(); +- +-#if LIBWPG_VERSION_MINOR<2 +- void startGraphics(double imageWidth, double imageHeight); +- void endGraphics(); +- void startLayer(unsigned int id); +- void endLayer(unsigned int id); +- +- void setPen(const libwpg::WPGPen& pen); +- void setBrush(const libwpg::WPGBrush& brush); +- void setFillRule(FillRule rule); +- +- void drawRectangle(const libwpg::WPGRect& rect, double rx, double ry); +- void drawEllipse(const libwpg::WPGPoint& center, double rx, double ry); +- void drawPolygon(const libwpg::WPGPointArray& vertices); +- void drawPath(const libwpg::WPGPath& path); +- void drawBitmap(const libwpg::WPGBitmap& bitmap); +- void drawImageObject(const libwpg::WPGBinaryData& binaryData); +- +-private: +- std::vector mBodyElements; +- std::vector mAutomaticStylesElements; +- std::vector mStrokeDashElements; +- std::vector mGradientElements; +- GraphicsHandler *mpHandler; +- +- libwpg::WPGPen m_pen; +- libwpg::WPGBrush m_brush; +- FillRule m_fillRule; +- int m_gradientIndex; +- int m_dashIndex; +- int m_styleIndex; +- void writeStyle(); +- std::ostringstream m_value, m_name; +- double m_width, m_height; +- const bool m_isFlatXML; +-#else +- virtual void startGraphics(const ::WPXPropertyList &propList); +- virtual void endGraphics(); +- virtual void setStyle(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &gradient); +- virtual void startLayer(const ::WPXPropertyList &propList); +- virtual void endLayer(); +- virtual void drawRectangle(const ::WPXPropertyList& propList); +- virtual void drawEllipse(const ::WPXPropertyList& propList); +- virtual void drawPolygon(const ::WPXPropertyListVector &vertices); +- virtual void drawPath(const ::WPXPropertyListVector &path); +- virtual void drawGraphicObject(const ::WPXPropertyList &propList, const ::WPXBinaryData &binaryData); +- virtual void startEmbeddedGraphics(const ::WPXPropertyList &propList); +- virtual void endEmbeddedGraphics(); +- virtual void drawPolyline(const ::WPXPropertyListVector &vertices); +- virtual void startTextObject(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &path); +- virtual void endTextObject(); +- virtual void startTextLine(const ::WPXPropertyList &propList); +- virtual void endTextLine(); +- virtual void startTextSpan(const ::WPXPropertyList &propList); +- virtual void endTextSpan(); +- virtual void insertText(const ::WPXString &str); +- +- +-private: +- std::vector mBodyElements; +- std::vector mAutomaticStylesElements; +- std::vector mStrokeDashElements; +- std::vector mGradientElements; +- GraphicsHandler *mpHandler; +- +- int m_gradientIndex; +- int m_dashIndex; +- int m_styleIndex; +- void writeStyle(); +- std::ostringstream m_value, m_name; +- double m_width, m_height; +- const bool m_isFlatXML; +-#endif +-}; +- +-#endif // __ODGEXPORTER_H__ +diff -Nur ./filters/karbon/wpg/import/WPGImport.cpp ./filters/karbon/wpg/import/WPGImport.cpp +--- ./filters/karbon/wpg/import/WPGImport.cpp 2011-01-15 21:05:35.000000000 +0100 ++++ ./filters/karbon/wpg/import/WPGImport.cpp 2011-01-02 17:46:15.000000000 +0100 +@@ -20,28 +20,26 @@ + #include + #include + +-#include +-#include +-#include +- +-#include + #include + #include + #include ++#include ++ + #include ++#include + +-#include ++ ++#include ++#include + + #include + #if LIBWPG_VERSION_MINOR<2 + #include + #else + #include ++#include + #endif + +-#include "FileOutputHandler.hxx" +-#include "OdgExporter.hxx" +- + #include + + K_PLUGIN_FACTORY(WPGImportFactory, registerPlugin();) +@@ -56,35 +54,13 @@ + { + } + +-static QByteArray createManifest() +-{ +- KoXmlWriter* manifestWriter; +- QByteArray manifestData; +- QBuffer manifestBuffer(&manifestData); +- +- manifestBuffer.open(QIODevice::WriteOnly); +- manifestWriter = new KoXmlWriter(&manifestBuffer); +- +- manifestWriter->startDocument("manifest:manifest"); +- manifestWriter->startElement("manifest:manifest"); +- manifestWriter->addAttribute("xmlns:manifest", "urn:oasis:names:tc:openoffice:xmlns:manifest:1.0"); +- manifestWriter->addManifestEntry("/", "application/vnd.oasis.opendocument.graphics"); +- //manifestWriter->addManifestEntry( "styles.xml", "text/xml" ); +- manifestWriter->addManifestEntry("content.xml", "text/xml"); +- manifestWriter->endElement(); +- manifestWriter->endDocument(); +- delete manifestWriter; +- +- return manifestData; +-} +- + + KoFilter::ConversionStatus WPGImport::convert(const QByteArray& from, const QByteArray& to) + { + if (from != "application/x-wpg") + return KoFilter::NotImplemented; + +- if (to != "application/vnd.oasis.opendocument.graphics") ++ if (to != "image/svg+xml") + return KoFilter::NotImplemented; + + #if LIBWPG_VERSION_MINOR<2 +@@ -96,6 +72,7 @@ + input = olestream; + } + } ++ libwpg::WPGString output; + #else + WPXInputStream* input = new WPXFileStream(m_chain->inputFile().toLocal8Bit()); + if (input->isOLEStream()) { +@@ -105,59 +82,31 @@ + input = olestream; + } + } ++ ::WPXString output; + #endif + + if (!libwpg::WPGraphics::isSupported(input)) { +- std::cerr << "ERROR: Unsupported file format (unsupported version) or file is encrypted!" << std::endl; ++ kWarning() << "ERROR: Unsupported file format (unsupported version) or file is encrypted!"; + delete input; + return KoFilter::NotImplemented; + } + +- // do the conversion +- std::ostringstream tmpStringStream; +- FileOutputHandler tmpHandler(tmpStringStream); +- OdgExporter exporter(&tmpHandler); +- libwpg::WPGraphics::parse(input, &exporter); +- delete input; +- +- +- // create output store +- KoStore* storeout; +- storeout = KoStore::createStore(m_chain->outputFile(), KoStore::Write, +- "application/vnd.oasis.opendocument.graphics", KoStore::Zip); +- +- if (!storeout) { +- kWarning() << "Couldn't open the requested file."; +- return KoFilter::FileNotFound; +- } +- +-#if 0 +- if (!storeout->open("styles.xml")) { +- kWarning() << "Couldn't open the file 'styles.xml'."; +- return KoFilter::CreationError; ++ if (!libwpg::WPGraphics::generateSVG(input, output)) { ++ kWarning() << "ERROR: SVG Generation failed!"; ++ delete input; ++ return KoFilter::ParsingError; + } +- //storeout->write( createStyles() ); +- storeout->close(); +-#endif + +- if (!storeout->open("content.xml")) { +- kWarning() << "Couldn't open the file 'content.xml'."; +- return KoFilter::CreationError; +- } +- storeout->write(tmpStringStream.str().c_str()); +- storeout->close(); ++ delete input; + +- // store document manifest +- storeout->enterDirectory("META-INF"); +- if (!storeout->open("manifest.xml")) { +- kWarning() << "Couldn't open the file 'META-INF/manifest.xml'."; +- return KoFilter::CreationError; ++ QFile outputFile(m_chain->outputFile()); ++ if(!outputFile.open(QIODevice::WriteOnly | QIODevice::Text)) { ++ kWarning() << "ERROR: Could not open output file" << m_chain->outputFile(); ++ return KoFilter::InternalError; + } +- storeout->write(createManifest()); +- storeout->close(); + +- // we are done! +- delete storeout; ++ outputFile.write(output.cstr()); ++ outputFile.close(); + + return KoFilter::OK; + } Property changes on: head/editors/koffice-kde4/files/patch-libwpg02-libwpd09 ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/editors/koffice-kde4/pkg-plist =================================================================== --- head/editors/koffice-kde4/pkg-plist (revision 271655) +++ head/editors/koffice-kde4/pkg-plist (revision 271656) @@ -1,3169 +1,3131 @@ bin/karbon bin/kexi +bin/kformula bin/koconverter bin/kplato bin/kplatowork bin/kpresenter bin/krita bin/kspread bin/kthesaurus bin/kword include/DebugPigment.h include/InsertSemanticObjectActionBase.h include/InsertSemanticObjectCreateAction.h include/InsertSemanticObjectReferenceAction.h +include/KWApplicationConfig.h +include/KWCanvas.h +include/KWCanvasBase.h +include/KWCanvasItem.h +include/KWDocument.h +include/KWFrameLayout.h +include/KWPage.h +include/KWPageManager.h +include/KWPageStyle.h +include/KWViewMode.h +include/KWord.h include/KoApplication.h include/KoApplicationAdaptor.h include/KoBasicHistogramProducers.h include/KoBookmark.h include/KoBookmarkManager.h include/KoBorder.h include/KoCanvasBase.h include/KoCanvasController.h +include/KoCanvasControllerWidget.h include/KoCanvasObserverBase.h include/KoCanvasSupervisor.h include/KoChannelInfo.h include/KoChartInterface.h include/KoChartModel.h -include/KoChildrenData.h include/KoColor.h include/KoColorConversionTransformation.h include/KoColorConversionTransformationAbstractFactory.h include/KoColorConversionTransformationFactory.h include/KoColorModelStandardIds.h include/KoColorPatch.h include/KoColorPopupAction.h include/KoColorProfile.h include/KoColorSetWidget.h include/KoColorSlider.h include/KoColorSpace.h include/KoColorSpaceAbstract.h include/KoColorSpaceConstants.h include/KoColorSpaceEngine.h +include/KoColorSpaceFactory.h include/KoColorSpaceMaths.h include/KoColorSpaceRegistry.h include/KoColorSpaceTraits.h include/KoColorTransformation.h include/KoColorTransformationFactory.h include/KoColorTransformationFactoryRegistry.h include/KoColumns.h include/KoCompositeOp.h +include/KoConfig.h include/KoConvolutionOp.h include/KoCopyController.h include/KoCutController.h include/KoDataCenterBase.h include/KoDockFactoryBase.h include/KoDockRegistry.h include/KoDockWidgetTitleBar.h include/KoDockWidgetTitleBarButton.h include/KoDocument.h include/KoDocumentEntry.h include/KoDocumentInfo.h include/KoDocumentRdf.h include/KoDocumentRdfBase.h include/KoDocumentSectionModel.h include/KoDom.h include/KoDpi.h include/KoDrag.h include/KoDragOdfSaveHelper.h include/KoDualColorButton.h include/KoEditColorSetDialog.h include/KoEmbeddedDocumentSaver.h include/KoEmbeddingFilter.h include/KoEventActionAddCommand.h include/KoEventActionRemoveCommand.h include/KoFactory.h include/KoFallBackColorTransformation.h include/KoFilter.h include/KoFilterChain.h include/KoFilterChainLinkList.h +include/KoFilterEffect.h +include/KoFilterEffectConfigWidgetBase.h +include/KoFilterEffectFactoryBase.h +include/KoFilterEffectLoadingContext.h +include/KoFilterEffectRegistry.h +include/KoFilterEffectRenderContext.h +include/KoFilterEffectStack.h include/KoFilterManager.h include/KoFlake.h include/KoFontFace.h include/KoFrameShape.h include/KoGenChange.h include/KoGenChanges.h include/KoGenStyle.h include/KoGenStyles.h include/KoGenericRegistry.h include/KoGenericRegistryModel.h include/KoGlobal.h include/KoGridData.h include/KoGuidesData.h include/KoHistogramProducer.h include/KoID.h include/KoImageCollection.h include/KoImageData.h include/KoImageSelectionWidget.h include/KoInlineObject.h +include/KoInlineObjectFactoryBase.h +include/KoInlineObjectRegistry.h include/KoInlineTextObjectManager.h include/KoInputDevice.h include/KoInsets.h include/KoIntegerMaths.h include/KoInteractionTool.h include/KoLabDarkenColorTransformation.h include/KoLineStyleSelector.h include/KoList.h include/KoLoadingShapeUpdater.h include/KoMainWindow.h include/KoMixColorsOp.h include/KoMixColorsOpImpl.h include/KoOasisSettings.h include/KoOdf.h include/KoOdfDocument.h include/KoOdfGraphicStyles.h include/KoOdfLoadingContext.h include/KoOdfNumberStyles.h include/KoOdfPaste.h include/KoOdfReadStore.h include/KoOdfStylesReader.h include/KoOdfWriteStore.h include/KoPACanvas.h +include/KoPACanvasBase.h +include/KoPACanvasItem.h include/KoPADocument.h include/KoPALoadingContext.h include/KoPAPageBase.h include/KoPAPageContainerModel.h include/KoPAUtil.h include/KoPAView.h +include/KoPAViewBase.h +include/KoPAViewMode.h include/KoPageApp.h include/KoPageFormat.h include/KoPageLayout.h include/KoPageLayoutDialog.h include/KoPageLayoutWidget.h include/KoPagePreviewWidget.h include/KoParameterToPathCommand.h include/KoPathCombineCommand.h include/KoPathControlPointMoveCommand.h include/KoPathFillRuleCommand.h include/KoPathPointInsertCommand.h include/KoPathPointMergeCommand.h include/KoPathPointMoveCommand.h include/KoPathPointRemoveCommand.h include/KoPathPointTypeCommand.h include/KoPathReverseCommand.h include/KoPathSegment.h include/KoPathSegmentTypeCommand.h include/KoPathSeparateCommand.h include/KoPointerEvent.h include/KoPositionSelector.h include/KoProgressBar.h include/KoProgressProxy.h include/KoProgressUpdater.h include/KoProperties.h include/KoRdfSemanticItem.h include/KoRdfSemanticItemViewSite.h include/KoRdfSemanticTree.h include/KoRdfSemanticTreeWidgetItem.h include/KoResourceItemChooser.h include/KoResourceManager.h include/KoResourceSelector.h include/KoSelection.h include/KoSemanticStylesheet.h include/KoSemanticStylesheetsEditor.h include/KoShadowConfigWidget.h include/KoShape.h include/KoShapeAlignCommand.h include/KoShapeApplicationData.h include/KoShapeBackgroundCommand.h include/KoShapeBorderCommand.h include/KoShapeBorderModel.h include/KoShapeConfigWidgetBase.h include/KoShapeContainer.h +include/KoShapeContainerDefaultModel.h include/KoShapeContainerModel.h include/KoShapeController.h include/KoShapeControllerBase.h include/KoShapeCreateCommand.h include/KoShapeDeleteCommand.h include/KoShapeDistributeCommand.h include/KoShapeFactoryBase.h include/KoShapeGroup.h include/KoShapeGroupCommand.h include/KoShapeLayer.h include/KoShapeLoadingContext.h include/KoShapeManager.h include/KoShapeMoveCommand.h include/KoShapeOdfSaveHelper.h include/KoShapePainter.h include/KoShapeRegistry.h include/KoShapeRenameCommand.h include/KoShapeReorderCommand.h include/KoShapeSavingContext.h include/KoShapeShadowCommand.h include/KoShapeShearCommand.h include/KoShapeSizeCommand.h include/KoShapeTransformCommand.h include/KoShapeUngroupCommand.h include/KoShapeUserData.h include/KoSharedSavingData.h include/KoSopranoTableModel.h include/KoSopranoTableModelDelegate.h include/KoStandardAction.h include/KoStore.h include/KoStoreDevice.h include/KoStyleStack.h include/KoSubpathRemoveCommand.h -include/KoTableInterface.h include/KoText.h include/KoTextAnchor.h include/KoTextBlockBorderData.h include/KoTextBlockData.h include/KoTextDocument.h include/KoTextEditingFactory.h include/KoTextEditingPlugin.h include/KoTextEditingRegistry.h include/KoTextEditor.h include/KoTextInlineRdf.h include/KoTextLocator.h include/KoTextMeta.h +include/KoTextOnShapeContainer.h include/KoTextPage.h include/KoTextPaste.h include/KoTextRdfCore.h include/KoTextShapeData.h +include/KoTextShapeDataBase.h include/KoToolBase.h include/KoToolFactoryBase.h include/KoToolManager.h include/KoToolProxy.h include/KoToolRegistry.h include/KoToolSelection.h include/KoTriangleColorSelector.h include/KoUniColorChooser.h include/KoUniColorDialog.h include/KoUnit.h include/KoUpdater.h include/KoVariable.h -include/KoVariableFactory.h include/KoVariableManager.h -include/KoVariableRegistry.h include/KoVersionDialog.h include/KoView.h include/KoViewAdaptor.h include/KoViewConverter.h include/KoXYColorSelector.h include/KoXmlNS.h include/KoXmlReader.h include/KoXmlReaderForward.h include/KoXmlWriter.h include/KoZoomAction.h include/KoZoomController.h include/KoZoomHandler.h include/KoZoomInput.h include/KoZoomMode.h include/RdfForward.h include/RdfSemanticTreeWidgetAction.h include/RdfSemanticTreeWidgetSelectAction.h include/changetracker/KoChangeTracker.h include/changetracker/KoChangeTrackerElement.h include/changetracker/KoDeleteChangeMarker.h -include/config-openexr.h -include/config-opengl.h include/flake_export.h include/kexi/forms/FormWidget.h include/kexi/forms/FormWidgetInterface.h include/kexi/forms/WidgetInfo.h +include/kexi/forms/WidgetTreeWidget.h include/kexi/forms/objecttree.h -include/kexi/forms/objecttreeview.h include/kexi/forms/widgetfactory.h include/kexi/forms/widgetlibrary.h include/kexi/forms/widgetwithsubpropertiesinterface.h include/kis_base_node.h include/kis_base_processor.h include/kis_canvas2.h include/kis_canvas_decoration.h include/kis_config_widget.h include/kis_convolution_kernel.h include/kis_convolution_painter.h include/kis_convolution_worker.h +include/kis_coordinates_converter.h include/kis_cubic_curve.h include/kis_cursor.h include/kis_debug.h include/kis_default_bounds.h include/kis_distance_information.h include/kis_filter.h include/kis_filter_configuration.h include/kis_filter_registry.h include/kis_filter_strategy.h include/kis_generator.h include/kis_generator_registry.h include/kis_generic_colorspace.h include/kis_global.h include/kis_image.h include/kis_iterator.h include/kis_iterator_pixel_trait.h include/kis_iterators_pixel.h include/kis_mask.h include/kis_multi_bool_filter_widget.h include/kis_multi_double_filter_widget.h include/kis_multi_integer_filter_widget.h include/kis_node.h include/kis_node_facade.h include/kis_node_graph_listener.h include/kis_paint_device.h include/kis_painter.h +include/kis_perspectivetransform_worker.h include/kis_processing_information.h include/kis_properties_configuration.h include/kis_random_accessor.h include/kis_selection.h include/kis_serializable_configuration.h include/kis_shared.h -include/kis_shared_data.h include/kis_shared_ptr.h include/kis_shared_ptr_vector.h include/kis_tiled_data_manager.h include/kis_tool.h include/kis_transaction.h include/kis_transform_worker.h include/kis_types.h +include/kis_ui_types.h include/kis_view2.h +include/kis_warptransform_worker.h include/koChart.h include/kofficeversion.h include/komain_export.h include/koodf_export.h include/kopageapp_export.h include/kotext_export.h include/kowidgets_export.h include/krita_export.h +include/kword_export.h include/pigment_export.h include/styles/KoCharacterStyle.h include/styles/KoListLevelProperties.h include/styles/KoListStyle.h include/styles/KoParagraphStyle.h include/styles/KoSectionStyle.h include/styles/KoStyleManager.h include/styles/KoTableCellStyle.h -include/styles/KoTableColumnFormat.h include/styles/KoTableColumnStyle.h include/styles/KoTableFormat.h -include/styles/KoTableRowFormat.h include/styles/KoTableRowStyle.h +lib/kde4/Filterkpr2odf.so +lib/kde4/abiwordexport.so +lib/kde4/abiwordimport.so +lib/kde4/amiproexport.so +lib/kde4/amiproimport.so +lib/kde4/applixspreadimport.so +lib/kde4/applixwordimport.so lib/kde4/artistictextshape.so +lib/kde4/asciiexport.so +lib/kde4/asciiimport.so lib/kde4/autocorrect.so lib/kde4/changecase.so lib/kde4/chartshape.so +lib/kde4/commentshape.so +lib/kde4/csvexport.so +lib/kde4/csvimport.so +lib/kde4/dbaseimport.so +lib/kde4/dcmimport.so lib/kde4/defaulttools.so lib/kde4/divineproportionshape.so +lib/kde4/docbookexport.so +lib/kde4/docximport.so +lib/kde4/excelimporttodoc.so lib/kde4/formulashape.so +lib/kde4/generickofilter.so +lib/kde4/gnumericexport.so +lib/kde4/gnumericimport.so +lib/kde4/hancomwordimport.so +lib/kde4/htmlexport.so +lib/kde4/htmlimport.so +lib/kde4/htmlodf_export.so +lib/kde4/icalendarexport.so +lib/kde4/karbon1ximport.so lib/kde4/karbon_flattenpathplugin.so lib/kde4/karbon_refinepathplugin.so lib/kde4/karbon_roundcornersplugin.so lib/kde4/karbon_whirlpinchplugin.so +%%EPS%%lib/kde4/karbonepsimport.so lib/kde4/karbonfiltereffects.so +lib/kde4/karbonpart.so +lib/kde4/karbonpdfimport.so +lib/kde4/karbonpngexport.so +lib/kde4/karbonsvgexport.so +lib/kde4/karbonsvgimport.so lib/kde4/karbontools.so lib/kde4/kexidb_mysqldriver.so lib/kde4/kexidb_pqxxsqldriver.so lib/kde4/kexidb_sqlite3driver.so +%%SYBASE%%lib/kde4/kexidb_sybasedriver.so %%XBASE%%lib/kde4/kexidb_xbasedriver.so lib/kde4/kexihandler_csv_importexport.so lib/kde4/kexihandler_form.so lib/kde4/kexihandler_migration.so lib/kde4/kexihandler_query.so lib/kde4/kexihandler_report.so lib/kde4/kexihandler_script.so lib/kde4/kexihandler_table.so lib/kde4/keximigrate_kspread.so lib/kde4/keximigrate_mdb.so lib/kde4/keximigrate_mysql.so lib/kde4/keximigrate_pqxx.so %%SYBASE%%lib/kde4/keximigrate_sybase.so lib/kde4/keximigrate_txt.so %%XBASE%%lib/kde4/keximigrate_xbase.so lib/kde4/kexirelationdesignshape.so lib/kde4/kformdesigner_containers.so lib/kde4/kformdesigner_kexidbwidgets.so lib/kde4/kformdesigner_stdwidgets.so +lib/kde4/kformulapart.so +lib/kde4/kodocinfopropspage.so lib/kde4/kofficedockers.so lib/kde4/kofficescan.so lib/kde4/kofficethumbnail.so lib/kde4/kolcmsengine.so lib/kde4/kopabackgroundtool.so +lib/kde4/koreport_barcodeplugin.so +lib/kde4/koreport_chartplugin.so +lib/kde4/koreport_shapeplugin.so +lib/kde4/kounavailpart.so +lib/kde4/kplatopart.so +lib/kde4/kplatoworkpart.so lib/kde4/kpr_pageeffect_barwipe.so lib/kde4/kpr_pageeffect_clockwipe.so lib/kde4/kpr_pageeffect_edgewipe.so +lib/kde4/kpr_pageeffect_fade.so lib/kde4/kpr_pageeffect_iriswipe.so lib/kde4/kpr_pageeffect_matrixwipe.so lib/kde4/kpr_pageeffect_slidewipe.so +lib/kde4/kpr_pageeffect_spacerotation.so +lib/kde4/kpr_pageeffect_swapeffect.so lib/kde4/kpr_shapeanimation_example.so lib/kde4/kpresentereventactions.so +lib/kde4/kpresenterpart.so lib/kde4/kpresentertoolanimation.so lib/kde4/kprvariables.so lib/kde4/krita_colorspaces_extensions.so %%GTL%%lib/kde4/krita_ctlcs_plugin.so -lib/kde4/kritabackgrounds.so +lib/kde4/krita_raw_import.so lib/kde4/kritabigbrother.so lib/kde4/kritablurfilter.so -lib/kde4/kritabracketing2hdr.so -lib/kde4/kritabumpmap.so -lib/kde4/kritachalkpaintop.so +lib/kde4/kritabmpexport.so +lib/kde4/kritabmpimport.so lib/kde4/kritacolorgenerator.so lib/kde4/kritacolorrange.so +lib/kde4/kritacolorselectorng.so lib/kde4/kritacolorsfilters.so lib/kde4/kritacolorspaceconversion.so lib/kde4/kritaconvolutionfilters.so lib/kde4/kritacurvepaintop.so lib/kde4/kritadefaultdockers.so lib/kde4/kritadefaultpaintops.so lib/kde4/kritadefaulttools.so lib/kde4/kritadeformpaintop.so lib/kde4/kritadigitalmixer.so lib/kde4/kritadodgeburn.so lib/kde4/kritadropshadow.so lib/kde4/kritadynapaintop.so lib/kde4/kritaembossfilter.so lib/kde4/kritaexample.so +%%GTL%%lib/kde4/kritaexrexport.so +%%GTL%%lib/kde4/kritaexrimport.so lib/kde4/kritaextensioncolorsfilters.so lib/kde4/kritaextensionsmanager.so lib/kde4/kritafastcolortransferfilter.so lib/kde4/kritafilterop.so +lib/kde4/kritagifimport.so lib/kde4/kritagridpaintop.so lib/kde4/kritahairypaintop.so +lib/kde4/kritahatchingpaintop.so lib/kde4/kritahistogram.so lib/kde4/kritaimageenhancement.so lib/kde4/kritaimagesize.so +lib/kde4/kritajp2export.so +lib/kde4/kritajp2import.so +lib/kde4/kritajpegexport.so +lib/kde4/kritajpegimport.so lib/kde4/kritalayercompose.so lib/kde4/kritalevelfilter.so lib/kde4/kritametadataeditor.so lib/kde4/kritamodifyselection.so lib/kde4/kritanoisefilter.so -lib/kde4/kritaoilpaintfilter.so +lib/kde4/kritaoraexport.so +lib/kde4/kritaoraimport.so +lib/kde4/kritapart.so lib/kde4/kritaparticlepaintop.so +lib/kde4/kritapdfimport.so lib/kde4/kritapixelizefilter.so +lib/kde4/kritapngexport.so +lib/kde4/kritapngimport.so +lib/kde4/kritappmexport.so +lib/kde4/kritappmimport.so lib/kde4/kritaraindropsfilter.so lib/kde4/kritarandompickfilter.so lib/kde4/kritarotateimage.so lib/kde4/kritaroundcornersfilter.so lib/kde4/kritarulerassistanttool.so -lib/kde4/kritascripting.so lib/kde4/kritaselectiontools.so lib/kde4/kritaseparatechannels.so lib/kde4/kritashearimage.so %%GTL%%lib/kde4/kritashivafilters.so %%GTL%%lib/kde4/kritashivagenerators.so +lib/kde4/kritasketchpaintop.so lib/kde4/kritasmallcolorselector.so -lib/kde4/kritasmalltilesfilter.so -lib/kde4/kritasobelfilter.so -lib/kde4/kritasoftpaintop.so lib/kde4/kritaspecificcolorselector.so lib/kde4/kritaspraypaintop.so +lib/kde4/kritatiffexport.so +lib/kde4/kritatiffimport.so lib/kde4/kritatogether.so lib/kde4/kritatonemapping.so lib/kde4/kritatoolcrop.so lib/kde4/kritatooldyna.so lib/kde4/kritatoolgrid.so lib/kde4/kritatoolperspectivegrid.so -lib/kde4/kritatoolperspectivetransform.so lib/kde4/kritatoolpolygon.so lib/kde4/kritatoolpolyline.so lib/kde4/kritatoolstar.so lib/kde4/kritatooltransform.so lib/kde4/kritatrianglecolorselector.so lib/kde4/kritaunsharpfilter.so lib/kde4/kritawavefilter.so +lib/kde4/kritaxcfimport.so lib/kde4/krossmodulekexidb.so lib/kde4/krossmodulekplato.so lib/kde4/krossmodulekspread.so lib/kde4/krossmodulekword.so lib/kde4/kspread_plugin_tool_calendar.so lib/kde4/kspreadbitopsmodule.so lib/kde4/kspreadconversionmodule.so lib/kde4/kspreaddatabasemodule.so lib/kde4/kspreaddatetimemodule.so lib/kde4/kspreadengineeringmodule.so lib/kde4/kspreadfinancialmodule.so +lib/kde4/kspreadhtmlexport.so +lib/kde4/kspreadhtmlimport.so lib/kde4/kspreadinformationmodule.so +lib/kde4/kspreadlatexexport.so lib/kde4/kspreadlogicmodule.so lib/kde4/kspreadmathmodule.so +lib/kde4/kspreadpart.so lib/kde4/kspreadreferencemodule.so +lib/kde4/kspreadsolver.so lib/kde4/kspreadstatisticalmodule.so lib/kde4/kspreadtextmodule.so lib/kde4/kspreadtrigonometrymodule.so -lib/kde4/libFilterkpr2odf.so -lib/kde4/libabiwordexport.so -lib/kde4/libabiwordimport.so -lib/kde4/libamiproexport.so -lib/kde4/libamiproimport.so -lib/kde4/libapplixspreadimport.so -lib/kde4/libapplixwordimport.so -lib/kde4/libasciiexport.so -lib/kde4/libasciiimport.so -lib/kde4/libcsvexport.so -lib/kde4/libcsvimport.so -lib/kde4/libdbaseimport.so -lib/kde4/libdocbookexport.so -lib/kde4/libdocximport.so -lib/kde4/libexcelimport.so -lib/kde4/libgenerickofilter.so -lib/kde4/libgnumericexport.so -lib/kde4/libgnumericimport.so -lib/kde4/libhancomwordimport.so -lib/kde4/libhtmlexport.so -lib/kde4/libhtmlimport.so -lib/kde4/libicalendarexport.so -lib/kde4/libkarbon1ximport.so -%%EPS%%lib/kde4/libkarbonepsimport.so -lib/kde4/libkarbonpart.so -lib/kde4/libkarbonpdfimport.so -lib/kde4/libkarbonpngexport.so -lib/kde4/libkarbonsvgexport.so -lib/kde4/libkarbonsvgimport.so -lib/kde4/libkchartgenericimageexport.so -lib/kde4/libkchartsvgexport.so -lib/kde4/libkformulapart.so -lib/kde4/libkounavailpart.so -lib/kde4/libkplatopart.so -lib/kde4/libkplatoworkpart.so -lib/kde4/libkpresenterpart.so -lib/kde4/libkrita_raw_import.so -lib/kde4/libkritabmpexport.so -lib/kde4/libkritabmpimport.so -%%GTL%%lib/kde4/libkritaexrexport.so -%%GTL%%lib/kde4/libkritaexrimport.so -lib/kde4/libkritagifimport.so -lib/kde4/libkritajp2export.so -lib/kde4/libkritajp2import.so -lib/kde4/libkritajpegexport.so -lib/kde4/libkritajpegimport.so -lib/kde4/libkritaoraexport.so -lib/kde4/libkritaoraimport.so -lib/kde4/libkritapart.so -lib/kde4/libkritapdfimport.so -lib/kde4/libkritapngexport.so -lib/kde4/libkritapngimport.so -lib/kde4/libkritappmexport.so -lib/kde4/libkritappmimport.so -lib/kde4/libkritapsdimport.so -lib/kde4/libkritatiffexport.so -lib/kde4/libkritatiffimport.so -lib/kde4/libkritaxcfimport.so -lib/kde4/libkspreadhtmlexport.so -lib/kde4/libkspreadhtmlimport.so -lib/kde4/libkspreadlatexexport.so -lib/kde4/libkspreadpart.so -lib/kde4/libkspreadsolver.so -lib/kde4/libkwordkword1dot3import.so -lib/kde4/libkwordpart.so -lib/kde4/liboowriterexport.so -lib/kde4/liboowriterimport.so -lib/kde4/libopencalcexport.so -lib/kde4/libopencalcimport.so -lib/kde4/libpalmdocexport.so -lib/kde4/libpalmdocimport.so -lib/kde4/libpowerpointimport.so -lib/kde4/libpptximport.so -lib/kde4/libqproimport.so -lib/kde4/librtfexport.so -lib/kde4/librtfimport.so -lib/kde4/libwmfexport.so -lib/kde4/libwmfimport.so -lib/kde4/libwmlexport.so -lib/kde4/libwmlimport.so -lib/kde4/libwpexport.so -lib/kde4/libwpgimport.so -lib/kde4/libwpimport.so -lib/kde4/libxlsximport.so -lib/kde4/libxsltexport.so -lib/kde4/libxsltimport.so +lib/kde4/kwordkword1dot3import.so +lib/kde4/kwordpart.so lib/kde4/musicshape.so +lib/kde4/okularGenerator_odp.so +lib/kde4/oowriterexport.so +lib/kde4/oowriterimport.so +lib/kde4/opencalcexport.so +lib/kde4/opencalcimport.so +lib/kde4/palmdocexport.so +lib/kde4/palmdocimport.so lib/kde4/paragraphtool.so lib/kde4/pathshapes.so lib/kde4/pictureshape.so +lib/kde4/pluginshape.so +lib/kde4/powerpointimport.so +lib/kde4/pptximport.so +lib/kde4/qproimport.so +lib/kde4/rtfexport.so +lib/kde4/rtfimport.so lib/kde4/spellcheck.so lib/kde4/spreadsheetshape.so lib/kde4/textshape.so lib/kde4/textvariables.so lib/kde4/thesaurustool.so -lib/kde4/vectorshape.so lib/kde4/videoshape.so +lib/kde4/wmfexport.so +lib/kde4/wmfimport.so +lib/kde4/wmlexport.so +lib/kde4/wmlimport.so +lib/kde4/wpexport.so +lib/kde4/wpgimport.so +lib/kde4/wpimport.so +lib/kde4/xlsximport.so +lib/kde4/xsltexport.so +lib/kde4/xsltimport.so lib/libchartshapelib.so -lib/libchartshapelib.so.7 -lib/libchartshapelib.so.7.0.0 +lib/libchartshapelib.so.8 +lib/libchartshapelib.so.8.0.0 lib/libflake.so -lib/libflake.so.7 -lib/libflake.so.7.0.0 +lib/libflake.so.8 +lib/libflake.so.8.0.0 lib/libkarboncommon.so -lib/libkarboncommon.so.7 -lib/libkarboncommon.so.7.0.0 +lib/libkarboncommon.so.8 +lib/libkarboncommon.so.8.0.0 lib/libkarbonui.so -lib/libkarbonui.so.7 -lib/libkarbonui.so.7.0.0 -lib/libkchartcommon.so -lib/libkchartcommon.so.7 -lib/libkchartcommon.so.7.0.0 +lib/libkarbonui.so.8 +lib/libkarbonui.so.8.0.0 lib/libkdchart.so -lib/libkdchart.so.7 -lib/libkdchart.so.7.0.0 +lib/libkdchart.so.8 +lib/libkdchart.so.8.0.0 lib/libkdeinit4_karbon.so lib/libkdeinit4_kplato.so lib/libkdeinit4_kplatowork.so lib/libkdeinit4_kpresenter.so lib/libkdeinit4_krita.so lib/libkdeinit4_kspread.so lib/libkdeinit4_kthesaurus.so lib/libkdeinit4_kword.so +lib/libkdeinit_kformula.so lib/libkexicore.so -lib/libkexicore.so.7 -lib/libkexicore.so.7.0.0 +lib/libkexicore.so.8 +lib/libkexicore.so.8.0.0 lib/libkexidatatable.so -lib/libkexidatatable.so.7 -lib/libkexidatatable.so.7.0.0 +lib/libkexidatatable.so.8 +lib/libkexidatatable.so.8.0.0 lib/libkexidb.so -lib/libkexidb.so.7 -lib/libkexidb.so.7.0.0 +lib/libkexidb.so.8 +lib/libkexidb.so.8.0.0 lib/libkexiextendedwidgets.so -lib/libkexiextendedwidgets.so.7.0.0 +lib/libkexiextendedwidgets.so.8 +lib/libkexiextendedwidgets.so.8.0.0 lib/libkexiformutils.so -lib/libkexiformutils.so.7 -lib/libkexiformutils.so.7.0.0 +lib/libkexiformutils.so.8 +lib/libkexiformutils.so.8.0.0 lib/libkexiguiutils.so -lib/libkexiguiutils.so.7 -lib/libkexiguiutils.so.7.0.0 +lib/libkexiguiutils.so.8 +lib/libkexiguiutils.so.8.0.0 lib/libkeximain.so -lib/libkeximain.so.7 -lib/libkeximain.so.7.0.0 +lib/libkeximain.so.8 +lib/libkeximain.so.8.0.0 lib/libkeximigrate.so -lib/libkeximigrate.so.7 -lib/libkeximigrate.so.7.0.0 +lib/libkeximigrate.so.8 +lib/libkeximigrate.so.8.0.0 lib/libkexirelationsview.so -lib/libkexirelationsview.so.7 -lib/libkexirelationsview.so.7.0.0 +lib/libkexirelationsview.so.8 +lib/libkexirelationsview.so.8.0.0 lib/libkexiutils.so -lib/libkexiutils.so.7 -lib/libkexiutils.so.7.0.0 +lib/libkexiutils.so.8 +lib/libkexiutils.so.8.0.0 lib/libkformdesigner.so -lib/libkformdesigner.so.7 -lib/libkformdesigner.so.7.0.0 +lib/libkformdesigner.so.8 +lib/libkformdesigner.so.8.0.0 lib/libkformulalib.so -lib/libkformulalib.so.7 -lib/libkformulalib.so.7.0.0 +lib/libkformulalib.so.8 +lib/libkformulalib.so.8.0.0 lib/libkformulaprivate.so -lib/libkformulaprivate.so.7 -lib/libkformulaprivate.so.7.0.0 +lib/libkformulaprivate.so.8 +lib/libkformulaprivate.so.8.0.0 lib/libkochart.so -lib/libkochart.so.7 -lib/libkochart.so.7.0.0 +lib/libkochart.so.8 +lib/libkochart.so.8.0.0 lib/libkokross.so -lib/libkokross.so.7 -lib/libkokross.so.7.0.0 +lib/libkokross.so.8 +lib/libkokross.so.8.0.0 lib/libkomain.so -lib/libkomain.so.7 -lib/libkomain.so.7.0.0 +lib/libkomain.so.8 +lib/libkomain.so.8.0.0 lib/libkoodf.so -lib/libkoodf.so.7 -lib/libkoodf.so.7.0.0 +lib/libkoodf.so.8 +lib/libkoodf.so.8.0.0 lib/libkopageapp.so -lib/libkopageapp.so.7 -lib/libkopageapp.so.7.0.0 +lib/libkopageapp.so.8 +lib/libkopageapp.so.8.0.0 lib/libkoplugin.so -lib/libkoplugin.so.7 -lib/libkoplugin.so.7.0.0 +lib/libkoplugin.so.8 +lib/libkoplugin.so.8.0.0 lib/libkoproperty.so -lib/libkoproperty.so.7 -lib/libkoproperty.so.7.0.0 +lib/libkoproperty.so.8 +lib/libkoproperty.so.8.0.0 lib/libkoreport.so -lib/libkoreport.so.7 -lib/libkoreport.so.7.0.0 +lib/libkoreport.so.8 +lib/libkoreport.so.8.0.0 lib/libkotext.so -lib/libkotext.so.7 -lib/libkotext.so.7.0.0 +lib/libkotext.so.8 +lib/libkotext.so.8.0.0 lib/libkowidgets.so -lib/libkowidgets.so.7 -lib/libkowidgets.so.7.0.0 +lib/libkowidgets.so.8 +lib/libkowidgets.so.8.0.0 lib/libkowmf.so -lib/libkowmf.so.7 -lib/libkowmf.so.7.0.0 +lib/libkowmf.so.8 +lib/libkowmf.so.8.0.0 lib/libkplatokernel.so -lib/libkplatokernel.so.7 -lib/libkplatokernel.so.7.0.0 +lib/libkplatokernel.so.8 +lib/libkplatokernel.so.8.0.0 lib/libkplatomodels.so -lib/libkplatomodels.so.7 -lib/libkplatomodels.so.7.0.0 +lib/libkplatomodels.so.8 +lib/libkplatomodels.so.8.0.0 lib/libkplatoprivate.so -lib/libkplatoprivate.so.7 -lib/libkplatoprivate.so.7.0.0 +lib/libkplatoprivate.so.8 +lib/libkplatoprivate.so.8.0.0 lib/libkplatoui.so -lib/libkplatoui.so.7 -lib/libkplatoui.so.7.0.0 +lib/libkplatoui.so.8 +lib/libkplatoui.so.8.0.0 lib/libkplatoworkapp.so -lib/libkplatoworkapp.so.7 -lib/libkplatoworkapp.so.7.0.0 +lib/libkplatoworkapp.so.8 +lib/libkplatoworkapp.so.8.0.0 lib/libkplatoworkfactory.so -lib/libkplatoworkfactory.so.7 -lib/libkplatoworkfactory.so.7.0.0 +lib/libkplatoworkfactory.so.8 +lib/libkplatoworkfactory.so.8.0.0 lib/libkpresenterprivate.so -lib/libkpresenterprivate.so.7 -lib/libkpresenterprivate.so.7.0.0 +lib/libkpresenterprivate.so.8 +lib/libkpresenterprivate.so.8.0.0 lib/libkritaimage.so -lib/libkritaimage.so.7 -lib/libkritaimage.so.7.0.0 +lib/libkritaimage.so.8 +lib/libkritaimage.so.8.0.0 lib/libkritalibbrush.so -lib/libkritalibbrush.so.7 -lib/libkritalibbrush.so.7.0.0 +lib/libkritalibbrush.so.8 +lib/libkritalibbrush.so.8.0.0 lib/libkritalibpaintop.so -lib/libkritalibpaintop.so.7 -lib/libkritalibpaintop.so.7.0.0 +lib/libkritalibpaintop.so.8 +lib/libkritalibpaintop.so.8.0.0 lib/libkritaui.so -lib/libkritaui.so.7 -lib/libkritaui.so.7.0.0 -lib/libkrossmodulekrita.so -lib/libkrossmodulekrita.so.7 -lib/libkrossmodulekrita.so.7.0.0 +lib/libkritaui.so.8 +lib/libkritaui.so.8.0.0 lib/libkspreadcommon.so -lib/libkspreadcommon.so.7 -lib/libkspreadcommon.so.7.0.0 +lib/libkspreadcommon.so.8 +lib/libkspreadcommon.so.8.0.0 +lib/libkspreadodf.so +lib/libkspreadodf.so.8 +lib/libkspreadodf.so.8.0.0 lib/libkwmf.so -lib/libkwmf.so.7 -lib/libkwmf.so.7.0.0 +lib/libkwmf.so.8 +lib/libkwmf.so.8.0.0 lib/libkwordexportfilters.so -lib/libkwordexportfilters.so.7 -lib/libkwordexportfilters.so.7.0.0 +lib/libkwordexportfilters.so.8 +lib/libkwordexportfilters.so.8.0.0 lib/libkwordprivate.so -lib/libkwordprivate.so.7 -lib/libkwordprivate.so.7.0.0 +lib/libkwordprivate.so.8 +lib/libkwordprivate.so.8.0.0 lib/libmsooxml.so -lib/libmsooxml.so.7 -lib/libmsooxml.so.7.0.0 +lib/libmsooxml.so.8 +lib/libmsooxml.so.8.0.0 lib/libpigmentcms.so -lib/libpigmentcms.so.7 -lib/libpigmentcms.so.7.0.0 +lib/libpigmentcms.so.8 +lib/libpigmentcms.so.8.0.0 share/applications/kde4/KThesaurus.desktop share/applications/kde4/karbon.desktop share/applications/kde4/kexi.desktop +share/applications/kde4/kformula.desktop share/applications/kde4/koffice.desktop share/applications/kde4/kplato.desktop share/applications/kde4/kplatowork.desktop share/applications/kde4/kpresenter.desktop share/applications/kde4/krita.desktop share/applications/kde4/krita_bmp.desktop %%GTL%%share/applications/kde4/krita_exr.desktop share/applications/kde4/krita_gif.desktop share/applications/kde4/krita_jp2.desktop share/applications/kde4/krita_jpeg.desktop share/applications/kde4/krita_ora.desktop share/applications/kde4/krita_pdf.desktop share/applications/kde4/krita_png.desktop share/applications/kde4/krita_ppm.desktop share/applications/kde4/krita_raw.desktop share/applications/kde4/krita_tiff.desktop share/applications/kde4/krita_xcf.desktop share/applications/kde4/kspread.desktop share/applications/kde4/kword.desktop +share/applications/kde4/okularApplication_odp.desktop share/apps/cmake/modules/FindKOfficeLibs.cmake share/apps/formulashape/fonts/Arev.ttf share/apps/formulashape/fonts/ArevBI.ttf share/apps/formulashape/fonts/ArevBd.ttf share/apps/formulashape/fonts/ArevIt.ttf share/apps/formulashape/fonts/cmex10.ttf share/apps/karbon/gradients/allcolors.kgr share/apps/karbon/gradients/simple.kgr share/apps/karbon/icons/hicolor/16x16/actions/14_layer_deletelayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_layer_lowerlayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_layer_newlayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_layer_raiselayer.png share/apps/karbon/icons/hicolor/16x16/actions/14_pencil.png share/apps/karbon/icons/hicolor/16x16/actions/colorman.png share/apps/karbon/icons/hicolor/16x16/actions/helpdocker.png share/apps/karbon/icons/hicolor/16x16/actions/historydocker.png share/apps/karbon/icons/hicolor/16x16/actions/layersman.png share/apps/karbon/icons/hicolor/16x16/actions/linestyle.png share/apps/karbon/icons/hicolor/16x16/actions/locked.png share/apps/karbon/icons/hicolor/16x16/actions/rotate.png share/apps/karbon/icons/hicolor/16x16/actions/shear.png share/apps/karbon/icons/hicolor/16x16/actions/strokedocker.png share/apps/karbon/icons/hicolor/16x16/actions/tooloptions.png share/apps/karbon/icons/hicolor/16x16/actions/translate.png share/apps/karbon/icons/hicolor/16x16/actions/unlocked.png share/apps/karbon/icons/hicolor/22x22/actions/14_ellipse.png share/apps/karbon/icons/hicolor/22x22/actions/14_flatten.png share/apps/karbon/icons/hicolor/22x22/actions/14_gradient.png share/apps/karbon/icons/hicolor/22x22/actions/14_image.png share/apps/karbon/icons/hicolor/22x22/actions/14_pattern.png share/apps/karbon/icons/hicolor/22x22/actions/14_pencil.png share/apps/karbon/icons/hicolor/22x22/actions/14_polygon.png share/apps/karbon/icons/hicolor/22x22/actions/14_polyline.png share/apps/karbon/icons/hicolor/22x22/actions/14_rectangle.png share/apps/karbon/icons/hicolor/22x22/actions/14_refine.png share/apps/karbon/icons/hicolor/22x22/actions/14_rotate.png share/apps/karbon/icons/hicolor/22x22/actions/14_roundcorners.png share/apps/karbon/icons/hicolor/22x22/actions/14_roundrect.png share/apps/karbon/icons/hicolor/22x22/actions/14_select.png share/apps/karbon/icons/hicolor/22x22/actions/14_selectnodes.png share/apps/karbon/icons/hicolor/22x22/actions/14_shear.png share/apps/karbon/icons/hicolor/22x22/actions/14_sinus.png share/apps/karbon/icons/hicolor/22x22/actions/14_spiral.png share/apps/karbon/icons/hicolor/22x22/actions/14_star.png share/apps/karbon/icons/hicolor/22x22/actions/14_text.png share/apps/karbon/icons/hicolor/22x22/actions/14_whirl.png share/apps/karbon/icons/hicolor/22x22/actions/14_zoom.png share/apps/karbon/icons/hicolor/22x22/actions/colorman.png share/apps/karbon/icons/hicolor/22x22/actions/gradientdlg.png share/apps/karbon/icons/hicolor/22x22/actions/linestyle.png share/apps/karbon/icons/hicolor/22x22/actions/outlinedlg.png share/apps/karbon/icons/hicolor/22x22/actions/pagesetup.png share/apps/karbon/icons/hicolor/22x22/actions/solidfilldlg.png share/apps/karbon/icons/hicolor/48x48/actions/template_empty.png share/apps/karbon/icons/hicolor/scalable/actions/template_empty.svgz share/apps/karbon/icons/oxygen/16x16/actions/14_layer_novisible.png share/apps/karbon/icons/oxygen/16x16/actions/14_layer_visible.png share/apps/karbon/karbon.rc share/apps/karbon/karbon_readonly.rc share/apps/karbon/kpartplugins/FlattenPathPlugin.rc share/apps/karbon/kpartplugins/RefinePathPlugin.rc share/apps/karbon/kpartplugins/RoundCornersPlugin.rc share/apps/karbon/kpartplugins/WhirlPinchPlugin.rc share/apps/karbon/templates/Basic/.directory share/apps/karbon/templates/Basic/.source/empty.odg share/apps/karbon/templates/Basic/empty.desktop -share/apps/kchart/icons/hicolor/16x16/actions/chart_area.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_bar.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_line.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_pie.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_polar.png -share/apps/kchart/icons/hicolor/16x16/actions/chart_ring.png -share/apps/kchart/icons/hicolor/16x16/actions/data.png -share/apps/kchart/icons/hicolor/16x16/actions/options.png -share/apps/kchart/icons/hicolor/16x16/actions/wizard.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_area.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_bar.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_line.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_pie.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_polar.png -share/apps/kchart/icons/hicolor/22x22/actions/chart_ring.png -share/apps/kchart/icons/hicolor/22x22/actions/data.png -share/apps/kchart/icons/hicolor/22x22/actions/options.png -share/apps/kchart/icons/hicolor/22x22/actions/wizard.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_area.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_bar.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_line.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_pie.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_polar.png -share/apps/kchart/icons/hicolor/32x32/actions/chart_ring.png -share/apps/kchart/icons/hicolor/32x32/actions/data.png -share/apps/kchart/icons/hicolor/32x32/actions/options.png -share/apps/kchart/icons/hicolor/32x32/actions/wizard.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_area.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_area_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_bar.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_bar_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_boxwhisker.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_hilo.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_line.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_line_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_pie.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_pie_3d.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_polar.png -share/apps/kchart/icons/hicolor/48x48/actions/chart_ring.png -share/apps/kchart/icons/hicolor/48x48/actions/options.png -share/apps/kchart/icons/hicolor/48x48/actions/template_barchart.png -share/apps/kchart/icons/hicolor/48x48/actions/template_empty.png -share/apps/kchart/icons/hicolor/scalable/actions/chart_area.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_area_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_bar.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_bar_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_boxwhisker.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_hilo.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_line.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_line_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_pie.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_pie_3d.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_polar.svgz -share/apps/kchart/icons/hicolor/scalable/actions/chart_ring.svgz -share/apps/kchart/icons/hicolor/scalable/actions/template_barchart.svgz -share/apps/kchart/icons/hicolor/scalable/actions/template_empty.svgz -share/apps/kchart/pics/chart_area_normal.png -share/apps/kchart/pics/chart_area_percent.png -share/apps/kchart/pics/chart_area_stacked.png -share/apps/kchart/pics/chart_bar_beside.png -share/apps/kchart/pics/chart_bar_layer.png -share/apps/kchart/pics/chart_bar_percent.png -share/apps/kchart/pics/chart_hilo_close.png -share/apps/kchart/pics/chart_hilo_normal.png -share/apps/kchart/pics/chart_hilo_openclose.png -share/apps/kchart/pics/chart_legend_bottom.png -share/apps/kchart/pics/chart_legend_bottomleft.png -share/apps/kchart/pics/chart_legend_bottomright.png -share/apps/kchart/pics/chart_legend_left.png -share/apps/kchart/pics/chart_legend_nolegend.png -share/apps/kchart/pics/chart_legend_right.png -share/apps/kchart/pics/chart_legend_top.png -share/apps/kchart/pics/chart_legend_topleft.png -share/apps/kchart/pics/chart_legend_topright.png -share/apps/kchart/pics/chart_line_normal.png -share/apps/kchart/pics/chart_line_percent.png -share/apps/kchart/pics/chart_line_stacked.png -share/apps/kchart/pics/chart_polar_normal.png -share/apps/kchart/pics/chart_polar_percent.png -share/apps/kchart/pics/chart_polar_stacked.png -share/apps/kchart/templates/chart/.directory -share/apps/kchart/templates/chart/.source/BarChart.chrt -share/apps/kchart/templates/chart/.source/Empty.chrt -share/apps/kchart/templates/chart/BarChart.desktop -share/apps/kchart/templates/chart/Empty.desktop share/apps/kexi/icons/hicolor/128x128/actions/form_action.png share/apps/kexi/icons/hicolor/16x16/actions/add_field.png share/apps/kexi/icons/hicolor/16x16/actions/aofit.png share/apps/kexi/icons/hicolor/16x16/actions/aogrid.png share/apps/kexi/icons/hicolor/16x16/actions/aopos2grid.png share/apps/kexi/icons/hicolor/16x16/actions/autofield.png share/apps/kexi/icons/hicolor/16x16/actions/autonumber.png share/apps/kexi/icons/hicolor/16x16/actions/business_user.png share/apps/kexi/icons/hicolor/16x16/actions/button.png share/apps/kexi/icons/hicolor/16x16/actions/button_no.png share/apps/kexi/icons/hicolor/16x16/actions/check.png share/apps/kexi/icons/hicolor/16x16/actions/clear_table_contents.png share/apps/kexi/icons/hicolor/16x16/actions/combo.png share/apps/kexi/icons/hicolor/16x16/actions/delete_table_row.png share/apps/kexi/icons/hicolor/16x16/actions/document-import-database.png share/apps/kexi/icons/hicolor/16x16/actions/form.png share/apps/kexi/icons/hicolor/16x16/actions/form_action.png share/apps/kexi/icons/hicolor/16x16/actions/form_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/grid.png share/apps/kexi/icons/hicolor/16x16/actions/insert_table_row.png share/apps/kexi/icons/hicolor/16x16/actions/key.png share/apps/kexi/icons/hicolor/16x16/actions/line.png share/apps/kexi/icons/hicolor/16x16/actions/line_horizontal.png share/apps/kexi/icons/hicolor/16x16/actions/line_vertical.png share/apps/kexi/icons/hicolor/16x16/actions/lineedit.png share/apps/kexi/icons/hicolor/16x16/actions/macro.png share/apps/kexi/icons/hicolor/16x16/actions/macro_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/mouse_pointer.png share/apps/kexi/icons/hicolor/16x16/actions/multiple_obj.png share/apps/kexi/icons/hicolor/16x16/actions/new_sign.png share/apps/kexi/icons/hicolor/16x16/actions/pixmaplabel.png share/apps/kexi/icons/hicolor/16x16/actions/query.png share/apps/kexi/icons/hicolor/16x16/actions/query_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/radio.png share/apps/kexi/icons/hicolor/16x16/actions/relation.png share/apps/kexi/icons/hicolor/16x16/actions/report.png share/apps/kexi/icons/hicolor/16x16/actions/report_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/script.png share/apps/kexi/icons/hicolor/16x16/actions/script_newobj.png share/apps/kexi/icons/hicolor/16x16/actions/select_item.png share/apps/kexi/icons/hicolor/16x16/actions/spring.png share/apps/kexi/icons/hicolor/16x16/actions/spring_vertical.png share/apps/kexi/icons/hicolor/16x16/actions/state_data.png share/apps/kexi/icons/hicolor/16x16/actions/state_edit.png share/apps/kexi/icons/hicolor/16x16/actions/state_sql.png share/apps/kexi/icons/hicolor/16x16/actions/state_text.png share/apps/kexi/icons/hicolor/16x16/actions/subform.png share/apps/kexi/icons/hicolor/16x16/actions/table.png share/apps/kexi/icons/hicolor/16x16/actions/table_newobj.png +share/apps/kexi/icons/hicolor/16x16/actions/tabwidget-tab.png share/apps/kexi/icons/hicolor/16x16/actions/tabwidget.png share/apps/kexi/icons/hicolor/16x16/actions/test_it.png share/apps/kexi/icons/hicolor/16x16/actions/textedit.png share/apps/kexi/icons/hicolor/16x16/actions/unknown_widget.png share/apps/kexi/icons/hicolor/16x16/actions/widgets.png share/apps/kexi/icons/hicolor/22x22/actions/alignobjs.png share/apps/kexi/icons/hicolor/22x22/actions/aobottom.png share/apps/kexi/icons/hicolor/22x22/actions/aofit.png share/apps/kexi/icons/hicolor/22x22/actions/aogrid.png share/apps/kexi/icons/hicolor/22x22/actions/aoleft.png share/apps/kexi/icons/hicolor/22x22/actions/aonarrowest.png share/apps/kexi/icons/hicolor/22x22/actions/aopos2grid.png share/apps/kexi/icons/hicolor/22x22/actions/aoright.png share/apps/kexi/icons/hicolor/22x22/actions/aoshortest.png share/apps/kexi/icons/hicolor/22x22/actions/aotallest.png share/apps/kexi/icons/hicolor/22x22/actions/aotop.png share/apps/kexi/icons/hicolor/22x22/actions/aowidest.png share/apps/kexi/icons/hicolor/22x22/actions/autofield.png share/apps/kexi/icons/hicolor/22x22/actions/business_user.png share/apps/kexi/icons/hicolor/22x22/actions/button.png share/apps/kexi/icons/hicolor/22x22/actions/check.png share/apps/kexi/icons/hicolor/22x22/actions/clear_table_contents.png share/apps/kexi/icons/hicolor/22x22/actions/combo.png share/apps/kexi/icons/hicolor/22x22/actions/dateedit.png share/apps/kexi/icons/hicolor/22x22/actions/datetimeedit.png share/apps/kexi/icons/hicolor/22x22/actions/delete_table_row.png share/apps/kexi/icons/hicolor/22x22/actions/document-import-database.png share/apps/kexi/icons/hicolor/22x22/actions/form.png share/apps/kexi/icons/hicolor/22x22/actions/form_action.png share/apps/kexi/icons/hicolor/22x22/actions/form_edit.png share/apps/kexi/icons/hicolor/22x22/actions/form_newobj.png share/apps/kexi/icons/hicolor/22x22/actions/frame.png share/apps/kexi/icons/hicolor/22x22/actions/grid.png share/apps/kexi/icons/hicolor/22x22/actions/groupbox.png share/apps/kexi/icons/hicolor/22x22/actions/insert_table_row.png share/apps/kexi/icons/hicolor/22x22/actions/key.png share/apps/kexi/icons/hicolor/22x22/actions/label.png share/apps/kexi/icons/hicolor/22x22/actions/line.png share/apps/kexi/icons/hicolor/22x22/actions/line_horizontal.png share/apps/kexi/icons/hicolor/22x22/actions/line_vertical.png share/apps/kexi/icons/hicolor/22x22/actions/lineedit.png share/apps/kexi/icons/hicolor/22x22/actions/listbox.png share/apps/kexi/icons/hicolor/22x22/actions/listwidget.png share/apps/kexi/icons/hicolor/22x22/actions/lower.png share/apps/kexi/icons/hicolor/22x22/actions/macro.png share/apps/kexi/icons/hicolor/22x22/actions/macro_newobj.png share/apps/kexi/icons/hicolor/22x22/actions/mouse_pointer.png share/apps/kexi/icons/hicolor/22x22/actions/multiple_obj.png share/apps/kexi/icons/hicolor/22x22/actions/new_sign.png share/apps/kexi/icons/hicolor/22x22/actions/pixmaplabel.png share/apps/kexi/icons/hicolor/22x22/actions/progress.png share/apps/kexi/icons/hicolor/22x22/actions/radio.png share/apps/kexi/icons/hicolor/22x22/actions/raise.png share/apps/kexi/icons/hicolor/22x22/actions/relation.png share/apps/kexi/icons/hicolor/22x22/actions/signalslot.png share/apps/kexi/icons/hicolor/22x22/actions/slider.png share/apps/kexi/icons/hicolor/22x22/actions/spin.png share/apps/kexi/icons/hicolor/22x22/actions/spring.png share/apps/kexi/icons/hicolor/22x22/actions/spring_vertical.png share/apps/kexi/icons/hicolor/22x22/actions/state_data.png share/apps/kexi/icons/hicolor/22x22/actions/state_edit.png share/apps/kexi/icons/hicolor/22x22/actions/state_sql.png share/apps/kexi/icons/hicolor/22x22/actions/state_text.png share/apps/kexi/icons/hicolor/22x22/actions/subform.png share/apps/kexi/icons/hicolor/22x22/actions/table.png share/apps/kexi/icons/hicolor/22x22/actions/table_newobj.png +share/apps/kexi/icons/hicolor/22x22/actions/tabwidget-tab.png share/apps/kexi/icons/hicolor/22x22/actions/tabwidget.png share/apps/kexi/icons/hicolor/22x22/actions/test_it.png share/apps/kexi/icons/hicolor/22x22/actions/textedit.png share/apps/kexi/icons/hicolor/22x22/actions/timeedit.png share/apps/kexi/icons/hicolor/22x22/actions/unknown_widget.png share/apps/kexi/icons/hicolor/22x22/actions/urlrequest.png share/apps/kexi/icons/hicolor/22x22/actions/widgets.png share/apps/kexi/icons/hicolor/22x22/actions/widgetstack.png share/apps/kexi/icons/hicolor/32x32/actions/business_user.png share/apps/kexi/icons/hicolor/32x32/actions/clear_table_contents.png share/apps/kexi/icons/hicolor/32x32/actions/delete_table_row.png share/apps/kexi/icons/hicolor/32x32/actions/document-import-database.png share/apps/kexi/icons/hicolor/32x32/actions/form.png share/apps/kexi/icons/hicolor/32x32/actions/form_action.png share/apps/kexi/icons/hicolor/32x32/actions/form_newobj.png share/apps/kexi/icons/hicolor/32x32/actions/grid.png share/apps/kexi/icons/hicolor/32x32/actions/insert_table_row.png share/apps/kexi/icons/hicolor/32x32/actions/key.png share/apps/kexi/icons/hicolor/32x32/actions/macro.png share/apps/kexi/icons/hicolor/32x32/actions/macro_newobj.png share/apps/kexi/icons/hicolor/32x32/actions/new_sign.png share/apps/kexi/icons/hicolor/32x32/actions/pixmaplabel.png share/apps/kexi/icons/hicolor/32x32/actions/query.png share/apps/kexi/icons/hicolor/32x32/actions/query_newobj.png share/apps/kexi/icons/hicolor/32x32/actions/spring.png share/apps/kexi/icons/hicolor/32x32/actions/state_data.png share/apps/kexi/icons/hicolor/32x32/actions/state_sql.png share/apps/kexi/icons/hicolor/32x32/actions/state_text.png share/apps/kexi/icons/hicolor/32x32/actions/table.png share/apps/kexi/icons/hicolor/32x32/actions/table_newobj.png share/apps/kexi/icons/hicolor/48x48/actions/document-import-database.png share/apps/kexi/icons/hicolor/48x48/actions/form_action.png share/apps/kexi/icons/hicolor/48x48/actions/key.png share/apps/kexi/icons/hicolor/64x64/actions/business_user.png share/apps/kexi/icons/hicolor/64x64/actions/form_action.png share/apps/kexi/icons/oxygen/128x128/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/128x128/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/128x128/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/16x16/actions/data-source-tag.png share/apps/kexi/icons/oxygen/16x16/actions/table.png share/apps/kexi/icons/oxygen/16x16/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/16x16/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/16x16/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/22x22/actions/data-source-tag.png share/apps/kexi/icons/oxygen/22x22/actions/table.png share/apps/kexi/icons/oxygen/22x22/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/22x22/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/22x22/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/32x32/actions/table.png share/apps/kexi/icons/oxygen/32x32/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/32x32/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/32x32/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/48x48/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/48x48/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/48x48/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/64x64/mimetypes/application-x-kexiproject-sqlite.png share/apps/kexi/icons/oxygen/64x64/mimetypes/application-x-kexiproject-sqlite2.png share/apps/kexi/icons/oxygen/64x64/mimetypes/application-x-kexiproject-sqlite3.png share/apps/kexi/icons/oxygen/scalable/actions/small/16x16/data-source-tag.svgz share/apps/kexi/icons/oxygen/scalable/actions/small/22x22/data-source-tag.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/application-x-kexiproject-sqlite.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/application-x-kexiproject-sqlite2.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/application-x-kexiproject-sqlite3.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kexiproject-sqlite.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kexiproject-sqlite2.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kexiproject-sqlite3.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kexiproject-sqlite.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kexiproject-sqlite2.svgz share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kexiproject-sqlite3.svgz share/apps/kformula/kformula.rc share/apps/kformula/kformula_readonly.rc share/apps/kformula/tips share/apps/koffice/autocorrect/autocorrect.xml share/apps/koffice/autocorrect/en_US.xml share/apps/koffice/icons/hicolor/16x16/actions/abs.png share/apps/koffice/icons/hicolor/16x16/actions/borderoutline.png share/apps/koffice/icons/hicolor/16x16/actions/brackets.png share/apps/koffice/icons/hicolor/16x16/actions/bring_forward.png share/apps/koffice/icons/hicolor/16x16/actions/cap_butt.png share/apps/koffice/icons/hicolor/16x16/actions/cap_round.png share/apps/koffice/icons/hicolor/16x16/actions/cap_square.png share/apps/koffice/icons/hicolor/16x16/actions/checkbox.png share/apps/koffice/icons/hicolor/16x16/actions/color_fill.png share/apps/koffice/icons/hicolor/16x16/actions/color_line.png share/apps/koffice/icons/hicolor/16x16/actions/delete_table_col.png share/apps/koffice/icons/hicolor/16x16/actions/delete_table_row.png share/apps/koffice/icons/hicolor/16x16/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/16x16/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/16x16/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/16x16/actions/format-line-spacing-normal.png share/apps/koffice/icons/hicolor/16x16/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/16x16/actions/format_decreaseindent.png share/apps/koffice/icons/hicolor/16x16/actions/format_increaseindent.png share/apps/koffice/icons/hicolor/16x16/actions/frac.png share/apps/koffice/icons/hicolor/16x16/actions/frame_edit.png share/apps/koffice/icons/hicolor/16x16/actions/frame_formula.png share/apps/koffice/icons/hicolor/16x16/actions/frame_image.png share/apps/koffice/icons/hicolor/16x16/actions/frame_query.png share/apps/koffice/icons/hicolor/16x16/actions/frame_spreadsheet.png share/apps/koffice/icons/hicolor/16x16/actions/frame_text.png share/apps/koffice/icons/hicolor/16x16/actions/gsub.png share/apps/koffice/icons/hicolor/16x16/actions/gsup.png share/apps/koffice/icons/hicolor/16x16/actions/inline_image.png share/apps/koffice/icons/hicolor/16x16/actions/inline_table.png share/apps/koffice/icons/hicolor/16x16/actions/insert_table_col.png share/apps/koffice/icons/hicolor/16x16/actions/insert_table_row.png share/apps/koffice/icons/hicolor/16x16/actions/int.png share/apps/koffice/icons/hicolor/16x16/actions/join_bevel.png share/apps/koffice/icons/hicolor/16x16/actions/join_miter.png share/apps/koffice/icons/hicolor/16x16/actions/join_round.png share/apps/koffice/icons/hicolor/16x16/actions/kdb_form.png share/apps/koffice/icons/hicolor/16x16/actions/kdb_table.png share/apps/koffice/icons/hicolor/16x16/actions/line.png share/apps/koffice/icons/hicolor/16x16/actions/linewidth.png share/apps/koffice/icons/hicolor/16x16/actions/lsub.png share/apps/koffice/icons/hicolor/16x16/actions/lsup.png share/apps/koffice/icons/hicolor/16x16/actions/matrix.png share/apps/koffice/icons/hicolor/16x16/actions/multiline.png share/apps/koffice/icons/hicolor/16x16/actions/onetwomatrix.png share/apps/koffice/icons/hicolor/16x16/actions/over.png share/apps/koffice/icons/hicolor/16x16/actions/paren.png share/apps/koffice/icons/hicolor/16x16/actions/prod.png share/apps/koffice/icons/hicolor/16x16/actions/rsub.png share/apps/koffice/icons/hicolor/16x16/actions/rsup.png share/apps/koffice/icons/hicolor/16x16/actions/send_backward.png share/apps/koffice/icons/hicolor/16x16/actions/sqrt.png share/apps/koffice/icons/hicolor/16x16/actions/sum.png share/apps/koffice/icons/hicolor/16x16/actions/tab_first.png share/apps/koffice/icons/hicolor/16x16/actions/tab_last.png share/apps/koffice/icons/hicolor/16x16/actions/tab_left.png share/apps/koffice/icons/hicolor/16x16/actions/tab_right.png share/apps/koffice/icons/hicolor/16x16/actions/textcolor.png +share/apps/koffice/icons/hicolor/16x16/actions/tool-changetracking.png +share/apps/koffice/icons/hicolor/16x16/actions/tool-paragraph.png +share/apps/koffice/icons/hicolor/16x16/actions/tool-text.png share/apps/koffice/icons/hicolor/16x16/actions/under.png share/apps/koffice/icons/hicolor/16x16/actions/view-barcode.png share/apps/koffice/icons/hicolor/16x16/actions/view-sort-ascending.png share/apps/koffice/icons/hicolor/16x16/actions/view-sort-descending.png share/apps/koffice/icons/hicolor/16x16/actions/view_orientation.png share/apps/koffice/icons/hicolor/16x16/actions/view_split.png share/apps/koffice/icons/hicolor/16x16/apps/go.png share/apps/koffice/icons/hicolor/16x16/apps/key_bindings.png share/apps/koffice/icons/hicolor/16x16/apps/style.png share/apps/koffice/icons/hicolor/22x22/actions/abs.png share/apps/koffice/icons/hicolor/22x22/actions/aobottom.png share/apps/koffice/icons/hicolor/22x22/actions/aocenterh.png share/apps/koffice/icons/hicolor/22x22/actions/aocenterv.png share/apps/koffice/icons/hicolor/22x22/actions/aoleft.png share/apps/koffice/icons/hicolor/22x22/actions/aoright.png share/apps/koffice/icons/hicolor/22x22/actions/aotop.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-down.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-left-down.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-left-up.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-left.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-right-down.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-right-up.png share/apps/koffice/icons/hicolor/22x22/actions/arrow-up.png share/apps/koffice/icons/hicolor/22x22/actions/artistictext-attach-path.png share/apps/koffice/icons/hicolor/22x22/actions/artistictext-detach-path.png share/apps/koffice/icons/hicolor/22x22/actions/artistictext-tool.png share/apps/koffice/icons/hicolor/22x22/actions/borderbottom.png share/apps/koffice/icons/hicolor/22x22/actions/borderleft.png share/apps/koffice/icons/hicolor/22x22/actions/borderoutline.png share/apps/koffice/icons/hicolor/22x22/actions/borderright.png share/apps/koffice/icons/hicolor/22x22/actions/bordertop.png share/apps/koffice/icons/hicolor/22x22/actions/brackets.png share/apps/koffice/icons/hicolor/22x22/actions/bring_forward.png share/apps/koffice/icons/hicolor/22x22/actions/calligraphy.png share/apps/koffice/icons/hicolor/22x22/actions/cancel.png share/apps/koffice/icons/hicolor/22x22/actions/char.png share/apps/koffice/icons/hicolor/22x22/actions/checkbox.png share/apps/koffice/icons/hicolor/22x22/actions/clipart.png share/apps/koffice/icons/hicolor/22x22/actions/clipart_from_file.png share/apps/koffice/icons/hicolor/22x22/actions/color_fill.png share/apps/koffice/icons/hicolor/22x22/actions/color_line.png share/apps/koffice/icons/hicolor/22x22/actions/delete_table_col.png share/apps/koffice/icons/hicolor/22x22/actions/delete_table_row.png share/apps/koffice/icons/hicolor/22x22/actions/delslide.png share/apps/koffice/icons/hicolor/22x22/actions/edittext.png share/apps/koffice/icons/hicolor/22x22/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/22x22/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/22x22/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/22x22/actions/format-line-spacing-normal.png share/apps/koffice/icons/hicolor/22x22/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/22x22/actions/format_decreaseindent.png share/apps/koffice/icons/hicolor/22x22/actions/format_increaseindent.png share/apps/koffice/icons/hicolor/22x22/actions/formulashape.png share/apps/koffice/icons/hicolor/22x22/actions/frac.png share/apps/koffice/icons/hicolor/22x22/actions/frame_chart.png share/apps/koffice/icons/hicolor/22x22/actions/frame_edit.png share/apps/koffice/icons/hicolor/22x22/actions/frame_formula.png share/apps/koffice/icons/hicolor/22x22/actions/frame_image.png share/apps/koffice/icons/hicolor/22x22/actions/frame_query.png share/apps/koffice/icons/hicolor/22x22/actions/frame_spreadsheet.png share/apps/koffice/icons/hicolor/22x22/actions/frame_text.png share/apps/koffice/icons/hicolor/22x22/actions/gradient.png share/apps/koffice/icons/hicolor/22x22/actions/group.png share/apps/koffice/icons/hicolor/22x22/actions/gsub.png share/apps/koffice/icons/hicolor/22x22/actions/gsup.png share/apps/koffice/icons/hicolor/22x22/actions/inline_image.png share/apps/koffice/icons/hicolor/22x22/actions/inline_table.png share/apps/koffice/icons/hicolor/22x22/actions/inscol.png share/apps/koffice/icons/hicolor/22x22/actions/insert_table_col.png share/apps/koffice/icons/hicolor/22x22/actions/insert_table_row.png share/apps/koffice/icons/hicolor/22x22/actions/insrow.png share/apps/koffice/icons/hicolor/22x22/actions/int.png share/apps/koffice/icons/hicolor/22x22/actions/kotext-character.png share/apps/koffice/icons/hicolor/22x22/actions/kotext-paragraph.png share/apps/koffice/icons/hicolor/22x22/actions/label.png share/apps/koffice/icons/hicolor/22x22/actions/line.png share/apps/koffice/icons/hicolor/22x22/actions/lower.png share/apps/koffice/icons/hicolor/22x22/actions/lsub.png share/apps/koffice/icons/hicolor/22x22/actions/lsup.png share/apps/koffice/icons/hicolor/22x22/actions/matrix.png share/apps/koffice/icons/hicolor/22x22/actions/multiline.png share/apps/koffice/icons/hicolor/22x22/actions/music-cross.png share/apps/koffice/icons/hicolor/22x22/actions/music-dottednote.png share/apps/koffice/icons/hicolor/22x22/actions/music-doublecross.png share/apps/koffice/icons/hicolor/22x22/actions/music-doubleflat.png share/apps/koffice/icons/hicolor/22x22/actions/music-flat.png share/apps/koffice/icons/hicolor/22x22/actions/music-natural.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-128th.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-16th.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-32nd.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-64th.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-breve.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-eighth.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-half.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-quarter.png share/apps/koffice/icons/hicolor/22x22/actions/music-note-whole.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-128th.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-16th.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-32nd.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-64th.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-breve.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-eighth.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-half.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-quarter.png share/apps/koffice/icons/hicolor/22x22/actions/music-rest-whole.png share/apps/koffice/icons/hicolor/22x22/actions/music-tiednote.png share/apps/koffice/icons/hicolor/22x22/actions/neonpen.png share/apps/koffice/icons/hicolor/22x22/actions/ok.png share/apps/koffice/icons/hicolor/22x22/actions/onetwomatrix.png share/apps/koffice/icons/hicolor/22x22/actions/over.png share/apps/koffice/icons/hicolor/22x22/actions/page.png share/apps/koffice/icons/hicolor/22x22/actions/paren.png share/apps/koffice/icons/hicolor/22x22/actions/pattern.png share/apps/koffice/icons/hicolor/22x22/actions/prod.png share/apps/koffice/icons/hicolor/22x22/actions/raise.png share/apps/koffice/icons/hicolor/22x22/actions/remcol.png share/apps/koffice/icons/hicolor/22x22/actions/remrow.png share/apps/koffice/icons/hicolor/22x22/actions/rsub.png share/apps/koffice/icons/hicolor/22x22/actions/rsup.png share/apps/koffice/icons/hicolor/22x22/actions/select.png share/apps/koffice/icons/hicolor/22x22/actions/send_backward.png share/apps/koffice/icons/hicolor/22x22/actions/shadow.png share/apps/koffice/icons/hicolor/22x22/actions/shadowB.png share/apps/koffice/icons/hicolor/22x22/actions/shadowL.png share/apps/koffice/icons/hicolor/22x22/actions/shadowLB.png share/apps/koffice/icons/hicolor/22x22/actions/shadowLU.png share/apps/koffice/icons/hicolor/22x22/actions/shadowR.png share/apps/koffice/icons/hicolor/22x22/actions/shadowRB.png share/apps/koffice/icons/hicolor/22x22/actions/shadowRU.png share/apps/koffice/icons/hicolor/22x22/actions/shadowU.png share/apps/koffice/icons/hicolor/22x22/actions/slide-new.png share/apps/koffice/icons/hicolor/22x22/actions/slide.png share/apps/koffice/icons/hicolor/22x22/actions/spreadsheetshape.png share/apps/koffice/icons/hicolor/22x22/actions/sqrt.png share/apps/koffice/icons/hicolor/22x22/actions/sum.png share/apps/koffice/icons/hicolor/22x22/actions/toggle_docbrowser.png share/apps/koffice/icons/hicolor/22x22/actions/under.png share/apps/koffice/icons/hicolor/22x22/actions/ungroup.png share/apps/koffice/icons/hicolor/22x22/actions/view-barcode.png share/apps/koffice/icons/hicolor/22x22/actions/view-sort-ascending.png share/apps/koffice/icons/hicolor/22x22/actions/view-sort-descending.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-page.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-pixels.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-two-pages.png share/apps/koffice/icons/hicolor/22x22/actions/zoom-width.png share/apps/koffice/icons/hicolor/32x32/actions/abs.png share/apps/koffice/icons/hicolor/32x32/actions/brackets.png share/apps/koffice/icons/hicolor/32x32/actions/bring_forward.png share/apps/koffice/icons/hicolor/32x32/actions/checkbox.png share/apps/koffice/icons/hicolor/32x32/actions/delete_table_col.png share/apps/koffice/icons/hicolor/32x32/actions/delete_table_row.png share/apps/koffice/icons/hicolor/32x32/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/32x32/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/32x32/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/32x32/actions/format-line-spacing-normal.png share/apps/koffice/icons/hicolor/32x32/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/32x32/actions/frac.png share/apps/koffice/icons/hicolor/32x32/actions/grid.png share/apps/koffice/icons/hicolor/32x32/actions/gsub.png share/apps/koffice/icons/hicolor/32x32/actions/gsup.png share/apps/koffice/icons/hicolor/32x32/actions/insert_table_col.png share/apps/koffice/icons/hicolor/32x32/actions/insert_table_row.png share/apps/koffice/icons/hicolor/32x32/actions/int.png share/apps/koffice/icons/hicolor/32x32/actions/lsub.png share/apps/koffice/icons/hicolor/32x32/actions/lsup.png share/apps/koffice/icons/hicolor/32x32/actions/matrix.png share/apps/koffice/icons/hicolor/32x32/actions/multiline.png share/apps/koffice/icons/hicolor/32x32/actions/onetwomatrix.png share/apps/koffice/icons/hicolor/32x32/actions/over.png share/apps/koffice/icons/hicolor/32x32/actions/paren.png share/apps/koffice/icons/hicolor/32x32/actions/prod.png share/apps/koffice/icons/hicolor/32x32/actions/rsub.png share/apps/koffice/icons/hicolor/32x32/actions/rsup.png share/apps/koffice/icons/hicolor/32x32/actions/send_backward.png share/apps/koffice/icons/hicolor/32x32/actions/shapes.png share/apps/koffice/icons/hicolor/32x32/actions/spreadsheetshape.png share/apps/koffice/icons/hicolor/32x32/actions/sqrt.png share/apps/koffice/icons/hicolor/32x32/actions/sum.png share/apps/koffice/icons/hicolor/32x32/actions/under.png share/apps/koffice/icons/hicolor/32x32/actions/view-barcode.png share/apps/koffice/icons/hicolor/32x32/actions/view-sort-ascending.png share/apps/koffice/icons/hicolor/32x32/apps/go.png share/apps/koffice/icons/hicolor/48x48/actions/bring_forward.png share/apps/koffice/icons/hicolor/48x48/actions/format-font-size-less.png share/apps/koffice/icons/hicolor/48x48/actions/format-font-size-more.png share/apps/koffice/icons/hicolor/48x48/actions/format-line-spacing-double.png share/apps/koffice/icons/hicolor/48x48/actions/format-line-spacing-simple.png share/apps/koffice/icons/hicolor/48x48/actions/format-line-spacing-triple.png share/apps/koffice/icons/hicolor/48x48/actions/send_backward.png share/apps/koffice/icons/hicolor/48x48/apps/key_bindings.png share/apps/koffice/icons/hicolor/scalable/actions/bring_forward.svgz share/apps/koffice/icons/hicolor/scalable/actions/format-line-spacing-double.svgz share/apps/koffice/icons/hicolor/scalable/actions/format-line-spacing-normal.svgz share/apps/koffice/icons/hicolor/scalable/actions/format-line-spacing-triple.svgz share/apps/koffice/icons/hicolor/scalable/actions/send_backward.svgz share/apps/koffice/icons/oxygen/16x16/actions/animation-kpresenter.png share/apps/koffice/icons/oxygen/16x16/actions/snap-extension.png share/apps/koffice/icons/oxygen/16x16/actions/snap-guideline.png share/apps/koffice/icons/oxygen/16x16/actions/snap-intersection.png share/apps/koffice/icons/oxygen/16x16/actions/snap-node.png share/apps/koffice/icons/oxygen/16x16/actions/snap-orto.png share/apps/koffice/icons/oxygen/22x22/actions/arrow-right-koffice.png share/apps/koffice/icons/oxygen/22x22/actions/backgroundtool.png share/apps/koffice/icons/oxygen/22x22/actions/callout-shape.png share/apps/koffice/icons/oxygen/22x22/actions/circular-arrow-shape.png share/apps/koffice/icons/oxygen/22x22/actions/convert-to-path.png share/apps/koffice/icons/oxygen/22x22/actions/createpath.png share/apps/koffice/icons/oxygen/22x22/actions/cross-shape.png share/apps/koffice/icons/oxygen/22x22/actions/divine-shape.png share/apps/koffice/icons/oxygen/22x22/actions/editpath.png share/apps/koffice/icons/oxygen/22x22/actions/ellipse-shape.png share/apps/koffice/icons/oxygen/22x22/actions/flower-shape.png share/apps/koffice/icons/oxygen/22x22/actions/gearhead-shape.png share/apps/koffice/icons/oxygen/22x22/actions/hand.png share/apps/koffice/icons/oxygen/22x22/actions/hexagon-shape.png share/apps/koffice/icons/oxygen/22x22/actions/path-break-point.png share/apps/koffice/icons/oxygen/22x22/actions/path-break-segment.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-corner.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-curve.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-insert.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-join.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-line.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-merge.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-remove.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-smooth.png share/apps/koffice/icons/oxygen/22x22/actions/pathpoint-symmetric.png share/apps/koffice/icons/oxygen/22x22/actions/pathsegment-curve.png share/apps/koffice/icons/oxygen/22x22/actions/pathsegment-line.png share/apps/koffice/icons/oxygen/22x22/actions/pathshape.png share/apps/koffice/icons/oxygen/22x22/actions/pentagon-shape.png share/apps/koffice/icons/oxygen/22x22/actions/polygon-shape.png share/apps/koffice/icons/oxygen/22x22/actions/rectangle-shape.png share/apps/koffice/icons/oxygen/22x22/actions/smiley-shape.png share/apps/koffice/icons/oxygen/22x22/actions/spiral-shape.png share/apps/koffice/icons/oxygen/22x22/actions/star-shape.png share/apps/koffice/icons/rotate.png share/apps/koffice/icons/shear.png share/apps/koffice/icons/zoom_in_cursor.png share/apps/koffice/icons/zoom_out_cursor.png share/apps/koffice/koffice_shell.rc share/apps/koffice/thesaurus/thesaurus.txt share/apps/koproperty/icons/hicolor/16x16/actions/button_no.png share/apps/kplato/about/intro.html share/apps/kplato/about/kplato.css share/apps/kplato/about/main.html share/apps/kplato/about/tips.html share/apps/kplato/about/top-left-kplato.png share/apps/kplato/about/tutorial.html share/apps/kplato/icons/hicolor/22x22/actions/accounts.png share/apps/kplato/icons/hicolor/22x22/actions/gantt_chart.png share/apps/kplato/icons/hicolor/22x22/actions/pert_chart.png share/apps/kplato/icons/hicolor/22x22/actions/resource-calendar-child-insert.png share/apps/kplato/icons/hicolor/22x22/actions/resource-calendar-insert.png share/apps/kplato/icons/hicolor/22x22/actions/resource-group-new.png share/apps/kplato/icons/hicolor/22x22/actions/resources.png share/apps/kplato/icons/hicolor/22x22/actions/view-task-add.png share/apps/kplato/icons/hicolor/22x22/actions/view-task-child-add.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-baselined-add.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-baselined-remove.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-baselined.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-calculus.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-child-insert.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-edit.png share/apps/kplato/icons/hicolor/22x22/actions/view-time-schedule-insert.png share/apps/kplato/icons/hicolor/32x32/actions/view-task.png share/apps/kplato/icons/hicolor/48x48/actions/template_timechart.png share/apps/kplato/icons/hicolor/scalable/actions/template_timechart.svgz share/apps/kplato/kpartplugins/scripting.rc share/apps/kplato/kplato.rc share/apps/kplato/kplato_readonly.rc share/apps/kplato/scripts/extensions/busyinfoclear.py share/apps/kplato/scripts/extensions/busyinfoexport.py share/apps/kplato/scripts/extensions/busyinfoimport.py share/apps/kplato/scripts/extensions/resourcesimport.py share/apps/kplato/scripts/samples/sample_busyinfocheck.py share/apps/kplato/scripts/samples/sample_project.py share/apps/kplato/scripts/scripts.rc share/apps/kplato/templates/Simple/.directory share/apps/kplato/templates/Simple/.source/8HourDay-40HourWeek.kplatot +share/apps/kplato/templates/Simple/.source/Basicproject.kplatot share/apps/kplato/templates/Simple/.source/Plain.kplatot share/apps/kplato/templates/Simple/8HourDay-40HourWeek.desktop +share/apps/kplato/templates/Simple/Basicproject.desktop share/apps/kplato/templates/Simple/Plain.desktop share/apps/kplatowork/icons/hicolor/128x128/actions/template_empty.png share/apps/kplatowork/icons/hicolor/16x16/actions/template_empty.png share/apps/kplatowork/icons/hicolor/22x22/actions/template_empty.png share/apps/kplatowork/icons/hicolor/32x32/actions/template_empty.png share/apps/kplatowork/icons/hicolor/48x48/actions/template_empty.png share/apps/kplatowork/icons/hicolor/64x64/actions/template_empty.png share/apps/kplatowork/icons/hicolor/scalable/actions/template_empty.svgz share/apps/kplatowork/kplatowork.rc share/apps/kplatowork/kplatowork_mainwindow.rc share/apps/kplatowork/kplatowork_readonly.rc share/apps/kplatowork/templates/Simple/.directory share/apps/kplatowork/templates/Simple/.source/Empty.kplatoworkt share/apps/kplatowork/templates/Simple/Empty.desktop share/apps/kpresenter/icons/hicolor/48x48/actions/template_emptylandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_emptyportrait.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_onecolumnlandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_onecolumnportrait.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_titlelandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_titleportrait.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_twocolumnlandscape.png share/apps/kpresenter/icons/hicolor/48x48/actions/template_twocolumnportrait.png +share/apps/kpresenter/icons/hicolor/64x64/actions/blue_orange_vector.png +share/apps/kpresenter/icons/hicolor/64x64/actions/burning_desire.png +share/apps/kpresenter/icons/hicolor/64x64/actions/business.png +share/apps/kpresenter/icons/hicolor/64x64/actions/flood_light.png +share/apps/kpresenter/icons/hicolor/64x64/actions/rounded_square.png +share/apps/kpresenter/icons/hicolor/64x64/actions/simple_waves.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_monotone.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_monotone_wide.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_morning.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_morning_wide.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_night.png +share/apps/kpresenter/icons/hicolor/64x64/actions/skyline_night_wide.png +share/apps/kpresenter/icons/hicolor/64x64/actions/strange_far_hills.png share/apps/kpresenter/icons/hicolor/scalable/actions/template_emptylandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_emptyportrait.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_onecolumnlandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_onecolumnportrait.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_titlelandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_titleportrait.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_twocolumnlandscape.svgz share/apps/kpresenter/icons/hicolor/scalable/actions/template_twocolumnportrait.svgz share/apps/kpresenter/kpartplugins/scan-kpresenter.rc share/apps/kpresenter/kpresenter.rc share/apps/kpresenter/kpresenter_readonly.rc share/apps/kpresenter/pics/layout-elements.svg share/apps/kpresenter/pics/rotate/bl.png share/apps/kpresenter/pics/rotate/bldn.png share/apps/kpresenter/pics/rotate/bm.png share/apps/kpresenter/pics/rotate/bmdn.png share/apps/kpresenter/pics/rotate/br.png share/apps/kpresenter/pics/rotate/brdn.png share/apps/kpresenter/pics/rotate/ml.png share/apps/kpresenter/pics/rotate/mldn.png share/apps/kpresenter/pics/rotate/mr.png share/apps/kpresenter/pics/rotate/mrdn.png share/apps/kpresenter/pics/rotate/tl.png share/apps/kpresenter/pics/rotate/tldn.png share/apps/kpresenter/pics/rotate/tm.png share/apps/kpresenter/pics/rotate/tmdn.png share/apps/kpresenter/pics/rotate/tr.png share/apps/kpresenter/pics/rotate/trdn.png share/apps/kpresenter/pics/webslideshow-sidebar.png share/apps/kpresenter/styles/defaultstyles.xml share/apps/kpresenter/templates/Screen/.directory share/apps/kpresenter/templates/Screen/.source/emptyLandscape.otp share/apps/kpresenter/templates/Screen/.source/emptyLandscapeWide.otp share/apps/kpresenter/templates/Screen/emptyLandscape.desktop share/apps/kpresenter/templates/Screen/emptyLandscapeWide.desktop +share/apps/kpresenter/templates/exportHTML/slides.html +share/apps/kpresenter/templates/exportHTML/templates/Default.zip +share/apps/kpresenter/templates/exportHTML/toc.html +share/apps/kpresenter/templates/odf/.directory +share/apps/kpresenter/templates/odf/.source/blue_orange_vector.otp +share/apps/kpresenter/templates/odf/.source/burning_desire.otp +share/apps/kpresenter/templates/odf/.source/business.otp +share/apps/kpresenter/templates/odf/.source/flood_light.otp +share/apps/kpresenter/templates/odf/.source/rounded_square.otp +share/apps/kpresenter/templates/odf/.source/simple_waves.otp +share/apps/kpresenter/templates/odf/.source/skyline_monotone.otp +share/apps/kpresenter/templates/odf/.source/skyline_monotone_wide.otp +share/apps/kpresenter/templates/odf/.source/skyline_morning.otp +share/apps/kpresenter/templates/odf/.source/skyline_morning_wide.otp +share/apps/kpresenter/templates/odf/.source/skyline_night.otp +share/apps/kpresenter/templates/odf/.source/skyline_night_wide.otp +share/apps/kpresenter/templates/odf/.source/strange_far_hills.otp +share/apps/kpresenter/templates/odf/blue_orange_vector.desktop +share/apps/kpresenter/templates/odf/burning_desire.desktop +share/apps/kpresenter/templates/odf/business.desktop +share/apps/kpresenter/templates/odf/flood_light.desktop +share/apps/kpresenter/templates/odf/rounded_square.desktop +share/apps/kpresenter/templates/odf/simple_waves.desktop +share/apps/kpresenter/templates/odf/skyline_monotone.desktop +share/apps/kpresenter/templates/odf/skyline_monotone_wide.desktop +share/apps/kpresenter/templates/odf/skyline_morning.desktop +share/apps/kpresenter/templates/odf/skyline_morning_wide.desktop +share/apps/kpresenter/templates/odf/skyline_night.desktop +share/apps/kpresenter/templates/odf/skyline_night_wide.desktop +share/apps/kpresenter/templates/odf/strange_far_hills.desktop share/apps/krita/backgrounds/old_paper.png share/apps/krita/brushes/A---1-Basic-Big.vbr share/apps/krita/brushes/A---1-Blending-brush.vbr share/apps/krita/brushes/A---1-simple-round.vbr share/apps/krita/brushes/A---13B-Airbrush-big.vbr share/apps/krita/brushes/A--1-Speed-Knife.vbr share/apps/krita/brushes/A--13b-Airbrush.vbr share/apps/krita/brushes/A--13c-Airbrush.vbr share/apps/krita/brushes/A-1-Knife-1.vbr share/apps/krita/brushes/A-Braids-.gih share/apps/krita/brushes/A-Braids-b.gih share/apps/krita/brushes/A-Chain.gih share/apps/krita/brushes/A-Rake.gih share/apps/krita/brushes/A-Round.vbr share/apps/krita/brushes/A-Zend.gbr share/apps/krita/brushes/A-abstract-textured1.gih share/apps/krita/brushes/A-abstract-textured2.gih share/apps/krita/brushes/A-bamboo-leaves.gih share/apps/krita/brushes/A-bamboo.gih share/apps/krita/brushes/A-cloudy.gih share/apps/krita/brushes/A-concrete.gih share/apps/krita/brushes/A-crackled.gih share/apps/krita/brushes/A-crayon.gih share/apps/krita/brushes/A-dirty-brush.gih share/apps/krita/brushes/A-dirty-spot.gih share/apps/krita/brushes/A-dynamic-brush.gih share/apps/krita/brushes/A-eroded-cercle-anim.gih share/apps/krita/brushes/A-eroded-cercle-anim2.gih share/apps/krita/brushes/A-eroded-chinese-anim.gih share/apps/krita/brushes/A-eroded-dirtybrush-anim.gih share/apps/krita/brushes/A-eroded-knife-anim.gih share/apps/krita/brushes/A-fairy-dust.gih share/apps/krita/brushes/A-forest.gih share/apps/krita/brushes/A-fur.gih share/apps/krita/brushes/A-herbs.gih share/apps/krita/brushes/A-leaves.gih share/apps/krita/brushes/A-lucky_star.gbr share/apps/krita/brushes/A-mineral-cristal.gih share/apps/krita/brushes/A-provencal.gih share/apps/krita/brushes/A-random-vegetal.gih share/apps/krita/brushes/A-reptile-skin.gih share/apps/krita/brushes/A-rocks.gih share/apps/krita/brushes/A-smoke.gih share/apps/krita/brushes/A-sparkle1.gbr share/apps/krita/brushes/A-sparkle2.gbr share/apps/krita/brushes/A-sparkle3.gbr share/apps/krita/brushes/A-splat1.gih share/apps/krita/brushes/A-splat2.gih share/apps/krita/brushes/A-starfield.gih share/apps/krita/brushes/A-starfield2.gih share/apps/krita/brushes/A-wall-texture.gih share/apps/krita/brushes/Z-Test-pressure.gih +share/apps/krita/brushes/ab001.myb +share/apps/krita/brushes/ab001_prev.png +share/apps/krita/brushes/ab002.myb +share/apps/krita/brushes/ab002_prev.png +share/apps/krita/brushes/ab007.myb +share/apps/krita/brushes/ab007_prev.png +share/apps/krita/brushes/ab009.myb +share/apps/krita/brushes/ab009_prev.png +share/apps/krita/brushes/ab023.myb +share/apps/krita/brushes/ab023_prev.png +share/apps/krita/brushes/ab026.myb +share/apps/krita/brushes/ab026_prev.png +share/apps/krita/brushes/ab028.myb +share/apps/krita/brushes/ab028_prev.png +share/apps/krita/brushes/ab033.myb +share/apps/krita/brushes/ab033_prev.png +share/apps/krita/brushes/ab043.myb +share/apps/krita/brushes/ab043_prev.png share/apps/krita/brushmodels/3d-deform-brush.mtl share/apps/krita/brushmodels/3d-deform-brush.obj -share/apps/krita/brushmodels/3d-pencil.mtl -share/apps/krita/brushmodels/3d-pencil.obj share/apps/krita/brushmodels/airbrush.mtl share/apps/krita/brushmodels/airbrush.obj share/apps/krita/brushmodels/smudge-finger.mtl share/apps/krita/brushmodels/smudge-finger.obj share/apps/krita/brushmodels/stylus.mtl share/apps/krita/brushmodels/stylus.obj +share/apps/krita/defaultpresets/chalkbrush.kpp +share/apps/krita/defaultpresets/complex.kpp +share/apps/krita/defaultpresets/curvebrush.kpp +share/apps/krita/defaultpresets/deformbrush.kpp +share/apps/krita/defaultpresets/duplicate.kpp +share/apps/krita/defaultpresets/dynabrush.kpp +share/apps/krita/defaultpresets/eraser.kpp +share/apps/krita/defaultpresets/experimentbrush.kpp +share/apps/krita/defaultpresets/filter.kpp +share/apps/krita/defaultpresets/gridbrush.kpp +share/apps/krita/defaultpresets/hairybrush.kpp +share/apps/krita/defaultpresets/paintbrush.kpp +share/apps/krita/defaultpresets/particlebrush.kpp +share/apps/krita/defaultpresets/smudge.kpp +share/apps/krita/defaultpresets/spraybrush.kpp share/apps/krita/dtd/krita.dtd share/apps/krita/gradients/Abstract_1.ggr share/apps/krita/gradients/Abstract_2.ggr share/apps/krita/gradients/Abstract_3.ggr share/apps/krita/gradients/Aneurism.ggr share/apps/krita/gradients/Blinds.ggr share/apps/krita/gradients/Blue_Green.ggr share/apps/krita/gradients/Browns.ggr share/apps/krita/gradients/Brushed_Aluminium.ggr share/apps/krita/gradients/Burning_Paper.ggr share/apps/krita/gradients/Burning_Transparency.ggr share/apps/krita/gradients/CD.ggr share/apps/krita/gradients/CD_Half.ggr share/apps/krita/gradients/Caribbean_Blues.ggr share/apps/krita/gradients/Coffee.ggr share/apps/krita/gradients/Cold_Steel.ggr share/apps/krita/gradients/Cold_Steel_2.ggr share/apps/krita/gradients/Crown_molding.ggr share/apps/krita/gradients/Dark_1.ggr share/apps/krita/gradients/Deep_Sea.ggr share/apps/krita/gradients/Default.ggr share/apps/krita/gradients/Flare_Glow_Angular_1.ggr share/apps/krita/gradients/Flare_Glow_Radial_1.ggr share/apps/krita/gradients/Flare_Glow_Radial_2.ggr share/apps/krita/gradients/Flare_Glow_Radial_3.ggr share/apps/krita/gradients/Flare_Glow_Radial_4.ggr share/apps/krita/gradients/Flare_Radial_101.ggr share/apps/krita/gradients/Flare_Radial_102.ggr share/apps/krita/gradients/Flare_Radial_103.ggr share/apps/krita/gradients/Flare_Rays_Radial_1.ggr share/apps/krita/gradients/Flare_Rays_Radial_2.ggr share/apps/krita/gradients/Flare_Rays_Size_1.ggr share/apps/krita/gradients/Flare_Sizefac_101.ggr share/apps/krita/gradients/Four_bars.ggr share/apps/krita/gradients/French_flag.ggr share/apps/krita/gradients/French_flag_smooth.ggr share/apps/krita/gradients/Full_saturation_spectrum_CCW.ggr share/apps/krita/gradients/Full_saturation_spectrum_CW.ggr share/apps/krita/gradients/German_flag.ggr share/apps/krita/gradients/German_flag_smooth.ggr share/apps/krita/gradients/Golden.ggr share/apps/krita/gradients/Greens.ggr share/apps/krita/gradients/Horizon_1.ggr share/apps/krita/gradients/Horizon_2.ggr share/apps/krita/gradients/Incandescent.ggr share/apps/krita/gradients/Land_1.ggr share/apps/krita/gradients/Land_and_Sea.ggr share/apps/krita/gradients/Metallic_Something.ggr share/apps/krita/gradients/Mexican_flag.ggr share/apps/krita/gradients/Mexican_flag_smooth.ggr share/apps/krita/gradients/Nauseating_Headache.ggr share/apps/krita/gradients/Neon_Cyan.ggr share/apps/krita/gradients/Neon_Green.ggr share/apps/krita/gradients/Neon_Yellow.ggr share/apps/krita/gradients/Pastel_Rainbow.ggr share/apps/krita/gradients/Pastels.ggr share/apps/krita/gradients/Purples.ggr share/apps/krita/gradients/Radial_Eyeball_Blue.ggr share/apps/krita/gradients/Radial_Eyeball_Brown.ggr share/apps/krita/gradients/Radial_Eyeball_Green.ggr share/apps/krita/gradients/Radial_Glow_1.ggr share/apps/krita/gradients/Radial_Rainbow_Hoop.ggr share/apps/krita/gradients/Romanian_flag.ggr share/apps/krita/gradients/Romanian_flag_smooth.ggr share/apps/krita/gradients/Rounded_edge.ggr share/apps/krita/gradients/Shadows_1.ggr share/apps/krita/gradients/Shadows_2.ggr share/apps/krita/gradients/Shadows_3.ggr share/apps/krita/gradients/Skyline.ggr share/apps/krita/gradients/Skyline_polluted.ggr share/apps/krita/gradients/Square_Wood_Frame.ggr share/apps/krita/gradients/Sunrise.ggr share/apps/krita/gradients/Three_bars_sin.ggr share/apps/krita/gradients/Tropical_Colors.ggr share/apps/krita/gradients/Tube_Red.ggr share/apps/krita/gradients/Wood_1.ggr share/apps/krita/gradients/Wood_2.ggr share/apps/krita/gradients/Yellow_Contrast.ggr share/apps/krita/gradients/Yellow_Orange.ggr share/apps/krita/icons/hicolor/48x48/actions/template_cmyk_empty.png +share/apps/krita/icons/hicolor/48x48/actions/template_comics_empty.png share/apps/krita/icons/hicolor/48x48/actions/template_gray_empty.png share/apps/krita/icons/hicolor/48x48/actions/template_rgb_empty.png -share/apps/krita/images/krita-chalk.png share/apps/krita/images/krita-curve.png share/apps/krita/images/krita-deform.png share/apps/krita/images/krita-duplicate.png share/apps/krita/images/krita-dyna.png share/apps/krita/images/krita-eraser.png share/apps/krita/images/krita-filterop.png +share/apps/krita/images/krita-grid.png +share/apps/krita/images/krita-hatching.png share/apps/krita/images/krita-paintbrush.png -share/apps/krita/images/krita-pencil.png share/apps/krita/images/krita-smudgebrush.png share/apps/krita/images/krita-spray.png share/apps/krita/images/krita-sumi.png +share/apps/krita/images/krita_first_start.kra share/apps/krita/images/previewfilter.png share/apps/krita/kpartplugins/scan-krita.rc share/apps/krita/krita.rc share/apps/krita/krita_readonly.rc share/apps/krita/metadata/schemas/dc.schema share/apps/krita/metadata/schemas/exif.schema %%GTL%%share/apps/krita/metadata/schemas/exrchannels.schema share/apps/krita/metadata/schemas/mkn.schema share/apps/krita/metadata/schemas/tiff.schema share/apps/krita/metadata/schemas/xmp.schema share/apps/krita/metadata/schemas/xmpmm.schema share/apps/krita/metadata/schemas/xmprights.schema +share/apps/krita/paintoppresets/Fur.kpp +share/apps/krita/paintoppresets/Sketchy.kpp +share/apps/krita/paintoppresets/chalk.kpp +share/apps/krita/paintoppresets/chrome.kpp +share/apps/krita/paintoppresets/pixelpencil.kpp +share/apps/krita/paintoppresets/shaded.kpp +share/apps/krita/paintoppresets/softbrush.kpp share/apps/krita/palettes/1-All-Color-for-good-colors-choice.gpl share/apps/krita/palettes/1-Pastel-soft-pink.gpl share/apps/krita/palettes/1-Red-Dragon-cave.gpl share/apps/krita/palettes/1-Strong-contrast.gpl share/apps/krita/palettes/1-brown-pastel.gpl share/apps/krita/palettes/1-brown.gpl share/apps/krita/palettes/1-classic-kit.gpl share/apps/krita/palettes/1-ice-party.gpl share/apps/krita/palettes/1-iced-dark-scene.gpl share/apps/krita/palettes/1-magic-forest.gpl share/apps/krita/palettes/1-pasion-fire.gpl share/apps/krita/palettes/1-red-in-night.gpl share/apps/krita/palettes/1-tropical.gpl share/apps/krita/palettes/1-turquoise-flesh.gpl share/apps/krita/palettes/40_Colors.gpl share/apps/krita/palettes/Named_Colors.gpl share/apps/krita/palettes/Web.gpl share/apps/krita/palettes/new_kde.gpl share/apps/krita/patterns/3dgreen.pat share/apps/krita/patterns/Craters.pat share/apps/krita/patterns/Moonfoot.pat share/apps/krita/patterns/Stripes1px.pat share/apps/krita/patterns/Stripes2px.pat share/apps/krita/patterns/amethyst.pat share/apps/krita/patterns/bark.pat share/apps/krita/patterns/blue.pat share/apps/krita/patterns/bluegrid.pat share/apps/krita/patterns/bluesquares.pat share/apps/krita/patterns/blueweb.pat share/apps/krita/patterns/brick.pat share/apps/krita/patterns/burlap.pat share/apps/krita/patterns/burlwood.pat share/apps/krita/patterns/choc_swirl.pat share/apps/krita/patterns/corkboard.pat share/apps/krita/patterns/cracked.pat share/apps/krita/patterns/crinklepaper.pat share/apps/krita/patterns/electric.pat share/apps/krita/patterns/fibers.pat share/apps/krita/patterns/granite1.pat share/apps/krita/patterns/ground1.pat share/apps/krita/patterns/ice.pat share/apps/krita/patterns/java.pat share/apps/krita/patterns/leather.pat share/apps/krita/patterns/leaves.pat share/apps/krita/patterns/leopard.pat share/apps/krita/patterns/lightning.pat share/apps/krita/patterns/marble1.pat share/apps/krita/patterns/marble2.pat share/apps/krita/patterns/marble3.pat share/apps/krita/patterns/nops.pat share/apps/krita/patterns/paper.pat share/apps/krita/patterns/parque1.pat share/apps/krita/patterns/parque2.pat share/apps/krita/patterns/parque3.pat share/apps/krita/patterns/pastel.pat share/apps/krita/patterns/pine.pat share/apps/krita/patterns/pink_marble.pat share/apps/krita/patterns/pool.pat share/apps/krita/patterns/qube1.pat share/apps/krita/patterns/rain.pat share/apps/krita/patterns/recessed.pat share/apps/krita/patterns/redcube.pat share/apps/krita/patterns/rock.pat share/apps/krita/patterns/sky.pat share/apps/krita/patterns/slate.pat share/apps/krita/patterns/sm_squares.pat share/apps/krita/patterns/starfield.pat share/apps/krita/patterns/stone33.pat share/apps/krita/patterns/terra.pat share/apps/krita/patterns/walnut.pat share/apps/krita/patterns/warning.pat share/apps/krita/patterns/wood1.pat share/apps/krita/patterns/wood2.pat share/apps/krita/patterns/wood3.pat share/apps/krita/patterns/wood4.pat share/apps/krita/patterns/wood5.pat share/apps/krita/pics/arrow_east.png share/apps/krita/pics/arrow_north.png share/apps/krita/pics/arrow_north_east.png share/apps/krita/pics/arrow_north_west.png share/apps/krita/pics/arrow_south.png share/apps/krita/pics/arrow_south_east.png share/apps/krita/pics/arrow_south_west.png share/apps/krita/pics/arrow_west.png -share/apps/krita/pics/closedhand_cursor.xpm +share/apps/krita/pics/cursor-cross.xpm share/apps/krita/pics/deletelayer.png +share/apps/krita/pics/extended_color_selector.png +share/apps/krita/pics/height_icon.png +share/apps/krita/pics/kis_colselng_color_patches.png +share/apps/krita/pics/kis_colselng_color_triangle.png +share/apps/krita/pics/kis_colselng_my_paint_shade_selector.png share/apps/krita/pics/krita_draw_path.png share/apps/krita/pics/krita_tool_color_fill.png share/apps/krita/pics/krita_tool_color_picker.png share/apps/krita/pics/krita_tool_dyna.png share/apps/krita/pics/krita_tool_ellipse.png share/apps/krita/pics/krita_tool_freehand.png share/apps/krita/pics/krita_tool_gradient.png share/apps/krita/pics/krita_tool_grid.png share/apps/krita/pics/krita_tool_line.png share/apps/krita/pics/krita_tool_measure.png share/apps/krita/pics/krita_tool_move.png share/apps/krita/pics/krita_tool_pan.png share/apps/krita/pics/krita_tool_rectangle.png share/apps/krita/pics/krita_tool_ruler_assistant.png share/apps/krita/pics/krita_tool_transform.png share/apps/krita/pics/linked.png share/apps/krita/pics/local_selection_active.png share/apps/krita/pics/local_selection_inactive.png share/apps/krita/pics/locked.png share/apps/krita/pics/lowerlayer.png share/apps/krita/pics/newlayer.png share/apps/krita/pics/novisible.png -share/apps/krita/pics/openhand_cursor.xpm +share/apps/krita/pics/offset_horizontal.png +share/apps/krita/pics/offset_vertical.png +share/apps/krita/pics/paintop_presets_disabled.png share/apps/krita/pics/paintop_settings_01.png share/apps/krita/pics/paintop_settings_02.png +share/apps/krita/pics/paintop_settings_disabled.png share/apps/krita/pics/polyline.png share/apps/krita/pics/raiselayer.png +share/apps/krita/pics/ratio_icon.png share/apps/krita/pics/rotate_cursor.xpm share/apps/krita/pics/select_pixel.png share/apps/krita/pics/select_shape.png share/apps/krita/pics/selection_add.png share/apps/krita/pics/selection_exclude.png share/apps/krita/pics/selection_intersect.png share/apps/krita/pics/selection_replace.png share/apps/krita/pics/selection_subtract.png +share/apps/krita/pics/shear_horizontal.png +share/apps/krita/pics/shear_vertical.png share/apps/krita/pics/tablet.png share/apps/krita/pics/tool_brush_selection.png share/apps/krita/pics/tool_brush_selection_cursor.png share/apps/krita/pics/tool_contiguous_selection.png share/apps/krita/pics/tool_contiguous_selection_cursor.png share/apps/krita/pics/tool_crop.png share/apps/krita/pics/tool_crop_cursor.png share/apps/krita/pics/tool_ellipse_cursor.png share/apps/krita/pics/tool_elliptical_selection.png share/apps/krita/pics/tool_elliptical_selection_cursor.png share/apps/krita/pics/tool_eraser_selection.png share/apps/krita/pics/tool_eraser_selection_cursor.png share/apps/krita/pics/tool_fill_cursor.png share/apps/krita/pics/tool_freehand_cursor.png share/apps/krita/pics/tool_gradient_cursor.png share/apps/krita/pics/tool_line_cursor.png share/apps/krita/pics/tool_magneticoutline_selection.png share/apps/krita/pics/tool_magneticoutline_selection_cursor.png share/apps/krita/pics/tool_outline_selection.png share/apps/krita/pics/tool_outline_selection_cursor.png share/apps/krita/pics/tool_path_selection.png share/apps/krita/pics/tool_perspectivegrid.png share/apps/krita/pics/tool_perspectivegrid_cursor.png -share/apps/krita/pics/tool_perspectivetransform.png -share/apps/krita/pics/tool_perspectivetransform_cursor.png share/apps/krita/pics/tool_polygon.png share/apps/krita/pics/tool_polygon_cursor.png share/apps/krita/pics/tool_polygonal_selection.png share/apps/krita/pics/tool_polygonal_selection_cursor.png share/apps/krita/pics/tool_polyline_cursor.png share/apps/krita/pics/tool_rect_selection.png share/apps/krita/pics/tool_rectangle_cursor.png share/apps/krita/pics/tool_rectangular_selection_cursor.png share/apps/krita/pics/tool_screenshot.png share/apps/krita/pics/tool_similar_selection.png share/apps/krita/pics/tool_similar_selection_cursor.png share/apps/krita/pics/tool_star.png share/apps/krita/pics/tool_star_cursor.png share/apps/krita/pics/transparency-locked.png share/apps/krita/pics/transparency-unlocked.png share/apps/krita/pics/unlinked.png share/apps/krita/pics/unlocked.png share/apps/krita/pics/visible.png -share/apps/krita/scripts/decorations/VanishingPoints.rb -share/apps/krita/scripts/dockers/flipbookdocker.rb -share/apps/krita/scripts/dockers/palettedocker.rb -share/apps/krita/scripts/extensions/changecs.rb -share/apps/krita/scripts/extensions/filterstest.rb -share/apps/krita/scripts/extensions/invert.js -share/apps/krita/scripts/extensions/invert.py -share/apps/krita/scripts/extensions/invert.rb -share/apps/krita/scripts/extensions/pilexport.py -share/apps/krita/scripts/extensions/pilimport.py -share/apps/krita/scripts/extensions/pilimport.ui -share/apps/krita/scripts/extensions/randompaint.rb -share/apps/krita/scripts/extensions/reshapehisto.py -share/apps/krita/scripts/extensions/sky.rb -share/apps/krita/scripts/extensions/torture-filters.rb -share/apps/krita/scripts/extensions/torture-painting.rb -share/apps/krita/scripts/filters/invert.rb -share/apps/krita/scripts/filters/random.rb -share/apps/krita/scripts/scripts.rc +share/apps/krita/pics/width_icon.png share/apps/krita/shaders/bilinear_gradient.frag share/apps/krita/shaders/conical_gradient.frag share/apps/krita/shaders/conical_symetric_gradient.frag share/apps/krita/shaders/hdr_exposure.frag share/apps/krita/shaders/linear_gradient.frag share/apps/krita/shaders/radial_gradient.frag share/apps/krita/shaders/square_gradient.frag %%GTL%%share/apps/krita/shiva/kernels/AntiBullify.shiva %%GTL%%share/apps/krita/shiva/kernels/Bullify.shiva %%GTL%%share/apps/krita/shiva/kernels/Caleidoscope.shiva %%GTL%%share/apps/krita/shiva/kernels/CentralAbsorbtion.shiva %%GTL%%share/apps/krita/shiva/kernels/CheckerBoard.shiva %%GTL%%share/apps/krita/shiva/kernels/ConcentricCircles.shiva %%GTL%%share/apps/krita/shiva/kernels/Disco.shiva %%GTL%%share/apps/krita/shiva/kernels/Droste.shiva %%GTL%%share/apps/krita/shiva/kernels/FractalExplorer.shiva %%GTL%%share/apps/krita/shiva/kernels/MandelbrotSet.shiva %%GTL%%share/apps/krita/shiva/kernels/Metaball.shiva %%GTL%%share/apps/krita/shiva/kernels/MirrorImpose.shiva %%GTL%%share/apps/krita/shiva/kernels/Moire.shiva %%GTL%%share/apps/krita/shiva/kernels/Mosaic.shiva %%GTL%%share/apps/krita/shiva/kernels/PerlinNoise.shiva %%GTL%%share/apps/krita/shiva/kernels/RadialGradient.shiva %%GTL%%share/apps/krita/shiva/kernels/Ripples.shiva %%GTL%%share/apps/krita/shiva/kernels/RotativeBlur.shiva %%GTL%%share/apps/krita/shiva/kernels/Roundify.shiva %%GTL%%share/apps/krita/shiva/kernels/Sea.shiva %%GTL%%share/apps/krita/shiva/kernels/Seamlesser.shiva %%GTL%%share/apps/krita/shiva/kernels/Sectorize.shiva %%GTL%%share/apps/krita/shiva/kernels/Singleball.shiva %%GTL%%share/apps/krita/shiva/kernels/Slices.shiva %%GTL%%share/apps/krita/shiva/kernels/Something.shiva %%GTL%%share/apps/krita/shiva/kernels/StereographicProjection.shiva %%GTL%%share/apps/krita/shiva/kernels/SunRay.shiva %%GTL%%share/apps/krita/shiva/kernels/SuperNova.shiva %%GTL%%share/apps/krita/shiva/kernels/ZigZag.shiva %%GTL%%share/apps/krita/shiva/kernels/blur.shiva %%GTL%%share/apps/krita/shiva/kernels/oilify.shiva share/apps/krita/templates/cmyk/.directory share/apps/krita/templates/cmyk/.source/white_2000x800.kra share/apps/krita/templates/cmyk/white_2000x800.desktop +share/apps/krita/templates/comics/.directory +share/apps/krita/templates/comics/.source/BD-EuroTemplate.kra +share/apps/krita/templates/comics/.source/Comics-USTemplate.kra +share/apps/krita/templates/comics/.source/Manga-JpTemplate.kra +share/apps/krita/templates/comics/.source/a4_waffle_grid.kra +share/apps/krita/templates/comics/BD-EuroTemplate.desktop +share/apps/krita/templates/comics/Comics-USTemplate.desktop +share/apps/krita/templates/comics/Manga-JpTemplate.desktop +share/apps/krita/templates/comics/a4_waffle_grid.desktop share/apps/krita/templates/gray/.directory share/apps/krita/templates/gray/.source/white_640x480.kra share/apps/krita/templates/gray/white_640x480.desktop share/apps/krita/templates/rgb/.directory share/apps/krita/templates/rgb/.source/transparent_1024x768.kra share/apps/krita/templates/rgb/.source/transparent_1280x1024.kra share/apps/krita/templates/rgb/.source/transparent_1600x1200.kra share/apps/krita/templates/rgb/.source/transparent_640x480.kra share/apps/krita/templates/rgb/.source/white_1024x768.kra share/apps/krita/templates/rgb/.source/white_1280x1024.kra share/apps/krita/templates/rgb/.source/white_1600x1200.kra share/apps/krita/templates/rgb/.source/white_640x480.kra share/apps/krita/templates/rgb/transparent_1024x768.desktop share/apps/krita/templates/rgb/transparent_1280x1024.desktop share/apps/krita/templates/rgb/transparent_1600x1200.desktop share/apps/krita/templates/rgb/transparent_640x480.desktop share/apps/krita/templates/rgb/white_1024x768.desktop share/apps/krita/templates/rgb/white_1280x1024.desktop share/apps/krita/templates/rgb/white_1600x1200.desktop share/apps/krita/templates/rgb/white_640x480.desktop -share/apps/kritaplugins/backgrounds.rc share/apps/kritaplugins/bigbrother.rc -share/apps/kritaplugins/bracketing2hdr.rc share/apps/kritaplugins/colorrange.rc share/apps/kritaplugins/colorspaceconversion.rc share/apps/kritaplugins/dropshadow.rc share/apps/kritaplugins/extensionsmanager.rc share/apps/kritaplugins/histogram.rc share/apps/kritaplugins/imageseparate.rc share/apps/kritaplugins/imagesize.rc share/apps/kritaplugins/layercompose.rc share/apps/kritaplugins/metadataeditor.rc share/apps/kritaplugins/metadataeditor/dublincore.rc share/apps/kritaplugins/metadataeditor/dublincore.ui share/apps/kritaplugins/metadataeditor/exif.rc share/apps/kritaplugins/metadataeditor/exif.ui share/apps/kritaplugins/modify_selection.rc share/apps/kritaplugins/rotateimage.rc -share/apps/kritaplugins/scripting.rc share/apps/kritaplugins/shearimage.rc share/apps/kritaplugins/together.rc share/apps/kritaplugins/tonemapping.rc share/apps/kritaplugins/trianglecolorselector.rc share/apps/kspread/dtd/kspread.dtd share/apps/kspread/functions/bitops.xml share/apps/kspread/functions/conversion.xml share/apps/kspread/functions/database.xml share/apps/kspread/functions/datetime.xml share/apps/kspread/functions/engineering.xml share/apps/kspread/functions/financial.xml share/apps/kspread/functions/information.xml share/apps/kspread/functions/logic.xml share/apps/kspread/functions/math.xml share/apps/kspread/functions/reference.xml share/apps/kspread/functions/statistical.xml share/apps/kspread/functions/text.xml share/apps/kspread/functions/trig.xml share/apps/kspread/icons/hicolor/16x16/actions/adjustcol.png share/apps/kspread/icons/hicolor/16x16/actions/adjustrow.png share/apps/kspread/icons/hicolor/16x16/actions/black_sum.png share/apps/kspread/icons/hicolor/16x16/actions/border_all.png share/apps/kspread/icons/hicolor/16x16/actions/border_bottom.png share/apps/kspread/icons/hicolor/16x16/actions/border_fall.png share/apps/kspread/icons/hicolor/16x16/actions/border_horizontal.png share/apps/kspread/icons/hicolor/16x16/actions/border_inside.png share/apps/kspread/icons/hicolor/16x16/actions/border_left.png share/apps/kspread/icons/hicolor/16x16/actions/border_outline.png share/apps/kspread/icons/hicolor/16x16/actions/border_remove.png share/apps/kspread/icons/hicolor/16x16/actions/border_right.png share/apps/kspread/icons/hicolor/16x16/actions/border_top.png share/apps/kspread/icons/hicolor/16x16/actions/border_up.png share/apps/kspread/icons/hicolor/16x16/actions/border_vertical.png share/apps/kspread/icons/hicolor/16x16/actions/cell_edit.png share/apps/kspread/icons/hicolor/16x16/actions/cell_layout.png share/apps/kspread/icons/hicolor/16x16/actions/chart.png share/apps/kspread/icons/hicolor/16x16/actions/comment.png share/apps/kspread/icons/hicolor/16x16/actions/delete_table.png share/apps/kspread/icons/hicolor/16x16/actions/deletecell.png share/apps/kspread/icons/hicolor/16x16/actions/dissociatecell.png share/apps/kspread/icons/hicolor/16x16/actions/first_letter_upper.png share/apps/kspread/icons/hicolor/16x16/actions/funct.png share/apps/kspread/icons/hicolor/16x16/actions/hide_table_column.png share/apps/kspread/icons/hicolor/16x16/actions/hide_table_row.png share/apps/kspread/icons/hicolor/16x16/actions/insert_link.png share/apps/kspread/icons/hicolor/16x16/actions/insertcell.png share/apps/kspread/icons/hicolor/16x16/actions/insertcellcopy.png share/apps/kspread/icons/hicolor/16x16/actions/inserttable.png share/apps/kspread/icons/hicolor/16x16/actions/mergecell-horizontal.png share/apps/kspread/icons/hicolor/16x16/actions/mergecell-vertical.png share/apps/kspread/icons/hicolor/16x16/actions/mergecell.png share/apps/kspread/icons/hicolor/16x16/actions/middle.png share/apps/kspread/icons/hicolor/16x16/actions/money.png share/apps/kspread/icons/hicolor/16x16/actions/multirow.png share/apps/kspread/icons/hicolor/16x16/actions/oscilloscope.png share/apps/kspread/icons/hicolor/16x16/actions/percent.png share/apps/kspread/icons/hicolor/16x16/actions/precminus.png share/apps/kspread/icons/hicolor/16x16/actions/precplus.png share/apps/kspread/icons/hicolor/16x16/actions/removecell.png share/apps/kspread/icons/hicolor/16x16/actions/removecomment.png share/apps/kspread/icons/hicolor/16x16/actions/resizecol.png share/apps/kspread/icons/hicolor/16x16/actions/resizerow.png share/apps/kspread/icons/hicolor/16x16/actions/selection.png share/apps/kspread/icons/hicolor/16x16/actions/series.png share/apps/kspread/icons/hicolor/16x16/actions/show_table_column.png share/apps/kspread/icons/hicolor/16x16/actions/show_table_row.png share/apps/kspread/icons/hicolor/16x16/actions/sort_decrease.png share/apps/kspread/icons/hicolor/16x16/actions/sort_incr.png share/apps/kspread/icons/hicolor/16x16/actions/special_paste.png share/apps/kspread/icons/hicolor/16x16/actions/text_bottom.png share/apps/kspread/icons/hicolor/16x16/actions/text_top.png share/apps/kspread/icons/hicolor/16x16/actions/vertical_text.png share/apps/kspread/icons/hicolor/22x22/actions/black_sum.png share/apps/kspread/icons/hicolor/22x22/actions/border_all.png share/apps/kspread/icons/hicolor/22x22/actions/border_bottom.png share/apps/kspread/icons/hicolor/22x22/actions/border_fall.png share/apps/kspread/icons/hicolor/22x22/actions/border_horizontal.png share/apps/kspread/icons/hicolor/22x22/actions/border_inside.png share/apps/kspread/icons/hicolor/22x22/actions/border_left.png share/apps/kspread/icons/hicolor/22x22/actions/border_outline.png share/apps/kspread/icons/hicolor/22x22/actions/border_remove.png share/apps/kspread/icons/hicolor/22x22/actions/border_right.png share/apps/kspread/icons/hicolor/22x22/actions/border_top.png share/apps/kspread/icons/hicolor/22x22/actions/border_up.png share/apps/kspread/icons/hicolor/22x22/actions/border_vertical.png share/apps/kspread/icons/hicolor/22x22/actions/funct.png share/apps/kspread/icons/hicolor/22x22/actions/insert_chart.png share/apps/kspread/icons/hicolor/22x22/actions/insert_link.png share/apps/kspread/icons/hicolor/22x22/actions/mergecell-horizontal.png share/apps/kspread/icons/hicolor/22x22/actions/mergecell-vertical.png share/apps/kspread/icons/hicolor/22x22/actions/mergecell.png share/apps/kspread/icons/hicolor/22x22/actions/middle.png share/apps/kspread/icons/hicolor/22x22/actions/money.png share/apps/kspread/icons/hicolor/22x22/actions/multirow.png share/apps/kspread/icons/hicolor/22x22/actions/percent.png share/apps/kspread/icons/hicolor/22x22/actions/prec_minus.png share/apps/kspread/icons/hicolor/22x22/actions/prec_plus.png share/apps/kspread/icons/hicolor/22x22/actions/sort_decrease.png share/apps/kspread/icons/hicolor/22x22/actions/sort_incr.png share/apps/kspread/icons/hicolor/22x22/actions/text_bottom.png share/apps/kspread/icons/hicolor/22x22/actions/text_top.png share/apps/kspread/icons/hicolor/32x32/actions/border_all.png share/apps/kspread/icons/hicolor/32x32/actions/border_bottom.png share/apps/kspread/icons/hicolor/32x32/actions/border_fall.png share/apps/kspread/icons/hicolor/32x32/actions/border_horizontal.png share/apps/kspread/icons/hicolor/32x32/actions/border_inside.png share/apps/kspread/icons/hicolor/32x32/actions/border_left.png share/apps/kspread/icons/hicolor/32x32/actions/border_outline.png share/apps/kspread/icons/hicolor/32x32/actions/border_remove.png share/apps/kspread/icons/hicolor/32x32/actions/border_right.png share/apps/kspread/icons/hicolor/32x32/actions/border_top.png share/apps/kspread/icons/hicolor/32x32/actions/border_up.png share/apps/kspread/icons/hicolor/32x32/actions/border_vertical.png share/apps/kspread/icons/hicolor/32x32/actions/funct.png share/apps/kspread/icons/hicolor/32x32/actions/percent.png share/apps/kspread/icons/hicolor/32x32/actions/prec_minus.png share/apps/kspread/icons/hicolor/32x32/actions/prec_plus.png share/apps/kspread/icons/hicolor/48x48/actions/template_balancesheet.png share/apps/kspread/icons/hicolor/48x48/actions/template_bmi.png share/apps/kspread/icons/hicolor/48x48/actions/template_creditcardtracker.png share/apps/kspread/icons/hicolor/48x48/actions/template_expensereport.png share/apps/kspread/icons/hicolor/48x48/actions/template_invoice.png share/apps/kspread/icons/hicolor/48x48/actions/template_menuplan.png share/apps/kspread/icons/hicolor/48x48/actions/template_packingslip.png share/apps/kspread/icons/hicolor/48x48/actions/template_pricequotation.png share/apps/kspread/icons/hicolor/48x48/actions/template_studentidcard.png share/apps/kspread/icons/hicolor/48x48/actions/template_vacationchecklist.png share/apps/kspread/icons/hicolor/48x48/actions/template_worksheet.png share/apps/kspread/icons/hicolor/scalable/actions/template_balancesheet.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_bmi.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_creditcardtracker.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_expensereport.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_invoice.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_menuplan.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_packingslip.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_pricequotation.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_studentidcard.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_vacationchecklist.svgz share/apps/kspread/icons/hicolor/scalable/actions/template_worksheet.svgz share/apps/kspread/kpartplugins/scripting.rc share/apps/kspread/kpartplugins/solver.rc share/apps/kspread/kspread.notifyrc share/apps/kspread/kspread.rc share/apps/kspread/kspread_readonly.rc share/apps/kspread/scripts/docker/consoledocker.py share/apps/kspread/scripts/docker/snippetsdocker.rb share/apps/kspread/scripts/extensions/csvexport.py share/apps/kspread/scripts/extensions/csvimport.py share/apps/kspread/scripts/extensions/csvoptions.ui share/apps/kspread/scripts/extensions/htmlexport.py share/apps/kspread/scripts/extensions/htmlexportinfos.ui share/apps/kspread/scripts/extensions/kexidbexport.py share/apps/kspread/scripts/extensions/kexidbimport.py share/apps/kspread/scripts/extensions/logger.py share/apps/kspread/scripts/extensions/myorca.py share/apps/kspread/scripts/extensions/odfpyexport.py share/apps/kspread/scripts/extensions/vcardimport.py share/apps/kspread/scripts/extensions/xmlviewer.py share/apps/kspread/scripts/functions/functions.py share/apps/kspread/scripts/functions/pyregexp.py share/apps/kspread/scripts/functions/pytime.py share/apps/kspread/scripts/functions/rpyfunctions.py share/apps/kspread/scripts/functions/yfinance.py share/apps/kspread/scripts/functions/yweather.py share/apps/kspread/scripts/scripts.rc share/apps/kspread/sheetstyles/standard1.ksts share/apps/kspread/sheetstyles/standard1.png share/apps/kspread/sheetstyles/standard1.xml share/apps/kspread/sheetstyles/standard2.ksts share/apps/kspread/sheetstyles/standard2.png share/apps/kspread/sheetstyles/standard2.xml share/apps/kspread/templates/Business/.directory share/apps/kspread/templates/Business/.source/BalanceSheet.kst share/apps/kspread/templates/Business/.source/ExpenseReport.kst share/apps/kspread/templates/Business/.source/Invoice.kst share/apps/kspread/templates/Business/.source/PackingSlip.kst share/apps/kspread/templates/Business/.source/PriceQuotation.kst share/apps/kspread/templates/Business/BalanceSheet.desktop share/apps/kspread/templates/Business/ExpenseReport.desktop share/apps/kspread/templates/Business/Invoice.desktop share/apps/kspread/templates/Business/PackingSlip.desktop share/apps/kspread/templates/Business/PriceQuotation.desktop share/apps/kspread/templates/General/.directory share/apps/kspread/templates/General/.source/StudentIDCard.kst share/apps/kspread/templates/General/.source/Worksheet.kst share/apps/kspread/templates/General/StudentIDCard.desktop share/apps/kspread/templates/General/Worksheet.desktop share/apps/kspread/templates/HomeFamily/.directory share/apps/kspread/templates/HomeFamily/.source/BMI.kst share/apps/kspread/templates/HomeFamily/.source/CreditCardTracker.kst share/apps/kspread/templates/HomeFamily/.source/MenuPlan.kst share/apps/kspread/templates/HomeFamily/.source/VacationChecklist.kst share/apps/kspread/templates/HomeFamily/BMI.desktop share/apps/kspread/templates/HomeFamily/CreditCardTracker.desktop share/apps/kspread/templates/HomeFamily/MenuPlan.desktop share/apps/kspread/templates/HomeFamily/VacationChecklist.desktop +share/apps/kword/html-odf/converter.xsl share/apps/kword/icons/hicolor/128x128/actions/template_colorful.png share/apps/kword/icons/hicolor/48x48/actions/template_a4.png share/apps/kword/icons/hicolor/48x48/actions/template_businesscards10.png share/apps/kword/icons/hicolor/48x48/actions/template_colorful.png share/apps/kword/icons/hicolor/48x48/actions/template_envelopec6.png share/apps/kword/icons/hicolor/48x48/actions/template_envelopedl.png share/apps/kword/icons/hicolor/48x48/actions/template_fax.png share/apps/kword/icons/hicolor/48x48/actions/template_labelsl16.png share/apps/kword/icons/hicolor/48x48/actions/template_letter.png share/apps/kword/icons/hicolor/48x48/actions/template_memo.png share/apps/kword/icons/hicolor/48x48/actions/template_plaintext.png share/apps/kword/icons/hicolor/48x48/actions/template_twocolumns.png share/apps/kword/icons/hicolor/scalable/actions/template_a4.svgz share/apps/kword/icons/hicolor/scalable/actions/template_businesscards10.svgz share/apps/kword/icons/hicolor/scalable/actions/template_envelopec6.svgz share/apps/kword/icons/hicolor/scalable/actions/template_envelopedl.svgz share/apps/kword/icons/hicolor/scalable/actions/template_fax.svgz share/apps/kword/icons/hicolor/scalable/actions/template_labelsl16.svgz share/apps/kword/icons/hicolor/scalable/actions/template_letter.svgz share/apps/kword/icons/hicolor/scalable/actions/template_memo.svgz share/apps/kword/icons/hicolor/scalable/actions/template_plaintext.svgz share/apps/kword/icons/hicolor/scalable/actions/template_twocolumns.svgz share/apps/kword/kpartplugins/scan-kword.rc share/apps/kword/kpartplugins/scripting.rc share/apps/kword/kword.rc share/apps/kword/kword_readonly.rc share/apps/kword/scripts/extensions/doctree.rb share/apps/kword/scripts/extensions/exportfile.py share/apps/kword/scripts/extensions/importdoxyxml.py share/apps/kword/scripts/extensions/importdoxyxmloptions.ui share/apps/kword/scripts/extensions/importdoxyxmlstyle.ui share/apps/kword/scripts/extensions/importfile.py share/apps/kword/scripts/extensions/kwreportlab.py share/apps/kword/scripts/extensions/onlinehelp.py share/apps/kword/scripts/extensions/ooimport.py share/apps/kword/scripts/extensions/ooimport.ui share/apps/kword/scripts/extensions/ooimportconfig.ui share/apps/kword/scripts/extensions/oouno.py share/apps/kword/scripts/extensions/xmlviewer.py share/apps/kword/scripts/samples/sample_actions.py share/apps/kword/scripts/samples/sample_allshapes.py share/apps/kword/scripts/samples/sample_cursor.rb share/apps/kword/scripts/samples/sample_insertshape.py share/apps/kword/scripts/samples/sample_lists_cursor.py share/apps/kword/scripts/samples/sample_lists_html.py share/apps/kword/scripts/samples/sample_progressbar.py share/apps/kword/scripts/samples/sample_tables.py share/apps/kword/scripts/samples/sample_text.py share/apps/kword/scripts/samples/sample_toolactions.py share/apps/kword/scripts/samples/sample_variables.py share/apps/kword/scripts/scripts.rc share/apps/kword/styles/defaultstyles.xml share/apps/kword/templates/CardsAndLabels/.directory share/apps/kword/templates/CardsAndLabels/.source/BusinessCards10.kwt share/apps/kword/templates/CardsAndLabels/.source/LabelsL16.kwt share/apps/kword/templates/CardsAndLabels/BusinessCards10.desktop share/apps/kword/templates/CardsAndLabels/LabelsL16.desktop share/apps/kword/templates/Envelopes/.directory share/apps/kword/templates/Envelopes/.source/EnvelopeC6.kwt share/apps/kword/templates/Envelopes/.source/EnvelopeDL.kwt share/apps/kword/templates/Envelopes/EnvelopeC6.desktop share/apps/kword/templates/Envelopes/EnvelopeDL.desktop share/apps/kword/templates/Normal/.directory share/apps/kword/templates/Normal/.source/A4.odt share/apps/kword/templates/Normal/.source/ColorfulA4.odt share/apps/kword/templates/Normal/.source/ColorfulLetter.odt share/apps/kword/templates/Normal/.source/FaxA4.odt share/apps/kword/templates/Normal/.source/FaxLetter.odt share/apps/kword/templates/Normal/.source/Letter.kwt share/apps/kword/templates/Normal/.source/Memo.kwt share/apps/kword/templates/Normal/.source/PlainText.kwt share/apps/kword/templates/Normal/.source/ProfessionalA4.odt share/apps/kword/templates/Normal/.source/ProfessionalLetter.odt share/apps/kword/templates/Normal/.source/TwoColumns.kwt share/apps/kword/templates/Normal/.source/TwoColumnsLetter.kwt share/apps/kword/templates/Normal/A4.desktop share/apps/kword/templates/Normal/ColorfulA4.desktop share/apps/kword/templates/Normal/ColorfulLetter.desktop share/apps/kword/templates/Normal/FaxA4.desktop share/apps/kword/templates/Normal/FaxLetter.desktop share/apps/kword/templates/Normal/Letter.desktop share/apps/kword/templates/Normal/Memo.desktop share/apps/kword/templates/Normal/ProfessionalA4.desktop share/apps/kword/templates/Normal/ProfessionalLetter.desktop share/apps/kword/templates/Normal/TwoColumns.desktop share/apps/kword/templates/Normal/TwoColumnsLetter.desktop share/apps/musicshape/fonts/Emmentaler-14.ttf %%GTL%%share/apps/pigmentcms/ctlcolorspaces/gray32f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/rgba16f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/rgba32f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/xyza16f.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/xyza32f.ctlcs -%%GTL%%share/apps/pigmentcms/ctlcolorspaces/ycbcr8u.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolorspaces/ycbcr16u.ctlcs +%%GTL%%share/apps/pigmentcms/ctlcolorspaces/ycbcr8u.ctlcs %%GTL%%share/apps/pigmentcms/ctlcolortransformations/BurnHighlights.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/BurnMidtones.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/BurnShadows.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/DodgeHighlights.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/DodgeMidtones.ctlt %%GTL%%share/apps/pigmentcms/ctlcolortransformations/DodgeShadows.ctlt %%GTL%%share/apps/pigmentcms/ctlcompositeops/alphadarken.ctlt %%GTL%%share/apps/pigmentcms/ctlcompositeops/over.ctlt %%GTL%%share/apps/pigmentcms/ctlmodules/pigmentutils.ctl %%GTL%%share/apps/pigmentcms/ctlprofiles/lmsaf32.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/scgrayf.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/scrgbaf.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/srgbaf.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/xyzaf32.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/ycbcr_16.ctlp %%GTL%%share/apps/pigmentcms/ctlprofiles/ycbcr_8.ctlp %%GTL%%share/apps/pigmentcms/ctltemplates/alphabase.ctlt share/apps/xsltfilter/export/kword/xslfo/kword2xslfo-table.xsl share/apps/xsltfilter/export/kword/xslfo/main.xsl share/color/icc/krita/Adobe.icm share/color/icc/krita/Apple.icm share/color/icc/krita/CIE.icm share/color/icc/krita/ColorMatch.icm share/color/icc/krita/NTSC.icm share/color/icc/krita/PAL.icm share/color/icc/krita/SMPTE-C.icm share/color/icc/krita/WideGamut.icm share/color/icc/krita/lcmslabi.icm share/color/icc/krita/lcmsxyzi.icm share/color/icc/krita/monoscnr.icm share/color/icc/krita/sRGB.icm share/color/icc/krita/scRGB.icm share/color/icc/krita/srgb_color_space_profile.icm share/color/icc/krita/srgbspac.icm share/color/icc/krita/tifflab8spac.icm share/color/icc/krita/ycc601.icm share/color/icc/krita/ycc709.icm share/color/icc/pigment/CMY.icm share/color/icc/pigment/fogra27l.icm share/config.kcfg/kplatosettings.kcfg share/config.kcfg/kspread.kcfg share/config/karbonrc share/config/kexirc share/config/kplatorc share/config/kplatoworkrc share/config/kpresenterrc +share/config/krita.knsrc share/config/kritarc share/config/kspreadrc share/config/kwordrc share/doc/HTML/en/karbon/common share/doc/HTML/en/karbon/index.cache.bz2 share/doc/HTML/en/karbon/index.docbook -share/doc/HTML/en/kchart/common -share/doc/HTML/en/kchart/file-toolbar.png -share/doc/HTML/en/kchart/file-toolbar2.png -share/doc/HTML/en/kchart/frame_chart.png -share/doc/HTML/en/kchart/hi22-action-chart_line.png -share/doc/HTML/en/kchart/hi22-action-data.png -share/doc/HTML/en/kchart/hi22-action-options.png -share/doc/HTML/en/kchart/hi22-action-wizard.png -share/doc/HTML/en/kchart/index.cache.bz2 -share/doc/HTML/en/kchart/index.docbook -share/doc/HTML/en/kchart/kchart-config1.png -share/doc/HTML/en/kchart/kchart-config2.png -share/doc/HTML/en/kchart/kchart-config3.png -share/doc/HTML/en/kchart/kchart-config4.png -share/doc/HTML/en/kchart/kchart-config5.png -share/doc/HTML/en/kchart/kchart-config6.png -share/doc/HTML/en/kchart/kchart-config7.png -share/doc/HTML/en/kchart/kchart-config8.png -share/doc/HTML/en/kchart/kchart-dataeditor.png -share/doc/HTML/en/kchart/kchart-default.png -share/doc/HTML/en/kchart/kchart-example1-1.png -share/doc/HTML/en/kchart/kchart-example1-2.png -share/doc/HTML/en/kchart/kchart-example1-3.png -share/doc/HTML/en/kchart/kchart-example1-4.png -share/doc/HTML/en/kchart/kchart-example1-5.png -share/doc/HTML/en/kchart/kchart-example1-6.png -share/doc/HTML/en/kchart/kchart-example1-7.png -share/doc/HTML/en/kchart/kchart-example1-8.png -share/doc/HTML/en/kchart/kchart-example1-9.png -share/doc/HTML/en/kchart/kchart-kspread-bar.png -share/doc/HTML/en/kchart/kchart-kspread.png -share/doc/HTML/en/kchart/kchart-startupdialog.png -share/doc/HTML/en/kchart/kchart-wizard0.png -share/doc/HTML/en/kchart/kchart-wizard1.png -share/doc/HTML/en/kchart/kchart-wizard2.png -share/doc/HTML/en/kchart/kchart-wizard3.png -share/doc/HTML/en/kchart/kchart-wizard4.png -share/doc/HTML/en/kchart/shortcut.png -share/doc/HTML/en/kchart/toolbars.png share/doc/HTML/en/kexi/basics.docbook share/doc/HTML/en/kexi/building.docbook share/doc/HTML/en/kexi/common share/doc/HTML/en/kexi/comparing.docbook share/doc/HTML/en/kexi/configuration.docbook share/doc/HTML/en/kexi/contact-example.png share/doc/HTML/en/kexi/credits.docbook share/doc/HTML/en/kexi/database.docbook share/doc/HTML/en/kexi/designingforms.docbook share/doc/HTML/en/kexi/enteringdataintotables.docbook share/doc/HTML/en/kexi/enteringdatausingforms.docbook share/doc/HTML/en/kexi/index.cache.bz2 share/doc/HTML/en/kexi/index.docbook share/doc/HTML/en/kexi/intro.docbook share/doc/HTML/en/kexi/menus.docbook share/doc/HTML/en/kexi/querydesigning.docbook share/doc/HTML/en/kformula/ambiguous-string.png share/doc/HTML/en/kformula/common share/doc/HTML/en/kformula/correct_index_location.png share/doc/HTML/en/kformula/definite_integral.png share/doc/HTML/en/kformula/file-toolbar.png share/doc/HTML/en/kformula/file-toolbar2.png share/doc/HTML/en/kformula/green1.png share/doc/HTML/en/kformula/green2.png share/doc/HTML/en/kformula/greens.png share/doc/HTML/en/kformula/incorrect_index_location.png share/doc/HTML/en/kformula/index.cache.bz2 share/doc/HTML/en/kformula/index.docbook share/doc/HTML/en/kformula/index_smear.png share/doc/HTML/en/kformula/kfontinst1.png share/doc/HTML/en/kformula/kfontinst2.png share/doc/HTML/en/kformula/kfontinst3.png share/doc/HTML/en/kformula/kfontinst4.png share/doc/HTML/en/kformula/kfontinst5.png share/doc/HTML/en/kformula/kfontinst6.png share/doc/HTML/en/kformula/lower-index.png share/doc/HTML/en/kformula/matrix-view.png share/doc/HTML/en/kformula/matrix.png share/doc/HTML/en/kformula/negative_thin_space.png share/doc/HTML/en/kformula/path-integral.png share/doc/HTML/en/kformula/rk-edit0.png share/doc/HTML/en/kformula/rk-edit1.png share/doc/HTML/en/kformula/rk-edit2.png share/doc/HTML/en/kformula/scilab-edit.png share/doc/HTML/en/kformula/scilab.png share/doc/HTML/en/kformula/shortcut0.png share/doc/HTML/en/kformula/shortcut1.png share/doc/HTML/en/kformula/sin.png share/doc/HTML/en/kformula/toolbars.png share/doc/HTML/en/kformula/upper-index.png share/doc/HTML/en/koffice/common share/doc/HTML/en/koffice/index.cache.bz2 share/doc/HTML/en/koffice/index.docbook share/doc/HTML/en/kpresenter/a11y.docbook share/doc/HTML/en/kpresenter/autocorrection1.png share/doc/HTML/en/kpresenter/autocorrection2.png share/doc/HTML/en/kpresenter/autocorrection3.png share/doc/HTML/en/kpresenter/autocorrection4.png share/doc/HTML/en/kpresenter/barstyle1.png share/doc/HTML/en/kpresenter/barstyle3.png share/doc/HTML/en/kpresenter/barstyle4.png share/doc/HTML/en/kpresenter/barstyle5.png share/doc/HTML/en/kpresenter/barstyle6.png share/doc/HTML/en/kpresenter/barstyle7.png share/doc/HTML/en/kpresenter/break.png share/doc/HTML/en/kpresenter/changeformat.png share/doc/HTML/en/kpresenter/common share/doc/HTML/en/kpresenter/completion.png share/doc/HTML/en/kpresenter/configure1.png share/doc/HTML/en/kpresenter/configure2.png share/doc/HTML/en/kpresenter/configure3.png share/doc/HTML/en/kpresenter/configure4.png share/doc/HTML/en/kpresenter/configure4a.png share/doc/HTML/en/kpresenter/configure4a1.png share/doc/HTML/en/kpresenter/configure4b.png share/doc/HTML/en/kpresenter/configure4c.png share/doc/HTML/en/kpresenter/configure5.png share/doc/HTML/en/kpresenter/configure6.png share/doc/HTML/en/kpresenter/configure6b.png share/doc/HTML/en/kpresenter/configure6c.png share/doc/HTML/en/kpresenter/configure6d.png share/doc/HTML/en/kpresenter/configure6e.png share/doc/HTML/en/kpresenter/configure7.png share/doc/HTML/en/kpresenter/faq.docbook share/doc/HTML/en/kpresenter/great-presentations.docbook share/doc/HTML/en/kpresenter/guides.docbook share/doc/HTML/en/kpresenter/htmlshow1.png share/doc/HTML/en/kpresenter/htmlshow2.png share/doc/HTML/en/kpresenter/htmlshow3.png share/doc/HTML/en/kpresenter/htmlshow4.png share/doc/HTML/en/kpresenter/htmlshow5.png share/doc/HTML/en/kpresenter/htmlshow6.png share/doc/HTML/en/kpresenter/htmlshow7.png share/doc/HTML/en/kpresenter/htmlshow8.png share/doc/HTML/en/kpresenter/htmlshow9.png share/doc/HTML/en/kpresenter/index.cache.bz2 share/doc/HTML/en/kpresenter/index.docbook share/doc/HTML/en/kpresenter/kbd-focus-ext.png share/doc/HTML/en/kpresenter/link.png share/doc/HTML/en/kpresenter/menus.docbook share/doc/HTML/en/kpresenter/mousenav.png share/doc/HTML/en/kpresenter/msexport1.png share/doc/HTML/en/kpresenter/msexport2.png share/doc/HTML/en/kpresenter/msexport2b.png share/doc/HTML/en/kpresenter/msexport3.png share/doc/HTML/en/kpresenter/msexport4.png share/doc/HTML/en/kpresenter/options.docbook share/doc/HTML/en/kpresenter/properties.png share/doc/HTML/en/kpresenter/screen.docbook share/doc/HTML/en/kpresenter/settings01.png share/doc/HTML/en/kpresenter/settings03.png share/doc/HTML/en/kpresenter/settings04.png share/doc/HTML/en/kpresenter/template02.png share/doc/HTML/en/kpresenter/template03.png share/doc/HTML/en/kpresenter/template04.png share/doc/HTML/en/kpresenter/template05.png share/doc/HTML/en/kpresenter/template06.png share/doc/HTML/en/kpresenter/template07.png share/doc/HTML/en/kpresenter/textmenu1.png share/doc/HTML/en/kpresenter/textmenu2.png share/doc/HTML/en/kpresenter/toolsmenu01.png share/doc/HTML/en/kpresenter/tts.png share/doc/HTML/en/kpresenter/tut01.png share/doc/HTML/en/kpresenter/tut02.png share/doc/HTML/en/kpresenter/tut03.png share/doc/HTML/en/kpresenter/tut04.png share/doc/HTML/en/kpresenter/tut05.png share/doc/HTML/en/kpresenter/tut06.png share/doc/HTML/en/kpresenter/tut07.png share/doc/HTML/en/kpresenter/tut08.png share/doc/HTML/en/kpresenter/tut09.png share/doc/HTML/en/kpresenter/tut10.png share/doc/HTML/en/kpresenter/tut11.png share/doc/HTML/en/kpresenter/tut12.png share/doc/HTML/en/kpresenter/tut13.png share/doc/HTML/en/kpresenter/tut14.png share/doc/HTML/en/kpresenter/tut15.png share/doc/HTML/en/kpresenter/tut16.png share/doc/HTML/en/kpresenter/tut17.png share/doc/HTML/en/kpresenter/tut18.png share/doc/HTML/en/kpresenter/tut19.png share/doc/HTML/en/kpresenter/tut20.png share/doc/HTML/en/kpresenter/tut21.png share/doc/HTML/en/kpresenter/tut22.png share/doc/HTML/en/kpresenter/tut23.png share/doc/HTML/en/kpresenter/tut24.png share/doc/HTML/en/kpresenter/tut25.png share/doc/HTML/en/kpresenter/tut26.png share/doc/HTML/en/kpresenter/tutorial.docbook share/doc/HTML/en/kpresenter/zoomfactor.png share/doc/HTML/en/kspread/a11y.docbook share/doc/HTML/en/kspread/advanced.docbook share/doc/HTML/en/kspread/basics.docbook share/doc/HTML/en/kspread/cellformat0.png share/doc/HTML/en/kspread/cellformat1.png share/doc/HTML/en/kspread/cellformat2.png share/doc/HTML/en/kspread/cellformat3.png share/doc/HTML/en/kspread/cellformat4.png share/doc/HTML/en/kspread/cellformat5.png share/doc/HTML/en/kspread/cellformat6.png share/doc/HTML/en/kspread/cellformat7.png share/doc/HTML/en/kspread/cellprotection1.png share/doc/HTML/en/kspread/cellprotection2.png share/doc/HTML/en/kspread/chart1.png share/doc/HTML/en/kspread/commands.docbook share/doc/HTML/en/kspread/common share/doc/HTML/en/kspread/config.docbook share/doc/HTML/en/kspread/configdialog.docbook share/doc/HTML/en/kspread/configure1.png share/doc/HTML/en/kspread/configure2.png share/doc/HTML/en/kspread/configure3.png share/doc/HTML/en/kspread/configure4.png share/doc/HTML/en/kspread/configure5.png share/doc/HTML/en/kspread/configure6.png share/doc/HTML/en/kspread/copy1.png share/doc/HTML/en/kspread/currency.png share/doc/HTML/en/kspread/decreasedecimal.png share/doc/HTML/en/kspread/faq.docbook share/doc/HTML/en/kspread/format.docbook share/doc/HTML/en/kspread/hideformula1.png share/doc/HTML/en/kspread/hideformula2.png share/doc/HTML/en/kspread/hideformula3.png share/doc/HTML/en/kspread/hideformula4.png share/doc/HTML/en/kspread/hideformula5.png share/doc/HTML/en/kspread/importexport.docbook share/doc/HTML/en/kspread/increasedecimal.png share/doc/HTML/en/kspread/index.cache.bz2 share/doc/HTML/en/kspread/index.docbook share/doc/HTML/en/kspread/kbd-focus-ext.png share/doc/HTML/en/kspread/mousenav.png share/doc/HTML/en/kspread/newdocument.png share/doc/HTML/en/kspread/percent.png share/doc/HTML/en/kspread/sheetproperties.png share/doc/HTML/en/kspread/shortcut1.png share/doc/HTML/en/kspread/shortcut2.png share/doc/HTML/en/kspread/shortcut3.png share/doc/HTML/en/kspread/sort1.png share/doc/HTML/en/kspread/starting1.png share/doc/HTML/en/kspread/tts.png share/doc/HTML/en/thesaurus/common share/doc/HTML/en/thesaurus/index.cache.bz2 share/doc/HTML/en/thesaurus/index.docbook share/icons/hicolor/128x128/apps/kplato.png share/icons/hicolor/128x128/apps/kplatowork.png share/icons/hicolor/128x128/apps/krita.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/16x16/actions/black.png share/icons/hicolor/16x16/actions/highlight.png share/icons/hicolor/16x16/actions/pen.png share/icons/hicolor/16x16/apps/karbon.png -share/icons/hicolor/16x16/apps/kchart.png share/icons/hicolor/16x16/apps/kformula.png share/icons/hicolor/16x16/apps/kplato.png share/icons/hicolor/16x16/apps/kplatowork.png share/icons/hicolor/16x16/apps/kpresenter.png share/icons/hicolor/16x16/apps/krita.png share/icons/hicolor/16x16/apps/kspread.png share/icons/hicolor/16x16/apps/kword.png share/icons/hicolor/16x16/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/16x16/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/22x22/apps/karbon.png share/icons/hicolor/22x22/apps/kformula.png share/icons/hicolor/22x22/apps/kplato.png share/icons/hicolor/22x22/apps/kplatowork.png share/icons/hicolor/22x22/apps/kpresenter.png share/icons/hicolor/22x22/apps/krita.png share/icons/hicolor/22x22/apps/kspread.png share/icons/hicolor/22x22/apps/kword.png share/icons/hicolor/22x22/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/22x22/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/32x32/apps/karbon.png -share/icons/hicolor/32x32/apps/kchart.png share/icons/hicolor/32x32/apps/kformula.png share/icons/hicolor/32x32/apps/kplato.png share/icons/hicolor/32x32/apps/kplatowork.png share/icons/hicolor/32x32/apps/kpresenter.png share/icons/hicolor/32x32/apps/krita.png share/icons/hicolor/32x32/apps/kspread.png share/icons/hicolor/32x32/apps/kword.png share/icons/hicolor/32x32/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/32x32/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/45x45/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/48x48/apps/karbon.png -share/icons/hicolor/48x48/apps/kchart.png share/icons/hicolor/48x48/apps/kformula.png share/icons/hicolor/48x48/apps/kplato.png share/icons/hicolor/48x48/apps/kplatowork.png share/icons/hicolor/48x48/apps/kpresenter.png share/icons/hicolor/48x48/apps/krita.png share/icons/hicolor/48x48/apps/kspread.png share/icons/hicolor/48x48/apps/kword.png share/icons/hicolor/48x48/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/48x48/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/64x64/apps/kplato.png share/icons/hicolor/64x64/apps/kplatowork.png share/icons/hicolor/64x64/apps/krita.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/scalable/apps/karbon.svgz share/icons/hicolor/scalable/apps/kplato.svgz share/icons/hicolor/scalable/apps/kplatowork.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.kplato.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.kplato.work.svgz share/icons/oxygen/16x16/actions/object-align-horizontal-center-koffice.png share/icons/oxygen/16x16/actions/object-align-horizontal-left-koffice.png share/icons/oxygen/16x16/actions/object-align-horizontal-right-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-bottom-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-bottom-top-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-center-koffice.png share/icons/oxygen/16x16/actions/object-align-vertical-top-koffice.png share/icons/oxygen/16x16/actions/object-group-koffice.png share/icons/oxygen/16x16/actions/object-order-back-koffice.png share/icons/oxygen/16x16/actions/object-order-front-koffice.png share/icons/oxygen/16x16/actions/object-order-lower-koffice.png share/icons/oxygen/16x16/actions/object-order-raise-koffice.png share/icons/oxygen/16x16/actions/object-ungroup-koffice.png share/icons/oxygen/16x16/actions/table.png share/icons/oxygen/22x22/actions/table.png share/icons/oxygen/32x32/actions/shape-choose.png share/icons/oxygen/32x32/actions/table.png share/icons/oxygen/32x32/actions/x-shape-chart.png share/icons/oxygen/32x32/actions/x-shape-connection.png share/icons/oxygen/32x32/actions/x-shape-formula.png share/icons/oxygen/32x32/actions/x-shape-image.png share/icons/oxygen/32x32/actions/x-shape-text.png share/icons/oxygen/48x48/actions/table.png share/icons/oxygen/scalable/actions/shape-choose.svgz share/icons/oxygen/scalable/actions/table.svgz share/kde4/services/Filterkpr2odf.desktop share/kde4/services/ServiceMenus/karbon_konqi.desktop share/kde4/services/ServiceMenus/kchart_konqi.desktop share/kde4/services/ServiceMenus/kformula_konqi.desktop share/kde4/services/ServiceMenus/kivio_konqi.desktop share/kde4/services/ServiceMenus/kpresenter_konqi.desktop share/kde4/services/ServiceMenus/krita_konqi.desktop share/kde4/services/ServiceMenus/kspread_konqi.desktop share/kde4/services/ServiceMenus/kword_konqi.desktop share/kde4/services/artistictextshape.desktop share/kde4/services/autocorrect.desktop share/kde4/services/changecase.desktop share/kde4/services/chartshape.desktop +share/kde4/services/commentshape.desktop share/kde4/services/defaulttools.desktop share/kde4/services/divineproportionshape.desktop share/kde4/services/formulashape.desktop share/kde4/services/generic_filter.desktop +share/kde4/services/html-odf_export.desktop share/kde4/services/karbon_1x_import.desktop %%EPS%%share/kde4/services/karbon_eps_import.desktop share/kde4/services/karbon_pdf_import.desktop share/kde4/services/karbon_png_export.desktop share/kde4/services/karbon_svg_export.desktop share/kde4/services/karbon_svg_import.desktop share/kde4/services/karbon_svgz_import.desktop share/kde4/services/karbon_wmf_export.desktop share/kde4/services/karbon_wmf_import.desktop share/kde4/services/karbon_wpg_import.desktop share/kde4/services/karbonfiltereffects.desktop share/kde4/services/karbonpart.desktop share/kde4/services/karbontools.desktop -share/kde4/services/kchart_bmp_export.desktop -share/kde4/services/kchart_jpeg_export.desktop -share/kde4/services/kchart_mng_export.desktop -share/kde4/services/kchart_png_export.desktop -share/kde4/services/kchart_svg_export.desktop -share/kde4/services/kchart_xbm_export.desktop -share/kde4/services/kchart_xpm_export.desktop share/kde4/services/kchartpart.desktop share/kde4/services/kexi/kexicsv_importexporthandler.desktop share/kde4/services/kexi/kexiformhandler.desktop share/kde4/services/kexi/keximigrationhandler.desktop share/kde4/services/kexi/kexiqueryhandler.desktop share/kde4/services/kexi/kexireporthandler.desktop share/kde4/services/kexi/kexiscripthandler.desktop share/kde4/services/kexi/kexitablehandler.desktop share/kde4/services/kexidb_mysqldriver.desktop share/kde4/services/kexidb_pqxxsqldriver.desktop share/kde4/services/kexidb_sqlite3driver.desktop +%%SYBASE%%share/kde4/services/kexidb_sybasedriver.desktop %%XBASE%%share/kde4/services/kexidb_xbasedriver.desktop share/kde4/services/keximigrate_kspread.desktop share/kde4/services/keximigrate_mdb.desktop share/kde4/services/keximigrate_mysql.desktop share/kde4/services/keximigrate_pqxx.desktop %%SYBASE%%share/kde4/services/keximigrate_sybase.desktop share/kde4/services/keximigrate_txt.desktop %%XBASE%%share/kde4/services/keximigrate_xbase.desktop share/kde4/services/kexirelationdesignshape.desktop share/kde4/services/kformdesigner/kformdesigner_containers.desktop share/kde4/services/kformdesigner/kformdesigner_kexidbfactory.desktop share/kde4/services/kformdesigner/kformdesigner_stdwidgets.desktop share/kde4/services/kformulapart.desktop +share/kde4/services/kodocinfopropspage.desktop share/kde4/services/kofficedockers.desktop share/kde4/services/kofficethumbnail.desktop share/kde4/services/kolcmsengine.desktop share/kde4/services/kopabackgroundtool.desktop +share/kde4/services/koreport_barcodeplugin.desktop +share/kde4/services/koreport_chartplugin.desktop +share/kde4/services/koreport_shapeplugin.desktop share/kde4/services/kounavail.desktop share/kde4/services/kplato_icalendar_export.desktop share/kde4/services/kplatopart.desktop share/kde4/services/kplatoworkpart.desktop share/kde4/services/kpr_pageeffect_barwipe.desktop share/kde4/services/kpr_pageeffect_clockwipe.desktop share/kde4/services/kpr_pageeffect_edgewipe.desktop +share/kde4/services/kpr_pageeffect_fade.desktop share/kde4/services/kpr_pageeffect_iriswipe.desktop share/kde4/services/kpr_pageeffect_matrixwipe.desktop share/kde4/services/kpr_pageeffect_slidewipe.desktop +share/kde4/services/kpr_pageeffect_spacerotation.desktop +share/kde4/services/kpr_pageeffect_swapeffect.desktop share/kde4/services/kpr_shapeanimation_example.desktop share/kde4/services/kpresenter_powerpoint_import.desktop share/kde4/services/kpresenter_pptx_import.desktop share/kde4/services/kpresentereventactions.desktop share/kde4/services/kpresenterpart.desktop share/kde4/services/kpresentertoolanimation.desktop share/kde4/services/kprvariables.desktop share/kde4/services/krita_bmp_export.desktop share/kde4/services/krita_bmp_import.desktop +share/kde4/services/krita_colorselectorng.desktop share/kde4/services/krita_colorspaces_extensions_plugin.desktop %%GTL%%share/kde4/services/krita_ctlcs_plugin.desktop share/kde4/services/krita_digitalmixer.desktop %%GTL%%share/kde4/services/krita_exr_export.desktop %%GTL%%share/kde4/services/krita_exr_import.desktop share/kde4/services/krita_gif_import.desktop share/kde4/services/krita_jp2_export.desktop share/kde4/services/krita_jp2_import.desktop share/kde4/services/krita_jpeg_export.desktop share/kde4/services/krita_jpeg_import.desktop share/kde4/services/krita_ora_export.desktop share/kde4/services/krita_ora_import.desktop share/kde4/services/krita_pdf_import.desktop share/kde4/services/krita_png_export.desktop share/kde4/services/krita_png_import.desktop share/kde4/services/krita_ppm_export.desktop share/kde4/services/krita_ppm_import.desktop share/kde4/services/krita_raw_import.desktop share/kde4/services/krita_smallcolorselector.desktop share/kde4/services/krita_specificcolorselector.desktop share/kde4/services/krita_tiff_export.desktop share/kde4/services/krita_tiff_import.desktop share/kde4/services/krita_xcf_import.desktop -share/kde4/services/kritabackgrounds.desktop share/kde4/services/kritabigbrother.desktop share/kde4/services/kritablurfilter.desktop -share/kde4/services/kritabracketing2hdr.desktop -share/kde4/services/kritabumpmapfilter.desktop -share/kde4/services/kritachalkpaintop.desktop share/kde4/services/kritacolorgenerator.desktop share/kde4/services/kritacolorrange.desktop share/kde4/services/kritacolorsfilter.desktop share/kde4/services/kritacolorspaceconversion.desktop share/kde4/services/kritaconvolutionfilters.desktop share/kde4/services/kritacurvepaintop.desktop share/kde4/services/kritadefaultdockers.desktop share/kde4/services/kritadefaultpaintops.desktop share/kde4/services/kritadefaulttools.desktop share/kde4/services/kritadeformpaintop.desktop share/kde4/services/kritadodgeburn.desktop share/kde4/services/kritadropshadow.desktop share/kde4/services/kritadynapaintop.desktop share/kde4/services/kritaembossfilter.desktop share/kde4/services/kritaexample.desktop share/kde4/services/kritaextensioncolorsfilters.desktop share/kde4/services/kritaextensionsmanager.desktop share/kde4/services/kritafastcolortransfer.desktop share/kde4/services/kritafilterop.desktop share/kde4/services/kritagridpaintop.desktop share/kde4/services/kritahairypaintop.desktop +share/kde4/services/kritahatchingpaintop.desktop share/kde4/services/kritahistogram.desktop share/kde4/services/kritaimageenhancement.desktop share/kde4/services/kritaimagesize.desktop share/kde4/services/kritalayercompose.desktop share/kde4/services/kritalevelfilter.desktop share/kde4/services/kritametadataeditor.desktop share/kde4/services/kritamodifyselection.desktop share/kde4/services/kritanoisefilter.desktop -share/kde4/services/kritaoilpaintfilter.desktop share/kde4/services/kritapart.desktop share/kde4/services/kritaparticlepaintop.desktop share/kde4/services/kritapixelizefilter.desktop share/kde4/services/kritaraindropsfilter.desktop share/kde4/services/kritarandompickfilter.desktop share/kde4/services/kritarotateimage.desktop share/kde4/services/kritaroundcornersfilter.desktop share/kde4/services/kritarulerassistanttool.desktop -share/kde4/services/kritascripting.desktop share/kde4/services/kritaselectiontools.desktop share/kde4/services/kritaseparatechannels.desktop share/kde4/services/kritashearimage.desktop %%GTL%%share/kde4/services/kritashivafilters.desktop %%GTL%%share/kde4/services/kritashivagenerators.desktop -share/kde4/services/kritasmalltilesfilter.desktop -share/kde4/services/kritasobelfilter.desktop -share/kde4/services/kritasoftpaintop.desktop +share/kde4/services/kritasketchpaintop.desktop share/kde4/services/kritaspraypaintop.desktop share/kde4/services/kritatogether.desktop share/kde4/services/kritatonemapping.desktop share/kde4/services/kritatoolcrop.desktop share/kde4/services/kritatooldyna.desktop share/kde4/services/kritatoolgrid.desktop share/kde4/services/kritatoolperspectivegrid.desktop -share/kde4/services/kritatoolperspectivetransform.desktop share/kde4/services/kritatoolpolygon.desktop share/kde4/services/kritatoolpolyline.desktop share/kde4/services/kritatoolstar.desktop share/kde4/services/kritatooltransform.desktop share/kde4/services/kritatrianglecolorselector.desktop share/kde4/services/kritaunsharpfilter.desktop share/kde4/services/kritawavefilter.desktop share/kde4/services/krossmodulekplato.desktop share/kde4/services/krossmodulekspread.desktop share/kde4/services/krossmodulekword.desktop share/kde4/services/kspread_applixspread_import.desktop share/kde4/services/kspread_csv_export.desktop share/kde4/services/kspread_csv_import.desktop share/kde4/services/kspread_dbase_import.desktop share/kde4/services/kspread_excel_import.desktop share/kde4/services/kspread_gnumeric_export.desktop share/kde4/services/kspread_gnumeric_import.desktop share/kde4/services/kspread_html_export.desktop share/kde4/services/kspread_html_import.desktop share/kde4/services/kspread_latex_export.desktop share/kde4/services/kspread_opencalc_export.desktop share/kde4/services/kspread_opencalc_import.desktop share/kde4/services/kspread_plugin_tool_calendar.desktop share/kde4/services/kspread_qpro_import.desktop share/kde4/services/kspread_xlsx_import.desktop share/kde4/services/kspreadbitopsmodule.desktop share/kde4/services/kspreadconversionmodule.desktop share/kde4/services/kspreaddatabasemodule.desktop share/kde4/services/kspreaddatetimemodule.desktop share/kde4/services/kspreadengineeringmodule.desktop share/kde4/services/kspreadfinancialmodule.desktop share/kde4/services/kspreadinformationmodule.desktop share/kde4/services/kspreadlogicmodule.desktop share/kde4/services/kspreadmathmodule.desktop share/kde4/services/kspreadpart.desktop share/kde4/services/kspreadreferencemodule.desktop share/kde4/services/kspreadstatisticalmodule.desktop share/kde4/services/kspreadtextmodule.desktop share/kde4/services/kspreadtrigonometrymodule.desktop share/kde4/services/kword_abiword_export.desktop share/kde4/services/kword_abiword_import.desktop share/kde4/services/kword_amipro_export.desktop share/kde4/services/kword_amipro_import.desktop share/kde4/services/kword_applixword_import.desktop share/kde4/services/kword_ascii_export.desktop share/kde4/services/kword_ascii_import.desktop +share/kde4/services/kword_dcm_import.desktop share/kde4/services/kword_docbook_export.desktop share/kde4/services/kword_docx_import.desktop share/kde4/services/kword_hancomword_import.desktop share/kde4/services/kword_html_export.desktop share/kde4/services/kword_html_import.desktop share/kde4/services/kword_oowriter_export.desktop share/kde4/services/kword_oowriter_import.desktop share/kde4/services/kword_palmdoc_export.desktop share/kde4/services/kword_palmdoc_import.desktop share/kde4/services/kword_rtf_export.desktop share/kde4/services/kword_rtf_import.desktop share/kde4/services/kword_wml_export.desktop share/kde4/services/kword_wml_import.desktop share/kde4/services/kword_wp_export.desktop share/kde4/services/kword_wp_import.desktop share/kde4/services/kwordpart.desktop +share/kde4/services/libokularGenerator_odp.desktop share/kde4/services/musicshape.desktop +share/kde4/services/okularOdp.desktop share/kde4/services/paragraphtool.desktop share/kde4/services/pathshapes.desktop share/kde4/services/pictureshape.desktop +share/kde4/services/pluginshape.desktop share/kde4/services/spellcheck.desktop share/kde4/services/spreadsheetshape.desktop share/kde4/services/textshape.desktop share/kde4/services/textvariables.desktop share/kde4/services/thesaurustool.desktop -share/kde4/services/vectorshape.desktop share/kde4/services/videoshape.desktop share/kde4/services/xslt_export.desktop share/kde4/services/xslt_import.desktop share/kde4/servicetypes/filtereffect.desktop share/kde4/servicetypes/flake.desktop share/kde4/servicetypes/flakedevice.desktop share/kde4/servicetypes/flakeshape.desktop share/kde4/servicetypes/flaketool.desktop share/kde4/servicetypes/inlinetextobject.desktop share/kde4/servicetypes/karbon_module.desktop share/kde4/servicetypes/kexidb_driver.desktop share/kde4/servicetypes/kexihandler.desktop share/kde4/servicetypes/keximigration_driver.desktop share/kde4/servicetypes/kochart.desktop share/kde4/servicetypes/kofficedocker.desktop share/kde4/servicetypes/kofficepart.desktop share/kde4/servicetypes/kofilter.desktop share/kde4/servicetypes/kofilterwrapper.desktop share/kde4/servicetypes/koplugin.desktop +share/kde4/servicetypes/koreport_itemplugin.desktop share/kde4/servicetypes/kplato_schedulerplugin.desktop share/kde4/servicetypes/kpr_pageeffect.desktop share/kde4/servicetypes/kpr_shapeanimation.desktop share/kde4/servicetypes/krita_brush.desktop share/kde4/servicetypes/krita_dock.desktop share/kde4/servicetypes/krita_filter.desktop share/kde4/servicetypes/krita_generator.desktop share/kde4/servicetypes/krita_paintop.desktop share/kde4/servicetypes/krita_plugin.desktop share/kde4/servicetypes/krita_tool.desktop share/kde4/servicetypes/kspread_plugin.desktop share/kde4/servicetypes/pigment.desktop share/kde4/servicetypes/pigmentextension.desktop share/kde4/servicetypes/presentationeventaction.desktop share/kde4/servicetypes/scripteventaction.desktop share/kde4/servicetypes/texteditingplugin.desktop share/kde4/servicetypes/textvariableplugin.desktop share/kde4/servicetypes/widgetfactory.desktop share/mime/packages/krita_ora.xml share/mime/packages/msooxml-all.xml share/templates/.source/Illustration.karbon share/templates/.source/Presentation.kpt share/templates/.source/SpreadSheet.kst share/templates/.source/TextDocument.kwt share/templates/Illustration.desktop share/templates/Presentation.desktop share/templates/SpreadSheet.desktop share/templates/TextDocument.desktop @dirrmtry share/mime/packages @dirrmtry share/mime @dirrm share/kde4/services/kformdesigner @dirrm share/kde4/services/kexi @dirrmtry share/icons/hicolor/45x45/mimetypes @dirrmtry share/icons/hicolor/45x45 @dirrm share/doc/HTML/en/thesaurus @dirrm share/doc/HTML/en/kspread @dirrm share/doc/HTML/en/kpresenter @dirrm share/doc/HTML/en/koffice @dirrm share/doc/HTML/en/kformula @dirrm share/doc/HTML/en/kexi -@dirrm share/doc/HTML/en/kchart @dirrm share/doc/HTML/en/karbon @dirrm share/color/icc/pigment @dirrm share/color/icc/krita @dirrm share/color/icc @dirrm share/color @dirrm share/apps/xsltfilter/export/kword/xslfo @dirrm share/apps/xsltfilter/export/kword @dirrm share/apps/xsltfilter/export @dirrm share/apps/xsltfilter %%GTL%%@dirrm share/apps/pigmentcms/ctltemplates %%GTL%%@dirrm share/apps/pigmentcms/ctlprofiles %%GTL%%@dirrm share/apps/pigmentcms/ctlmodules %%GTL%%@dirrm share/apps/pigmentcms/ctlcompositeops %%GTL%%@dirrm share/apps/pigmentcms/ctlcolortransformations %%GTL%%@dirrm share/apps/pigmentcms/ctlcolorspaces %%GTL%%@dirrm share/apps/pigmentcms @dirrm share/apps/musicshape/fonts @dirrm share/apps/musicshape @dirrm share/apps/kword/templates/Normal/.source @dirrm share/apps/kword/templates/Normal @dirrm share/apps/kword/templates/Envelopes/.source @dirrm share/apps/kword/templates/Envelopes @dirrm share/apps/kword/templates/CardsAndLabels/.source @dirrm share/apps/kword/templates/CardsAndLabels @dirrm share/apps/kword/templates @dirrm share/apps/kword/styles @dirrm share/apps/kword/scripts/samples @dirrm share/apps/kword/scripts/extensions @dirrm share/apps/kword/scripts @dirrm share/apps/kword/kpartplugins @dirrm share/apps/kword/icons/hicolor/scalable/actions @dirrm share/apps/kword/icons/hicolor/scalable @dirrm share/apps/kword/icons/hicolor/48x48/actions @dirrm share/apps/kword/icons/hicolor/48x48 @dirrm share/apps/kword/icons/hicolor/128x128/actions @dirrm share/apps/kword/icons/hicolor/128x128 @dirrm share/apps/kword/icons/hicolor @dirrm share/apps/kword/icons +@dirrm share/apps/kword/html-odf @dirrm share/apps/kword @dirrm share/apps/kspread/templates/HomeFamily/.source @dirrm share/apps/kspread/templates/HomeFamily @dirrm share/apps/kspread/templates/General/.source @dirrm share/apps/kspread/templates/General @dirrm share/apps/kspread/templates/Business/.source @dirrm share/apps/kspread/templates/Business @dirrm share/apps/kspread/templates @dirrm share/apps/kspread/sheetstyles @dirrm share/apps/kspread/scripts/functions @dirrm share/apps/kspread/scripts/extensions @dirrm share/apps/kspread/scripts/docker @dirrm share/apps/kspread/scripts @dirrm share/apps/kspread/kpartplugins @dirrm share/apps/kspread/icons/hicolor/scalable/actions @dirrm share/apps/kspread/icons/hicolor/scalable @dirrm share/apps/kspread/icons/hicolor/48x48/actions @dirrm share/apps/kspread/icons/hicolor/48x48 @dirrm share/apps/kspread/icons/hicolor/32x32/actions @dirrm share/apps/kspread/icons/hicolor/32x32 @dirrm share/apps/kspread/icons/hicolor/22x22/actions @dirrm share/apps/kspread/icons/hicolor/22x22 @dirrm share/apps/kspread/icons/hicolor/16x16/actions @dirrm share/apps/kspread/icons/hicolor/16x16 @dirrm share/apps/kspread/icons/hicolor @dirrm share/apps/kspread/icons @dirrm share/apps/kspread/functions @dirrm share/apps/kspread/dtd @dirrm share/apps/kspread @dirrm share/apps/kritaplugins/metadataeditor @dirrm share/apps/kritaplugins @dirrm share/apps/krita/templates/rgb/.source @dirrm share/apps/krita/templates/rgb @dirrm share/apps/krita/templates/gray/.source @dirrm share/apps/krita/templates/gray +@dirrm share/apps/krita/templates/comics/.source +@dirrm share/apps/krita/templates/comics @dirrm share/apps/krita/templates/cmyk/.source @dirrm share/apps/krita/templates/cmyk @dirrm share/apps/krita/templates %%GTL%%@dirrm share/apps/krita/shiva/kernels %%GTL%%@dirrm share/apps/krita/shiva @dirrm share/apps/krita/shaders -@dirrm share/apps/krita/scripts/filters -@dirrm share/apps/krita/scripts/extensions -@dirrm share/apps/krita/scripts/dockers -@dirrm share/apps/krita/scripts/decorations -@dirrm share/apps/krita/scripts @dirrm share/apps/krita/pics @dirrm share/apps/krita/patterns @dirrm share/apps/krita/palettes +@dirrm share/apps/krita/paintoppresets @dirrm share/apps/krita/metadata/schemas @dirrm share/apps/krita/metadata @dirrm share/apps/krita/kpartplugins @dirrm share/apps/krita/images @dirrm share/apps/krita/icons/hicolor/48x48/actions @dirrm share/apps/krita/icons/hicolor/48x48 @dirrm share/apps/krita/icons/hicolor @dirrm share/apps/krita/icons @dirrm share/apps/krita/gradients @dirrm share/apps/krita/dtd +@dirrm share/apps/krita/defaultpresets @dirrm share/apps/krita/brushmodels @dirrm share/apps/krita/brushes @dirrm share/apps/krita/backgrounds @dirrm share/apps/krita +@dirrm share/apps/kpresenter/templates/odf/.source +@dirrm share/apps/kpresenter/templates/odf +@dirrm share/apps/kpresenter/templates/exportHTML/templates +@dirrm share/apps/kpresenter/templates/exportHTML @dirrm share/apps/kpresenter/templates/Screen/.source @dirrm share/apps/kpresenter/templates/Screen @dirrm share/apps/kpresenter/templates @dirrm share/apps/kpresenter/styles @dirrm share/apps/kpresenter/pics/rotate @dirrm share/apps/kpresenter/pics @dirrm share/apps/kpresenter/kpartplugins @dirrm share/apps/kpresenter/icons/hicolor/scalable/actions @dirrm share/apps/kpresenter/icons/hicolor/scalable +@dirrm share/apps/kpresenter/icons/hicolor/64x64/actions +@dirrm share/apps/kpresenter/icons/hicolor/64x64 @dirrm share/apps/kpresenter/icons/hicolor/48x48/actions @dirrm share/apps/kpresenter/icons/hicolor/48x48 @dirrm share/apps/kpresenter/icons/hicolor @dirrm share/apps/kpresenter/icons @dirrm share/apps/kpresenter @dirrm share/apps/kplatowork/templates/Simple/.source @dirrm share/apps/kplatowork/templates/Simple @dirrm share/apps/kplatowork/templates @dirrm share/apps/kplatowork/icons/hicolor/scalable/actions @dirrm share/apps/kplatowork/icons/hicolor/scalable @dirrm share/apps/kplatowork/icons/hicolor/64x64/actions @dirrm share/apps/kplatowork/icons/hicolor/64x64 @dirrm share/apps/kplatowork/icons/hicolor/48x48/actions @dirrm share/apps/kplatowork/icons/hicolor/48x48 @dirrm share/apps/kplatowork/icons/hicolor/32x32/actions @dirrm share/apps/kplatowork/icons/hicolor/32x32 @dirrm share/apps/kplatowork/icons/hicolor/22x22/actions @dirrm share/apps/kplatowork/icons/hicolor/22x22 @dirrm share/apps/kplatowork/icons/hicolor/16x16/actions @dirrm share/apps/kplatowork/icons/hicolor/16x16 @dirrm share/apps/kplatowork/icons/hicolor/128x128/actions @dirrm share/apps/kplatowork/icons/hicolor/128x128 @dirrm share/apps/kplatowork/icons/hicolor @dirrm share/apps/kplatowork/icons @dirrm share/apps/kplatowork @dirrm share/apps/kplato/templates/Simple/.source @dirrm share/apps/kplato/templates/Simple @dirrm share/apps/kplato/templates @dirrm share/apps/kplato/scripts/samples @dirrm share/apps/kplato/scripts/extensions @dirrm share/apps/kplato/scripts @dirrm share/apps/kplato/kpartplugins @dirrm share/apps/kplato/icons/hicolor/scalable/actions @dirrm share/apps/kplato/icons/hicolor/scalable @dirrm share/apps/kplato/icons/hicolor/48x48/actions @dirrm share/apps/kplato/icons/hicolor/48x48 @dirrm share/apps/kplato/icons/hicolor/32x32/actions @dirrm share/apps/kplato/icons/hicolor/32x32 @dirrm share/apps/kplato/icons/hicolor/22x22/actions @dirrm share/apps/kplato/icons/hicolor/22x22 @dirrm share/apps/kplato/icons/hicolor @dirrm share/apps/kplato/icons @dirrm share/apps/kplato/about @dirrm share/apps/kplato @dirrm share/apps/koproperty/icons/hicolor/16x16/actions @dirrm share/apps/koproperty/icons/hicolor/16x16 @dirrm share/apps/koproperty/icons/hicolor @dirrm share/apps/koproperty/icons @dirrm share/apps/koproperty @dirrm share/apps/koffice/thesaurus @dirrm share/apps/koffice/icons/oxygen/22x22/actions @dirrm share/apps/koffice/icons/oxygen/22x22 @dirrm share/apps/koffice/icons/oxygen/16x16/actions @dirrm share/apps/koffice/icons/oxygen/16x16 @dirrm share/apps/koffice/icons/oxygen @dirrm share/apps/koffice/icons/hicolor/scalable/actions @dirrm share/apps/koffice/icons/hicolor/scalable @dirrm share/apps/koffice/icons/hicolor/48x48/apps @dirrm share/apps/koffice/icons/hicolor/48x48/actions @dirrm share/apps/koffice/icons/hicolor/48x48 @dirrm share/apps/koffice/icons/hicolor/32x32/apps @dirrm share/apps/koffice/icons/hicolor/32x32/actions @dirrm share/apps/koffice/icons/hicolor/32x32 @dirrm share/apps/koffice/icons/hicolor/22x22/actions @dirrm share/apps/koffice/icons/hicolor/22x22 @dirrm share/apps/koffice/icons/hicolor/16x16/apps @dirrm share/apps/koffice/icons/hicolor/16x16/actions @dirrm share/apps/koffice/icons/hicolor/16x16 @dirrm share/apps/koffice/icons/hicolor @dirrm share/apps/koffice/icons @dirrmtry share/apps/koffice/autocorrect @dirrmtry share/apps/koffice @dirrm share/apps/kformula @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes/small/22x22 @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes/small/16x16 @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes/small @dirrm share/apps/kexi/icons/oxygen/scalable/mimetypes @dirrm share/apps/kexi/icons/oxygen/scalable/actions/small/22x22 @dirrm share/apps/kexi/icons/oxygen/scalable/actions/small/16x16 @dirrm share/apps/kexi/icons/oxygen/scalable/actions/small @dirrm share/apps/kexi/icons/oxygen/scalable/actions @dirrm share/apps/kexi/icons/oxygen/scalable @dirrm share/apps/kexi/icons/oxygen/64x64/mimetypes @dirrm share/apps/kexi/icons/oxygen/64x64 @dirrm share/apps/kexi/icons/oxygen/48x48/mimetypes @dirrm share/apps/kexi/icons/oxygen/48x48 @dirrm share/apps/kexi/icons/oxygen/32x32/mimetypes @dirrm share/apps/kexi/icons/oxygen/32x32/actions @dirrm share/apps/kexi/icons/oxygen/32x32 @dirrm share/apps/kexi/icons/oxygen/22x22/mimetypes @dirrm share/apps/kexi/icons/oxygen/22x22/actions @dirrm share/apps/kexi/icons/oxygen/22x22 @dirrm share/apps/kexi/icons/oxygen/16x16/mimetypes @dirrm share/apps/kexi/icons/oxygen/16x16/actions @dirrm share/apps/kexi/icons/oxygen/16x16 @dirrm share/apps/kexi/icons/oxygen/128x128/mimetypes @dirrm share/apps/kexi/icons/oxygen/128x128 @dirrm share/apps/kexi/icons/oxygen @dirrm share/apps/kexi/icons/hicolor/64x64/actions @dirrm share/apps/kexi/icons/hicolor/64x64 @dirrm share/apps/kexi/icons/hicolor/48x48/actions @dirrm share/apps/kexi/icons/hicolor/48x48 @dirrm share/apps/kexi/icons/hicolor/32x32/actions @dirrm share/apps/kexi/icons/hicolor/32x32 @dirrm share/apps/kexi/icons/hicolor/22x22/actions @dirrm share/apps/kexi/icons/hicolor/22x22 @dirrm share/apps/kexi/icons/hicolor/16x16/actions @dirrm share/apps/kexi/icons/hicolor/16x16 @dirrm share/apps/kexi/icons/hicolor/128x128/actions @dirrm share/apps/kexi/icons/hicolor/128x128 @dirrm share/apps/kexi/icons/hicolor @dirrm share/apps/kexi/icons @dirrm share/apps/kexi -@dirrm share/apps/kchart/templates/chart/.source -@dirrm share/apps/kchart/templates/chart -@dirrm share/apps/kchart/templates -@dirrm share/apps/kchart/pics -@dirrm share/apps/kchart/icons/hicolor/scalable/actions -@dirrm share/apps/kchart/icons/hicolor/scalable -@dirrm share/apps/kchart/icons/hicolor/48x48/actions -@dirrm share/apps/kchart/icons/hicolor/48x48 -@dirrm share/apps/kchart/icons/hicolor/32x32/actions -@dirrm share/apps/kchart/icons/hicolor/32x32 -@dirrm share/apps/kchart/icons/hicolor/22x22/actions -@dirrm share/apps/kchart/icons/hicolor/22x22 -@dirrm share/apps/kchart/icons/hicolor/16x16/actions -@dirrm share/apps/kchart/icons/hicolor/16x16 -@dirrm share/apps/kchart/icons/hicolor -@dirrm share/apps/kchart/icons -@dirrm share/apps/kchart @dirrm share/apps/karbon/templates/Basic/.source @dirrm share/apps/karbon/templates/Basic @dirrm share/apps/karbon/templates @dirrm share/apps/karbon/kpartplugins @dirrm share/apps/karbon/icons/oxygen/16x16/actions @dirrm share/apps/karbon/icons/oxygen/16x16 @dirrm share/apps/karbon/icons/oxygen @dirrm share/apps/karbon/icons/hicolor/scalable/actions @dirrm share/apps/karbon/icons/hicolor/scalable @dirrm share/apps/karbon/icons/hicolor/48x48/actions @dirrm share/apps/karbon/icons/hicolor/48x48 @dirrm share/apps/karbon/icons/hicolor/22x22/actions @dirrm share/apps/karbon/icons/hicolor/22x22 @dirrm share/apps/karbon/icons/hicolor/16x16/actions @dirrm share/apps/karbon/icons/hicolor/16x16 @dirrm share/apps/karbon/icons/hicolor @dirrm share/apps/karbon/icons @dirrm share/apps/karbon/gradients @dirrm share/apps/karbon @dirrm share/apps/formulashape/fonts @dirrm share/apps/formulashape @dirrm include/styles @dirrm include/kexi/forms @dirrm include/kexi @dirrm include/changetracker @exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true @unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true Property changes on: head/editors/koffice-kde4/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.40 \ No newline at end of property +1.41 \ No newline at end of property Index: head/editors/koffice-kde4-l10n/Makefile =================================================================== --- head/editors/koffice-kde4-l10n/Makefile (revision 271655) +++ head/editors/koffice-kde4-l10n/Makefile (revision 271656) @@ -1,60 +1,61 @@ # New ports collection makefile for: koffice-kde4-l10n # Date created: 28 November 2009 # Whom: Dima Panov # # $FreeBSD$ # PORTNAME= koffice-l10n PORTVERSION= ${KOFFICE2_VERSION} CATEGORIES= editors kde MASTER_SITES= # none DISTFILES= # none EXTRACT_ONLY= # none MAINTAINER= kde@FreeBSD.org COMMENT= Localized messages and documentation for KOffice2 NO_BUILD= yes # NO_INSTALL= yes USE_KDE4= kdeprefix -KOFFICE2_LANG_ALL= ca ca@valencia da de el en_GB es et fr gl it ja kk \ +KOFFICE2_LANG_ALL= ca ca@valencia da de el en_GB es et fr gl hu it ja kk \ nb nds nl pl pt pt_BR ru sv tr uk wa zh_CN zh_TW ca@valencia_PORT= editors/koffice-kde4-l10n-ca_valencia de_PORT= german/koffice-kde4-l10n fr_PORT= french/koffice-kde4-l10n +hu_PORT= hungarian/koffice-kde4-l10n ja_PORT= japanese/koffice-kde4-l10n pl_PORT= polish/koffice-kde4-l10n pt_BR_PORT= portuguese/koffice-kde4-l10n-pt_BR pt_PORT= portuguese/koffice-kde4-l10n ru_PORT= russian/koffice-kde4-l10n uk_PORT= ukrainian/koffice-kde4-l10n zh_CN_PORT= chinese/koffice-kde4-l10n-zh_CN zh_TW_PORT= chinese/koffice-kde4-l10n-zh_TW .include <${.CURDIR}/../../misc/kde4-l10n/files/kde4-lang-names> nb_NAME= Norwegian Bokmal OPTIONS= ALL "All localizations" on .for lang in ${KOFFICE2_LANG_ALL} ${lang}_DETECT?= ${KDE4_PREFIX}/share/locale/${lang}/LC_MESSAGES/koffice.mo ${lang}_PORT?= editors/koffice-kde4-l10n-${lang} ${lang}_NAME?= ${lang} ${lang}_OPTION= ${lang:S/@/_/} OPTIONS+= ${${lang}_OPTION} "${${lang}_NAME} localization" off .endfor .include .for lang in ${KOFFICE2_LANG_ALL} .if defined(WITH_ALL) || defined(WITH_${${lang}_OPTION}) RUN_DEPENDS+= ${${lang}_DETECT}:${PORTSDIR}/${${lang}_PORT} .endif .endfor do-install: ${DO_NADA} .include Property changes on: head/editors/koffice-kde4-l10n/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.54 \ No newline at end of property +1.55 \ No newline at end of property Index: head/editors/koffice-kde4-l10n/files/bsd.l10n.mk =================================================================== --- head/editors/koffice-kde4-l10n/files/bsd.l10n.mk (revision 271655) +++ head/editors/koffice-kde4-l10n/files/bsd.l10n.mk (revision 271656) @@ -1,16 +1,14 @@ .if defined(KOFFICE2_L10N) MASTER_SITES?= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR?= ${KOFFICE2_BRANCH}/koffice-${PORTVERSION}/koffice-l10n/ PKGNAMEPREFIX= ${KOFFICE2_L10N:S/@/_/}- DISTNAME= ${PORTNAME}-${KOFFICE2_L10N}-${PORTVERSION} DIST_SUBDIR= KDE/koffice-l10n -BUILD_DEPENDS= ${LOCALBASE}/share/xml/docbook/4.2/docbookx.dtd:${PORTSDIR}/textproc/docbook-xml - USE_BZIP2= yes USE_QT_VER= 4 QT_COMPONENTS= uic_build moc_build qmake_build rcc_build xml USE_GETTEXT= yes USE_KDE4= kdelibs kdehier kdeprefix automoc4 USE_CMAKE= yes .endif Property changes on: head/editors/koffice-kde4-l10n/files/bsd.l10n.mk ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-ca/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-ca/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-ca/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-ca-2.2.2.tar.bz2) = e5682579bdd4a8dd6235900215fbf5fa07f947fc459105740e96200d4667ed23 -SIZE (KDE/koffice-l10n/koffice-l10n-ca-2.2.2.tar.bz2) = 609607 +SHA256 (KDE/koffice-l10n/koffice-l10n-ca-2.3.1.tar.bz2) = 7471fb7811d3455364ce068047a40bf4fc00b8d080d331a1f1f83c6442cb5c43 +SIZE (KDE/koffice-l10n/koffice-l10n-ca-2.3.1.tar.bz2) = 602505 Property changes on: head/editors/koffice-kde4-l10n-ca/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-ca/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-ca/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-ca/pkg-plist (revision 271656) @@ -1,112 +1,121 @@ -share/apps/koffice/autocorrect/ca.xml share/doc/HTML/ca/karbon/common share/doc/HTML/ca/karbon/index.cache.bz2 share/doc/HTML/ca/karbon/index.docbook share/doc/HTML/ca/kchart/common share/doc/HTML/ca/kchart/index.cache.bz2 share/doc/HTML/ca/kchart/index.docbook share/doc/HTML/ca/kexi/basics.docbook share/doc/HTML/ca/kexi/building.docbook share/doc/HTML/ca/kexi/common share/doc/HTML/ca/kexi/comparing.docbook share/doc/HTML/ca/kexi/configuration.docbook share/doc/HTML/ca/kexi/credits.docbook share/doc/HTML/ca/kexi/database.docbook share/doc/HTML/ca/kexi/designingforms.docbook share/doc/HTML/ca/kexi/enteringdataintotables.docbook share/doc/HTML/ca/kexi/enteringdatausingforms.docbook share/doc/HTML/ca/kexi/index.cache.bz2 share/doc/HTML/ca/kexi/index.docbook share/doc/HTML/ca/kexi/intro.docbook share/doc/HTML/ca/kexi/menus.docbook share/doc/HTML/ca/kexi/querydesigning.docbook share/doc/HTML/ca/kformula/common share/doc/HTML/ca/kformula/index.cache.bz2 share/doc/HTML/ca/kformula/index.docbook +share/doc/HTML/ca/kivio/common +share/doc/HTML/ca/kivio/credits.docbook +share/doc/HTML/ca/kivio/index.cache.bz2 +share/doc/HTML/ca/kivio/index.docbook +share/doc/HTML/ca/kivio/introduction.docbook +share/doc/HTML/ca/kivio/usage.docbook +share/doc/HTML/ca/kivio/working.docbook share/doc/HTML/ca/koffice/common share/doc/HTML/ca/koffice/index.cache.bz2 share/doc/HTML/ca/koffice/index.docbook share/doc/HTML/ca/kpresenter/a11y.docbook share/doc/HTML/ca/kpresenter/common share/doc/HTML/ca/kpresenter/faq.docbook share/doc/HTML/ca/kpresenter/great-presentations.docbook share/doc/HTML/ca/kpresenter/guides.docbook share/doc/HTML/ca/kpresenter/index.cache.bz2 share/doc/HTML/ca/kpresenter/index.docbook share/doc/HTML/ca/kpresenter/menus.docbook share/doc/HTML/ca/kpresenter/options.docbook share/doc/HTML/ca/kpresenter/screen.docbook share/doc/HTML/ca/kpresenter/tutorial.docbook share/doc/HTML/ca/kspread/a11y.docbook share/doc/HTML/ca/kspread/advanced.docbook share/doc/HTML/ca/kspread/basics.docbook share/doc/HTML/ca/kspread/commands.docbook share/doc/HTML/ca/kspread/common share/doc/HTML/ca/kspread/config.docbook share/doc/HTML/ca/kspread/configdialog.docbook share/doc/HTML/ca/kspread/faq.docbook share/doc/HTML/ca/kspread/format.docbook share/doc/HTML/ca/kspread/importexport.docbook share/doc/HTML/ca/kspread/index.cache.bz2 share/doc/HTML/ca/kspread/index.docbook share/doc/HTML/ca/thesaurus/common share/doc/HTML/ca/thesaurus/index.cache.bz2 share/doc/HTML/ca/thesaurus/index.docbook share/locale/ca/LC_MESSAGES/ArtisticTextShape.mo share/locale/ca/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/ca/LC_MESSAGES/BarcodePlugin.mo share/locale/ca/LC_MESSAGES/CalendarTool.mo share/locale/ca/LC_MESSAGES/ChangecasePlugin.mo +share/locale/ca/LC_MESSAGES/ChartPlugin.mo share/locale/ca/LC_MESSAGES/ChartShape.mo +share/locale/ca/LC_MESSAGES/CommentShape.mo share/locale/ca/LC_MESSAGES/DivineProportion.mo share/locale/ca/LC_MESSAGES/FormulaShape.mo -share/locale/ca/LC_MESSAGES/FreOffice.mo share/locale/ca/LC_MESSAGES/KarbonTools.mo share/locale/ca/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/ca/LC_MESSAGES/MusicShape.mo share/locale/ca/LC_MESSAGES/ParagraphTool.mo share/locale/ca/LC_MESSAGES/PathShapes.mo share/locale/ca/LC_MESSAGES/PictureShape.mo +share/locale/ca/LC_MESSAGES/PluginShape.mo +share/locale/ca/LC_MESSAGES/ShapePlugin.mo share/locale/ca/LC_MESSAGES/SpellCheckPlugin.mo share/locale/ca/LC_MESSAGES/TableShape.mo share/locale/ca/LC_MESSAGES/TextShape.mo share/locale/ca/LC_MESSAGES/VariablesPlugin.mo share/locale/ca/LC_MESSAGES/VideoShape.mo share/locale/ca/LC_MESSAGES/desktop_koffice.mo share/locale/ca/LC_MESSAGES/karbon.mo share/locale/ca/LC_MESSAGES/kchart.mo share/locale/ca/LC_MESSAGES/kexi.mo share/locale/ca/LC_MESSAGES/kformula.mo share/locale/ca/LC_MESSAGES/kocolorspaces.mo share/locale/ca/LC_MESSAGES/koconverter.mo share/locale/ca/LC_MESSAGES/koffice-defaulttools.mo share/locale/ca/LC_MESSAGES/koffice-dockers.mo share/locale/ca/LC_MESSAGES/koffice-simpletextedit.mo share/locale/ca/LC_MESSAGES/koffice.mo share/locale/ca/LC_MESSAGES/kofficefilters.mo share/locale/ca/LC_MESSAGES/koproperty.mo share/locale/ca/LC_MESSAGES/kounavail.mo share/locale/ca/LC_MESSAGES/kplato.mo share/locale/ca/LC_MESSAGES/kplatolibs.mo share/locale/ca/LC_MESSAGES/kplatorcpsplugin.mo share/locale/ca/LC_MESSAGES/kplatowork.mo share/locale/ca/LC_MESSAGES/kpresenter.mo share/locale/ca/LC_MESSAGES/krita.mo share/locale/ca/LC_MESSAGES/krossmodulekplato.mo share/locale/ca/LC_MESSAGES/krossmodulekspread.mo share/locale/ca/LC_MESSAGES/krossmodulekword.mo share/locale/ca/LC_MESSAGES/kscan_plugin.mo share/locale/ca/LC_MESSAGES/kspread.mo share/locale/ca/LC_MESSAGES/kspreadsolver.mo share/locale/ca/LC_MESSAGES/kthesaurus.mo share/locale/ca/LC_MESSAGES/kword.mo share/locale/ca/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/ca/thesaurus @dirrm share/doc/HTML/ca/kspread @dirrm share/doc/HTML/ca/kpresenter @dirrm share/doc/HTML/ca/koffice +@dirrm share/doc/HTML/ca/kivio @dirrm share/doc/HTML/ca/kformula @dirrm share/doc/HTML/ca/kexi @dirrm share/doc/HTML/ca/kchart @dirrm share/doc/HTML/ca/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/koffice-kde4-l10n-ca/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-ca_valencia/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-ca_valencia/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-ca_valencia/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.2.2.tar.bz2) = f330d0838915b98fd4aa6b348bdaf39d2fb4289732772e08f4307fd450d4cd1d -SIZE (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.2.2.tar.bz2) = 322040 +SHA256 (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.3.1.tar.bz2) = 4552b512bff48dce5326b350ab77e68dd5b79476719c9b50ff5afdb3f28cd45b +SIZE (KDE/koffice-l10n/koffice-l10n-ca@valencia-2.3.1.tar.bz2) = 333798 Property changes on: head/editors/koffice-kde4-l10n-ca_valencia/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-ca_valencia/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-ca_valencia/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-ca_valencia/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/ca@valencia/LC_MESSAGES/ArtisticTextShape.mo share/locale/ca@valencia/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/ca@valencia/LC_MESSAGES/BarcodePlugin.mo share/locale/ca@valencia/LC_MESSAGES/CalendarTool.mo share/locale/ca@valencia/LC_MESSAGES/ChangecasePlugin.mo +share/locale/ca@valencia/LC_MESSAGES/ChartPlugin.mo share/locale/ca@valencia/LC_MESSAGES/ChartShape.mo +share/locale/ca@valencia/LC_MESSAGES/CommentShape.mo share/locale/ca@valencia/LC_MESSAGES/DivineProportion.mo share/locale/ca@valencia/LC_MESSAGES/FormulaShape.mo -share/locale/ca@valencia/LC_MESSAGES/FreOffice.mo share/locale/ca@valencia/LC_MESSAGES/KarbonTools.mo share/locale/ca@valencia/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/ca@valencia/LC_MESSAGES/MusicShape.mo share/locale/ca@valencia/LC_MESSAGES/ParagraphTool.mo share/locale/ca@valencia/LC_MESSAGES/PathShapes.mo share/locale/ca@valencia/LC_MESSAGES/PictureShape.mo +share/locale/ca@valencia/LC_MESSAGES/PluginShape.mo +share/locale/ca@valencia/LC_MESSAGES/ShapePlugin.mo share/locale/ca@valencia/LC_MESSAGES/SpellCheckPlugin.mo share/locale/ca@valencia/LC_MESSAGES/TableShape.mo share/locale/ca@valencia/LC_MESSAGES/TextShape.mo share/locale/ca@valencia/LC_MESSAGES/VariablesPlugin.mo share/locale/ca@valencia/LC_MESSAGES/VideoShape.mo share/locale/ca@valencia/LC_MESSAGES/desktop_koffice.mo share/locale/ca@valencia/LC_MESSAGES/karbon.mo share/locale/ca@valencia/LC_MESSAGES/kchart.mo share/locale/ca@valencia/LC_MESSAGES/kexi.mo share/locale/ca@valencia/LC_MESSAGES/kformula.mo share/locale/ca@valencia/LC_MESSAGES/kocolorspaces.mo share/locale/ca@valencia/LC_MESSAGES/koconverter.mo share/locale/ca@valencia/LC_MESSAGES/koffice-defaulttools.mo share/locale/ca@valencia/LC_MESSAGES/koffice-dockers.mo share/locale/ca@valencia/LC_MESSAGES/koffice-simpletextedit.mo share/locale/ca@valencia/LC_MESSAGES/koffice.mo share/locale/ca@valencia/LC_MESSAGES/kofficefilters.mo share/locale/ca@valencia/LC_MESSAGES/koproperty.mo share/locale/ca@valencia/LC_MESSAGES/kounavail.mo share/locale/ca@valencia/LC_MESSAGES/kplato.mo share/locale/ca@valencia/LC_MESSAGES/kplatolibs.mo share/locale/ca@valencia/LC_MESSAGES/kplatorcpsplugin.mo share/locale/ca@valencia/LC_MESSAGES/kplatowork.mo share/locale/ca@valencia/LC_MESSAGES/kpresenter.mo share/locale/ca@valencia/LC_MESSAGES/krita.mo share/locale/ca@valencia/LC_MESSAGES/krossmodulekplato.mo share/locale/ca@valencia/LC_MESSAGES/krossmodulekspread.mo share/locale/ca@valencia/LC_MESSAGES/krossmodulekword.mo share/locale/ca@valencia/LC_MESSAGES/kscan_plugin.mo share/locale/ca@valencia/LC_MESSAGES/kspread.mo share/locale/ca@valencia/LC_MESSAGES/kspreadsolver.mo share/locale/ca@valencia/LC_MESSAGES/kthesaurus.mo share/locale/ca@valencia/LC_MESSAGES/kword.mo share/locale/ca@valencia/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/editors/koffice-kde4-l10n-ca_valencia/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-da/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-da/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-da/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-da-2.2.2.tar.bz2) = 04528abc8dfd2785a282fc4228f7c9a88a8760376e79fd9e8c6b129a299d8dc5 -SIZE (KDE/koffice-l10n/koffice-l10n-da-2.2.2.tar.bz2) = 601612 +SHA256 (KDE/koffice-l10n/koffice-l10n-da-2.3.1.tar.bz2) = 0e68b45c8a2f0e357eaa24905605ea16f6ee4877363319afb9f484c261bbcf53 +SIZE (KDE/koffice-l10n/koffice-l10n-da-2.3.1.tar.bz2) = 574070 Property changes on: head/editors/koffice-kde4-l10n-da/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-da/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-da/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-da/pkg-plist (revision 271656) @@ -1,109 +1,101 @@ share/doc/HTML/da/karbon/common share/doc/HTML/da/karbon/index.cache.bz2 share/doc/HTML/da/karbon/index.docbook share/doc/HTML/da/kchart/common share/doc/HTML/da/kchart/index.cache.bz2 share/doc/HTML/da/kchart/index.docbook share/doc/HTML/da/kexi/basics.docbook share/doc/HTML/da/kexi/building.docbook share/doc/HTML/da/kexi/common share/doc/HTML/da/kexi/comparing.docbook share/doc/HTML/da/kexi/configuration.docbook share/doc/HTML/da/kexi/credits.docbook share/doc/HTML/da/kexi/database.docbook share/doc/HTML/da/kexi/designingforms.docbook share/doc/HTML/da/kexi/enteringdataintotables.docbook share/doc/HTML/da/kexi/enteringdatausingforms.docbook share/doc/HTML/da/kexi/index.cache.bz2 share/doc/HTML/da/kexi/index.docbook share/doc/HTML/da/kexi/intro.docbook share/doc/HTML/da/kexi/menus.docbook share/doc/HTML/da/kexi/querydesigning.docbook share/doc/HTML/da/kformula/common share/doc/HTML/da/kformula/index.cache.bz2 share/doc/HTML/da/kformula/index.docbook share/doc/HTML/da/koffice/common share/doc/HTML/da/koffice/index.cache.bz2 share/doc/HTML/da/koffice/index.docbook -share/doc/HTML/da/kpresenter/a11y.docbook -share/doc/HTML/da/kpresenter/common -share/doc/HTML/da/kpresenter/faq.docbook -share/doc/HTML/da/kpresenter/great-presentations.docbook -share/doc/HTML/da/kpresenter/guides.docbook -share/doc/HTML/da/kpresenter/index.cache.bz2 -share/doc/HTML/da/kpresenter/index.docbook -share/doc/HTML/da/kpresenter/menus.docbook -share/doc/HTML/da/kpresenter/options.docbook -share/doc/HTML/da/kpresenter/screen.docbook -share/doc/HTML/da/kpresenter/tutorial.docbook share/doc/HTML/da/kspread/a11y.docbook share/doc/HTML/da/kspread/advanced.docbook share/doc/HTML/da/kspread/basics.docbook share/doc/HTML/da/kspread/commands.docbook share/doc/HTML/da/kspread/common share/doc/HTML/da/kspread/config.docbook share/doc/HTML/da/kspread/configdialog.docbook share/doc/HTML/da/kspread/faq.docbook share/doc/HTML/da/kspread/format.docbook share/doc/HTML/da/kspread/importexport.docbook share/doc/HTML/da/kspread/index.cache.bz2 share/doc/HTML/da/kspread/index.docbook share/doc/HTML/da/thesaurus/common share/doc/HTML/da/thesaurus/index.cache.bz2 share/doc/HTML/da/thesaurus/index.docbook share/locale/da/LC_MESSAGES/ArtisticTextShape.mo share/locale/da/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/da/LC_MESSAGES/BarcodePlugin.mo share/locale/da/LC_MESSAGES/CalendarTool.mo share/locale/da/LC_MESSAGES/ChangecasePlugin.mo +share/locale/da/LC_MESSAGES/ChartPlugin.mo share/locale/da/LC_MESSAGES/ChartShape.mo +share/locale/da/LC_MESSAGES/CommentShape.mo share/locale/da/LC_MESSAGES/DivineProportion.mo share/locale/da/LC_MESSAGES/FormulaShape.mo -share/locale/da/LC_MESSAGES/FreOffice.mo share/locale/da/LC_MESSAGES/KarbonTools.mo share/locale/da/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/da/LC_MESSAGES/MusicShape.mo share/locale/da/LC_MESSAGES/ParagraphTool.mo share/locale/da/LC_MESSAGES/PathShapes.mo share/locale/da/LC_MESSAGES/PictureShape.mo +share/locale/da/LC_MESSAGES/PluginShape.mo +share/locale/da/LC_MESSAGES/ShapePlugin.mo share/locale/da/LC_MESSAGES/SpellCheckPlugin.mo share/locale/da/LC_MESSAGES/TableShape.mo share/locale/da/LC_MESSAGES/TextShape.mo share/locale/da/LC_MESSAGES/VariablesPlugin.mo share/locale/da/LC_MESSAGES/VideoShape.mo share/locale/da/LC_MESSAGES/desktop_koffice.mo share/locale/da/LC_MESSAGES/karbon.mo share/locale/da/LC_MESSAGES/kchart.mo share/locale/da/LC_MESSAGES/kexi.mo share/locale/da/LC_MESSAGES/kformula.mo share/locale/da/LC_MESSAGES/kocolorspaces.mo share/locale/da/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/koffice-defaulttools.mo share/locale/da/LC_MESSAGES/koffice-dockers.mo share/locale/da/LC_MESSAGES/koffice-simpletextedit.mo share/locale/da/LC_MESSAGES/koffice.mo share/locale/da/LC_MESSAGES/kofficefilters.mo share/locale/da/LC_MESSAGES/koproperty.mo share/locale/da/LC_MESSAGES/kounavail.mo share/locale/da/LC_MESSAGES/kplato.mo share/locale/da/LC_MESSAGES/kplatolibs.mo share/locale/da/LC_MESSAGES/kplatorcpsplugin.mo share/locale/da/LC_MESSAGES/kplatowork.mo share/locale/da/LC_MESSAGES/kpresenter.mo share/locale/da/LC_MESSAGES/krita.mo share/locale/da/LC_MESSAGES/krossmodulekplato.mo share/locale/da/LC_MESSAGES/krossmodulekspread.mo share/locale/da/LC_MESSAGES/krossmodulekword.mo share/locale/da/LC_MESSAGES/kscan_plugin.mo share/locale/da/LC_MESSAGES/kspread.mo share/locale/da/LC_MESSAGES/kspreadsolver.mo share/locale/da/LC_MESSAGES/kthesaurus.mo share/locale/da/LC_MESSAGES/kword.mo share/locale/da/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/da/thesaurus @dirrm share/doc/HTML/da/kspread -@dirrm share/doc/HTML/da/kpresenter @dirrm share/doc/HTML/da/koffice @dirrm share/doc/HTML/da/kformula @dirrm share/doc/HTML/da/kexi @dirrm share/doc/HTML/da/kchart @dirrm share/doc/HTML/da/karbon Property changes on: head/editors/koffice-kde4-l10n-da/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-el/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-el/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-el/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-el-2.2.2.tar.bz2) = 3846c902fa59e473c823bb783f7036c860a5329cd34d3430a3ba08b01e2b3dff -SIZE (KDE/koffice-l10n/koffice-l10n-el-2.2.2.tar.bz2) = 334551 +SHA256 (KDE/koffice-l10n/koffice-l10n-el-2.3.1.tar.bz2) = 76804f96c3a931f369fdbc0b8a5d2041870bb7273995822973273ef715ed52a3 +SIZE (KDE/koffice-l10n/koffice-l10n-el-2.3.1.tar.bz2) = 344757 Property changes on: head/editors/koffice-kde4-l10n-el/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-en_GB/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-en_GB/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-en_GB/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-en_GB-2.2.2.tar.bz2) = f1b8962de072c2304b70c271ec75918e3c71590a900575552a7b8d1481095934 -SIZE (KDE/koffice-l10n/koffice-l10n-en_GB-2.2.2.tar.bz2) = 346856 +SHA256 (KDE/koffice-l10n/koffice-l10n-en_GB-2.3.1.tar.bz2) = 965533eb638a1246db6bb0bc4ab208783eaa860a447bc653551e2c91cc9731af +SIZE (KDE/koffice-l10n/koffice-l10n-en_GB-2.3.1.tar.bz2) = 335483 Property changes on: head/editors/koffice-kde4-l10n-en_GB/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-en_GB/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-en_GB/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-en_GB/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/en_GB/LC_MESSAGES/ArtisticTextShape.mo share/locale/en_GB/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/en_GB/LC_MESSAGES/BarcodePlugin.mo share/locale/en_GB/LC_MESSAGES/CalendarTool.mo share/locale/en_GB/LC_MESSAGES/ChangecasePlugin.mo +share/locale/en_GB/LC_MESSAGES/ChartPlugin.mo share/locale/en_GB/LC_MESSAGES/ChartShape.mo +share/locale/en_GB/LC_MESSAGES/CommentShape.mo share/locale/en_GB/LC_MESSAGES/DivineProportion.mo share/locale/en_GB/LC_MESSAGES/FormulaShape.mo -share/locale/en_GB/LC_MESSAGES/FreOffice.mo share/locale/en_GB/LC_MESSAGES/KarbonTools.mo share/locale/en_GB/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/en_GB/LC_MESSAGES/MusicShape.mo share/locale/en_GB/LC_MESSAGES/ParagraphTool.mo share/locale/en_GB/LC_MESSAGES/PathShapes.mo share/locale/en_GB/LC_MESSAGES/PictureShape.mo +share/locale/en_GB/LC_MESSAGES/PluginShape.mo +share/locale/en_GB/LC_MESSAGES/ShapePlugin.mo share/locale/en_GB/LC_MESSAGES/SpellCheckPlugin.mo share/locale/en_GB/LC_MESSAGES/TableShape.mo share/locale/en_GB/LC_MESSAGES/TextShape.mo share/locale/en_GB/LC_MESSAGES/VariablesPlugin.mo share/locale/en_GB/LC_MESSAGES/VideoShape.mo share/locale/en_GB/LC_MESSAGES/desktop_koffice.mo share/locale/en_GB/LC_MESSAGES/karbon.mo share/locale/en_GB/LC_MESSAGES/kchart.mo share/locale/en_GB/LC_MESSAGES/kexi.mo share/locale/en_GB/LC_MESSAGES/kformula.mo share/locale/en_GB/LC_MESSAGES/kocolorspaces.mo share/locale/en_GB/LC_MESSAGES/koconverter.mo share/locale/en_GB/LC_MESSAGES/koffice-defaulttools.mo share/locale/en_GB/LC_MESSAGES/koffice-dockers.mo share/locale/en_GB/LC_MESSAGES/koffice-simpletextedit.mo share/locale/en_GB/LC_MESSAGES/koffice.mo share/locale/en_GB/LC_MESSAGES/kofficefilters.mo share/locale/en_GB/LC_MESSAGES/koproperty.mo share/locale/en_GB/LC_MESSAGES/kounavail.mo share/locale/en_GB/LC_MESSAGES/kplato.mo share/locale/en_GB/LC_MESSAGES/kplatolibs.mo share/locale/en_GB/LC_MESSAGES/kplatorcpsplugin.mo share/locale/en_GB/LC_MESSAGES/kplatowork.mo share/locale/en_GB/LC_MESSAGES/kpresenter.mo share/locale/en_GB/LC_MESSAGES/krita.mo share/locale/en_GB/LC_MESSAGES/krossmodulekplato.mo share/locale/en_GB/LC_MESSAGES/krossmodulekspread.mo share/locale/en_GB/LC_MESSAGES/krossmodulekword.mo share/locale/en_GB/LC_MESSAGES/kscan_plugin.mo share/locale/en_GB/LC_MESSAGES/kspread.mo share/locale/en_GB/LC_MESSAGES/kspreadsolver.mo share/locale/en_GB/LC_MESSAGES/kthesaurus.mo share/locale/en_GB/LC_MESSAGES/kword.mo share/locale/en_GB/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/editors/koffice-kde4-l10n-en_GB/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-es/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-es/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-es/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-es-2.2.2.tar.bz2) = 9624407d6099a0e29abb7019062ead5e53886f4bd2496240cd2c9b7105e37a56 -SIZE (KDE/koffice-l10n/koffice-l10n-es-2.2.2.tar.bz2) = 6222081 +SHA256 (KDE/koffice-l10n/koffice-l10n-es-2.3.1.tar.bz2) = 44a83ca8e92159e8121a2535244db45595d78044a8cee5297e4652d0591c2e3f +SIZE (KDE/koffice-l10n/koffice-l10n-es-2.3.1.tar.bz2) = 6264314 Property changes on: head/editors/koffice-kde4-l10n-es/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-es/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-es/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-es/pkg-plist (revision 271656) @@ -1,195 +1,204 @@ -share/apps/koffice/autocorrect/es.xml share/doc/HTML/es/karbon/common share/doc/HTML/es/karbon/index.cache.bz2 share/doc/HTML/es/karbon/index.docbook share/doc/HTML/es/kchart/common share/doc/HTML/es/kchart/cr22-action-chart_line.png share/doc/HTML/es/kchart/cr22-action-data.png share/doc/HTML/es/kchart/cr22-action-options.png share/doc/HTML/es/kchart/cr22-action-wizard.png share/doc/HTML/es/kchart/file-toolbar.png share/doc/HTML/es/kchart/file-toolbar2.png share/doc/HTML/es/kchart/frame_chart.png share/doc/HTML/es/kchart/index.cache.bz2 share/doc/HTML/es/kchart/index.docbook share/doc/HTML/es/kchart/kchart-config1.png share/doc/HTML/es/kchart/kchart-config2.png share/doc/HTML/es/kchart/kchart-config3.png share/doc/HTML/es/kchart/kchart-config4.png share/doc/HTML/es/kchart/kchart-config5.png share/doc/HTML/es/kchart/kchart-config6.png share/doc/HTML/es/kchart/kchart-config7.png share/doc/HTML/es/kchart/kchart-config8.png share/doc/HTML/es/kchart/kchart-dataeditor.png share/doc/HTML/es/kchart/kchart-default.png share/doc/HTML/es/kchart/kchart-example1-1.png share/doc/HTML/es/kchart/kchart-example1-2.png share/doc/HTML/es/kchart/kchart-example1-3.png share/doc/HTML/es/kchart/kchart-example1-4.png share/doc/HTML/es/kchart/kchart-example1-5.png share/doc/HTML/es/kchart/kchart-example1-6.png share/doc/HTML/es/kchart/kchart-example1-7.png share/doc/HTML/es/kchart/kchart-example1-8.png share/doc/HTML/es/kchart/kchart-example1-9.png share/doc/HTML/es/kchart/kchart-kspread-bar.png share/doc/HTML/es/kchart/kchart-kspread.png share/doc/HTML/es/kchart/kchart-startupdialog.png share/doc/HTML/es/kchart/kchart-wizard1.png share/doc/HTML/es/kchart/kchart-wizard2.png share/doc/HTML/es/kchart/kchart-wizard3.png share/doc/HTML/es/kchart/kchart-wizard4.png share/doc/HTML/es/kchart/shortcut.png share/doc/HTML/es/kchart/toolbars.png share/doc/HTML/es/kformula/ambiguous-string.png share/doc/HTML/es/kformula/common share/doc/HTML/es/kformula/correct_index_location.png share/doc/HTML/es/kformula/definite_integral.png share/doc/HTML/es/kformula/file-toolbar.png share/doc/HTML/es/kformula/file-toolbar2.png share/doc/HTML/es/kformula/green1.png share/doc/HTML/es/kformula/green2.png share/doc/HTML/es/kformula/greens.png share/doc/HTML/es/kformula/incorrect_index_location.png share/doc/HTML/es/kformula/index.cache.bz2 share/doc/HTML/es/kformula/index.docbook share/doc/HTML/es/kformula/index_smear.png share/doc/HTML/es/kformula/kfontinst1.png share/doc/HTML/es/kformula/kfontinst2.png share/doc/HTML/es/kformula/kfontinst3.png share/doc/HTML/es/kformula/kfontinst4.png share/doc/HTML/es/kformula/kfontinst5.png share/doc/HTML/es/kformula/kfontinst6.png share/doc/HTML/es/kformula/lower-index.png share/doc/HTML/es/kformula/matrix-view.png share/doc/HTML/es/kformula/matrix.png share/doc/HTML/es/kformula/negative_thin_space.png share/doc/HTML/es/kformula/path-integral.png share/doc/HTML/es/kformula/rk-edit0.png share/doc/HTML/es/kformula/rk-edit1.png share/doc/HTML/es/kformula/rk-edit2.png share/doc/HTML/es/kformula/scilab-edit.png share/doc/HTML/es/kformula/scilab.png share/doc/HTML/es/kformula/shortcut0.png share/doc/HTML/es/kformula/shortcut1.png share/doc/HTML/es/kformula/sin.png share/doc/HTML/es/kformula/toolbars.png share/doc/HTML/es/kformula/upper-index.png +share/doc/HTML/es/kivio/common +share/doc/HTML/es/kivio/credits.docbook +share/doc/HTML/es/kivio/index.cache.bz2 +share/doc/HTML/es/kivio/index.docbook +share/doc/HTML/es/kivio/introduction.docbook +share/doc/HTML/es/kivio/usage.docbook +share/doc/HTML/es/kivio/working.docbook share/doc/HTML/es/koffice/common share/doc/HTML/es/koffice/index.cache.bz2 share/doc/HTML/es/koffice/index.docbook share/doc/HTML/es/kpresenter/a11y.docbook share/doc/HTML/es/kpresenter/common share/doc/HTML/es/kpresenter/faq.docbook share/doc/HTML/es/kpresenter/great-presentations.docbook share/doc/HTML/es/kpresenter/guides.docbook share/doc/HTML/es/kpresenter/index.cache.bz2 share/doc/HTML/es/kpresenter/index.docbook share/doc/HTML/es/kpresenter/menus.docbook share/doc/HTML/es/kpresenter/options.docbook share/doc/HTML/es/kpresenter/screen.docbook share/doc/HTML/es/kpresenter/tutorial.docbook share/doc/HTML/es/kspread/a11y.docbook share/doc/HTML/es/kspread/advanced.docbook share/doc/HTML/es/kspread/basics.docbook share/doc/HTML/es/kspread/cellformat0.png share/doc/HTML/es/kspread/cellformat1.png share/doc/HTML/es/kspread/cellformat2.png share/doc/HTML/es/kspread/cellformat3.png share/doc/HTML/es/kspread/cellformat4.png share/doc/HTML/es/kspread/cellformat5.png share/doc/HTML/es/kspread/cellformat6.png share/doc/HTML/es/kspread/cellprotection1.png share/doc/HTML/es/kspread/cellprotection2.png share/doc/HTML/es/kspread/chart1.png share/doc/HTML/es/kspread/commands.docbook share/doc/HTML/es/kspread/common share/doc/HTML/es/kspread/config.docbook share/doc/HTML/es/kspread/configdialog.docbook share/doc/HTML/es/kspread/configure1.png share/doc/HTML/es/kspread/configure2.png share/doc/HTML/es/kspread/configure3.png share/doc/HTML/es/kspread/configure4.png share/doc/HTML/es/kspread/configure5.png share/doc/HTML/es/kspread/configure6.png share/doc/HTML/es/kspread/copy1.png share/doc/HTML/es/kspread/currency.png share/doc/HTML/es/kspread/decreasedecimal.png share/doc/HTML/es/kspread/faq.docbook share/doc/HTML/es/kspread/format.docbook share/doc/HTML/es/kspread/hideformula1.png share/doc/HTML/es/kspread/hideformula2.png share/doc/HTML/es/kspread/hideformula3.png share/doc/HTML/es/kspread/hideformula4.png share/doc/HTML/es/kspread/hideformula5.png share/doc/HTML/es/kspread/importexport.docbook share/doc/HTML/es/kspread/increasedecimal.png share/doc/HTML/es/kspread/index.cache.bz2 share/doc/HTML/es/kspread/index.docbook share/doc/HTML/es/kspread/newdocument.png share/doc/HTML/es/kspread/percent.png share/doc/HTML/es/kspread/sheetproperties.png share/doc/HTML/es/kspread/shortcut1.png share/doc/HTML/es/kspread/shortcut2.png share/doc/HTML/es/kspread/shortcut3.png share/doc/HTML/es/kspread/sort1.png share/doc/HTML/es/kspread/starting1.png share/doc/HTML/es/thesaurus/common share/doc/HTML/es/thesaurus/index.cache.bz2 share/doc/HTML/es/thesaurus/index.docbook share/locale/es/LC_MESSAGES/ArtisticTextShape.mo share/locale/es/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/es/LC_MESSAGES/BarcodePlugin.mo share/locale/es/LC_MESSAGES/CalendarTool.mo share/locale/es/LC_MESSAGES/ChangecasePlugin.mo +share/locale/es/LC_MESSAGES/ChartPlugin.mo share/locale/es/LC_MESSAGES/ChartShape.mo +share/locale/es/LC_MESSAGES/CommentShape.mo share/locale/es/LC_MESSAGES/DivineProportion.mo share/locale/es/LC_MESSAGES/FormulaShape.mo -share/locale/es/LC_MESSAGES/FreOffice.mo share/locale/es/LC_MESSAGES/KarbonTools.mo share/locale/es/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/es/LC_MESSAGES/MusicShape.mo share/locale/es/LC_MESSAGES/ParagraphTool.mo share/locale/es/LC_MESSAGES/PathShapes.mo share/locale/es/LC_MESSAGES/PictureShape.mo +share/locale/es/LC_MESSAGES/PluginShape.mo +share/locale/es/LC_MESSAGES/ShapePlugin.mo share/locale/es/LC_MESSAGES/SpellCheckPlugin.mo share/locale/es/LC_MESSAGES/TableShape.mo share/locale/es/LC_MESSAGES/TextShape.mo share/locale/es/LC_MESSAGES/VariablesPlugin.mo share/locale/es/LC_MESSAGES/VideoShape.mo share/locale/es/LC_MESSAGES/desktop_koffice.mo share/locale/es/LC_MESSAGES/karbon.mo share/locale/es/LC_MESSAGES/kchart.mo share/locale/es/LC_MESSAGES/kexi.mo share/locale/es/LC_MESSAGES/kformula.mo share/locale/es/LC_MESSAGES/kocolorspaces.mo share/locale/es/LC_MESSAGES/koconverter.mo share/locale/es/LC_MESSAGES/koffice-defaulttools.mo share/locale/es/LC_MESSAGES/koffice-dockers.mo share/locale/es/LC_MESSAGES/koffice-simpletextedit.mo share/locale/es/LC_MESSAGES/koffice.mo share/locale/es/LC_MESSAGES/kofficefilters.mo share/locale/es/LC_MESSAGES/koproperty.mo share/locale/es/LC_MESSAGES/kounavail.mo share/locale/es/LC_MESSAGES/kplato.mo share/locale/es/LC_MESSAGES/kplatolibs.mo share/locale/es/LC_MESSAGES/kplatorcpsplugin.mo share/locale/es/LC_MESSAGES/kplatowork.mo share/locale/es/LC_MESSAGES/kpresenter.mo share/locale/es/LC_MESSAGES/krita.mo share/locale/es/LC_MESSAGES/krossmodulekplato.mo share/locale/es/LC_MESSAGES/krossmodulekspread.mo share/locale/es/LC_MESSAGES/krossmodulekword.mo share/locale/es/LC_MESSAGES/kscan_plugin.mo share/locale/es/LC_MESSAGES/kspread.mo share/locale/es/LC_MESSAGES/kspreadsolver.mo share/locale/es/LC_MESSAGES/kthesaurus.mo share/locale/es/LC_MESSAGES/kword.mo share/locale/es/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/es/thesaurus @dirrm share/doc/HTML/es/kspread @dirrm share/doc/HTML/es/kpresenter @dirrm share/doc/HTML/es/koffice +@dirrm share/doc/HTML/es/kivio @dirrm share/doc/HTML/es/kformula @dirrm share/doc/HTML/es/kchart @dirrm share/doc/HTML/es/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/koffice-kde4-l10n-es/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-et/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-et/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-et/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-et-2.2.2.tar.bz2) = c857460c23c24a3a031dbdf740d9d08d0b74699874f01586ec5ea7630360851f -SIZE (KDE/koffice-l10n/koffice-l10n-et-2.2.2.tar.bz2) = 700518 +SHA256 (KDE/koffice-l10n/koffice-l10n-et-2.3.1.tar.bz2) = 1afdea159e43e0d2e1e4b6eff9307e53c6f42fea2dfb1ff23a8138f4792c4a5f +SIZE (KDE/koffice-l10n/koffice-l10n-et-2.3.1.tar.bz2) = 732850 Property changes on: head/editors/koffice-kde4-l10n-et/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-et/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-et/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-et/pkg-plist (revision 271656) @@ -1,115 +1,127 @@ share/doc/HTML/et/karbon/common share/doc/HTML/et/karbon/index.cache.bz2 share/doc/HTML/et/karbon/index.docbook share/doc/HTML/et/kchart/common share/doc/HTML/et/kchart/index.cache.bz2 share/doc/HTML/et/kchart/index.docbook share/doc/HTML/et/kexi/basics.docbook share/doc/HTML/et/kexi/building.docbook share/doc/HTML/et/kexi/common share/doc/HTML/et/kexi/comparing.docbook share/doc/HTML/et/kexi/configuration.docbook share/doc/HTML/et/kexi/credits.docbook share/doc/HTML/et/kexi/database.docbook share/doc/HTML/et/kexi/designingforms.docbook share/doc/HTML/et/kexi/enteringdataintotables.docbook share/doc/HTML/et/kexi/enteringdatausingforms.docbook share/doc/HTML/et/kexi/index.cache.bz2 share/doc/HTML/et/kexi/index.docbook share/doc/HTML/et/kexi/intro.docbook share/doc/HTML/et/kexi/menus.docbook share/doc/HTML/et/kexi/querydesigning.docbook share/doc/HTML/et/kformula/common share/doc/HTML/et/kformula/index.cache.bz2 share/doc/HTML/et/kformula/index.docbook +share/doc/HTML/et/kivio/common +share/doc/HTML/et/kivio/credits.docbook +share/doc/HTML/et/kivio/index.cache.bz2 +share/doc/HTML/et/kivio/index.docbook +share/doc/HTML/et/kivio/introduction.docbook +share/doc/HTML/et/kivio/usage.docbook +share/doc/HTML/et/kivio/working.docbook share/doc/HTML/et/koffice/common share/doc/HTML/et/koffice/index.cache.bz2 share/doc/HTML/et/koffice/index.docbook share/doc/HTML/et/kpresenter/a11y.docbook share/doc/HTML/et/kpresenter/common share/doc/HTML/et/kpresenter/faq.docbook share/doc/HTML/et/kpresenter/great-presentations.docbook share/doc/HTML/et/kpresenter/guides.docbook share/doc/HTML/et/kpresenter/index.cache.bz2 share/doc/HTML/et/kpresenter/index.docbook share/doc/HTML/et/kpresenter/menus.docbook share/doc/HTML/et/kpresenter/options.docbook share/doc/HTML/et/kpresenter/screen.docbook share/doc/HTML/et/kpresenter/tutorial.docbook share/doc/HTML/et/kspread/a11y.docbook share/doc/HTML/et/kspread/advanced.docbook share/doc/HTML/et/kspread/basics.docbook share/doc/HTML/et/kspread/chart1.png share/doc/HTML/et/kspread/commands.docbook share/doc/HTML/et/kspread/common share/doc/HTML/et/kspread/config.docbook share/doc/HTML/et/kspread/configdialog.docbook share/doc/HTML/et/kspread/copy1.png share/doc/HTML/et/kspread/faq.docbook share/doc/HTML/et/kspread/format.docbook share/doc/HTML/et/kspread/importexport.docbook share/doc/HTML/et/kspread/index.cache.bz2 share/doc/HTML/et/kspread/index.docbook share/doc/HTML/et/kspread/shortcut1.png share/doc/HTML/et/kspread/shortcut2.png share/doc/HTML/et/kspread/sort1.png share/doc/HTML/et/kspread/starting1.png share/doc/HTML/et/thesaurus/common share/doc/HTML/et/thesaurus/index.cache.bz2 share/doc/HTML/et/thesaurus/index.docbook share/locale/et/LC_MESSAGES/ArtisticTextShape.mo share/locale/et/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/et/LC_MESSAGES/BarcodePlugin.mo share/locale/et/LC_MESSAGES/CalendarTool.mo share/locale/et/LC_MESSAGES/ChangecasePlugin.mo +share/locale/et/LC_MESSAGES/ChartPlugin.mo share/locale/et/LC_MESSAGES/ChartShape.mo +share/locale/et/LC_MESSAGES/CommentShape.mo share/locale/et/LC_MESSAGES/DivineProportion.mo share/locale/et/LC_MESSAGES/FormulaShape.mo -share/locale/et/LC_MESSAGES/FreOffice.mo share/locale/et/LC_MESSAGES/KarbonTools.mo share/locale/et/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/et/LC_MESSAGES/MusicShape.mo share/locale/et/LC_MESSAGES/ParagraphTool.mo share/locale/et/LC_MESSAGES/PathShapes.mo share/locale/et/LC_MESSAGES/PictureShape.mo +share/locale/et/LC_MESSAGES/PluginShape.mo +share/locale/et/LC_MESSAGES/ShapePlugin.mo share/locale/et/LC_MESSAGES/SpellCheckPlugin.mo share/locale/et/LC_MESSAGES/TableShape.mo share/locale/et/LC_MESSAGES/TextShape.mo share/locale/et/LC_MESSAGES/VariablesPlugin.mo share/locale/et/LC_MESSAGES/VideoShape.mo share/locale/et/LC_MESSAGES/desktop_koffice.mo share/locale/et/LC_MESSAGES/karbon.mo share/locale/et/LC_MESSAGES/kchart.mo share/locale/et/LC_MESSAGES/kexi.mo share/locale/et/LC_MESSAGES/kformula.mo share/locale/et/LC_MESSAGES/kocolorspaces.mo share/locale/et/LC_MESSAGES/koconverter.mo share/locale/et/LC_MESSAGES/koffice-defaulttools.mo share/locale/et/LC_MESSAGES/koffice-dockers.mo share/locale/et/LC_MESSAGES/koffice-simpletextedit.mo share/locale/et/LC_MESSAGES/koffice.mo share/locale/et/LC_MESSAGES/kofficefilters.mo share/locale/et/LC_MESSAGES/koproperty.mo share/locale/et/LC_MESSAGES/kounavail.mo share/locale/et/LC_MESSAGES/kplato.mo share/locale/et/LC_MESSAGES/kplatolibs.mo share/locale/et/LC_MESSAGES/kplatorcpsplugin.mo share/locale/et/LC_MESSAGES/kplatowork.mo share/locale/et/LC_MESSAGES/kpresenter.mo share/locale/et/LC_MESSAGES/krita.mo share/locale/et/LC_MESSAGES/krossmodulekplato.mo share/locale/et/LC_MESSAGES/krossmodulekspread.mo share/locale/et/LC_MESSAGES/krossmodulekword.mo share/locale/et/LC_MESSAGES/kscan_plugin.mo share/locale/et/LC_MESSAGES/kspread.mo share/locale/et/LC_MESSAGES/kspreadsolver.mo share/locale/et/LC_MESSAGES/kthesaurus.mo share/locale/et/LC_MESSAGES/kword.mo share/locale/et/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/et/thesaurus @dirrm share/doc/HTML/et/kspread @dirrm share/doc/HTML/et/kpresenter @dirrm share/doc/HTML/et/koffice +@dirrm share/doc/HTML/et/kivio @dirrm share/doc/HTML/et/kformula @dirrm share/doc/HTML/et/kexi @dirrm share/doc/HTML/et/kchart @dirrm share/doc/HTML/et/karbon Property changes on: head/editors/koffice-kde4-l10n-et/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-gl/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-gl/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-gl/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-gl-2.2.2.tar.bz2) = a26f72b2071916566e8ef1786ee92bd468e928f052f6f1f2d900c0a9400c7abd -SIZE (KDE/koffice-l10n/koffice-l10n-gl-2.2.2.tar.bz2) = 355068 +SHA256 (KDE/koffice-l10n/koffice-l10n-gl-2.3.1.tar.bz2) = be51e1f1796db2c276c72896cc2d4f945745f39c176396d2ed5ea5131867650b +SIZE (KDE/koffice-l10n/koffice-l10n-gl-2.3.1.tar.bz2) = 367162 Property changes on: head/editors/koffice-kde4-l10n-gl/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-it/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-it/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-it/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-it-2.2.2.tar.bz2) = 921f2d5ae5e96fb7050de23d7bce95373b3b6afd3161b4a7905ef59eba158f54 -SIZE (KDE/koffice-l10n/koffice-l10n-it-2.2.2.tar.bz2) = 680382 +SHA256 (KDE/koffice-l10n/koffice-l10n-it-2.3.1.tar.bz2) = 28968c68a511f49a1dad01b583a02344ee2999767ef77fe915f11ef35bc197aa +SIZE (KDE/koffice-l10n/koffice-l10n-it-2.3.1.tar.bz2) = 709310 Property changes on: head/editors/koffice-kde4-l10n-it/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-it/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-it/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-it/pkg-plist (revision 271656) @@ -1,112 +1,121 @@ -share/apps/koffice/autocorrect/it.xml share/doc/HTML/it/karbon/common share/doc/HTML/it/karbon/index.cache.bz2 share/doc/HTML/it/karbon/index.docbook share/doc/HTML/it/kchart/common share/doc/HTML/it/kchart/index.cache.bz2 share/doc/HTML/it/kchart/index.docbook share/doc/HTML/it/kexi/basics.docbook share/doc/HTML/it/kexi/building.docbook share/doc/HTML/it/kexi/common share/doc/HTML/it/kexi/comparing.docbook share/doc/HTML/it/kexi/configuration.docbook share/doc/HTML/it/kexi/credits.docbook share/doc/HTML/it/kexi/database.docbook share/doc/HTML/it/kexi/designingforms.docbook share/doc/HTML/it/kexi/enteringdataintotables.docbook share/doc/HTML/it/kexi/enteringdatausingforms.docbook share/doc/HTML/it/kexi/index.cache.bz2 share/doc/HTML/it/kexi/index.docbook share/doc/HTML/it/kexi/intro.docbook share/doc/HTML/it/kexi/menus.docbook share/doc/HTML/it/kexi/querydesigning.docbook share/doc/HTML/it/kformula/common share/doc/HTML/it/kformula/index.cache.bz2 share/doc/HTML/it/kformula/index.docbook +share/doc/HTML/it/kivio/common +share/doc/HTML/it/kivio/credits.docbook +share/doc/HTML/it/kivio/index.cache.bz2 +share/doc/HTML/it/kivio/index.docbook +share/doc/HTML/it/kivio/introduction.docbook +share/doc/HTML/it/kivio/usage.docbook +share/doc/HTML/it/kivio/working.docbook share/doc/HTML/it/koffice/common share/doc/HTML/it/koffice/index.cache.bz2 share/doc/HTML/it/koffice/index.docbook share/doc/HTML/it/kpresenter/a11y.docbook share/doc/HTML/it/kpresenter/common share/doc/HTML/it/kpresenter/faq.docbook share/doc/HTML/it/kpresenter/great-presentations.docbook share/doc/HTML/it/kpresenter/guides.docbook share/doc/HTML/it/kpresenter/index.cache.bz2 share/doc/HTML/it/kpresenter/index.docbook share/doc/HTML/it/kpresenter/menus.docbook share/doc/HTML/it/kpresenter/options.docbook share/doc/HTML/it/kpresenter/screen.docbook share/doc/HTML/it/kpresenter/tutorial.docbook share/doc/HTML/it/kspread/a11y.docbook share/doc/HTML/it/kspread/advanced.docbook share/doc/HTML/it/kspread/basics.docbook share/doc/HTML/it/kspread/commands.docbook share/doc/HTML/it/kspread/common share/doc/HTML/it/kspread/config.docbook share/doc/HTML/it/kspread/configdialog.docbook share/doc/HTML/it/kspread/faq.docbook share/doc/HTML/it/kspread/format.docbook share/doc/HTML/it/kspread/importexport.docbook share/doc/HTML/it/kspread/index.cache.bz2 share/doc/HTML/it/kspread/index.docbook share/doc/HTML/it/thesaurus/common share/doc/HTML/it/thesaurus/index.cache.bz2 share/doc/HTML/it/thesaurus/index.docbook share/locale/it/LC_MESSAGES/ArtisticTextShape.mo share/locale/it/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/it/LC_MESSAGES/BarcodePlugin.mo share/locale/it/LC_MESSAGES/CalendarTool.mo share/locale/it/LC_MESSAGES/ChangecasePlugin.mo +share/locale/it/LC_MESSAGES/ChartPlugin.mo share/locale/it/LC_MESSAGES/ChartShape.mo +share/locale/it/LC_MESSAGES/CommentShape.mo share/locale/it/LC_MESSAGES/DivineProportion.mo share/locale/it/LC_MESSAGES/FormulaShape.mo -share/locale/it/LC_MESSAGES/FreOffice.mo share/locale/it/LC_MESSAGES/KarbonTools.mo share/locale/it/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/it/LC_MESSAGES/MusicShape.mo share/locale/it/LC_MESSAGES/ParagraphTool.mo share/locale/it/LC_MESSAGES/PathShapes.mo share/locale/it/LC_MESSAGES/PictureShape.mo +share/locale/it/LC_MESSAGES/PluginShape.mo +share/locale/it/LC_MESSAGES/ShapePlugin.mo share/locale/it/LC_MESSAGES/SpellCheckPlugin.mo share/locale/it/LC_MESSAGES/TableShape.mo share/locale/it/LC_MESSAGES/TextShape.mo share/locale/it/LC_MESSAGES/VariablesPlugin.mo share/locale/it/LC_MESSAGES/VideoShape.mo share/locale/it/LC_MESSAGES/desktop_koffice.mo share/locale/it/LC_MESSAGES/karbon.mo share/locale/it/LC_MESSAGES/kchart.mo share/locale/it/LC_MESSAGES/kexi.mo share/locale/it/LC_MESSAGES/kformula.mo share/locale/it/LC_MESSAGES/kocolorspaces.mo share/locale/it/LC_MESSAGES/koconverter.mo share/locale/it/LC_MESSAGES/koffice-defaulttools.mo share/locale/it/LC_MESSAGES/koffice-dockers.mo share/locale/it/LC_MESSAGES/koffice-simpletextedit.mo share/locale/it/LC_MESSAGES/koffice.mo share/locale/it/LC_MESSAGES/kofficefilters.mo share/locale/it/LC_MESSAGES/koproperty.mo share/locale/it/LC_MESSAGES/kounavail.mo share/locale/it/LC_MESSAGES/kplato.mo share/locale/it/LC_MESSAGES/kplatolibs.mo share/locale/it/LC_MESSAGES/kplatorcpsplugin.mo share/locale/it/LC_MESSAGES/kplatowork.mo share/locale/it/LC_MESSAGES/kpresenter.mo share/locale/it/LC_MESSAGES/krita.mo share/locale/it/LC_MESSAGES/krossmodulekplato.mo share/locale/it/LC_MESSAGES/krossmodulekspread.mo share/locale/it/LC_MESSAGES/krossmodulekword.mo share/locale/it/LC_MESSAGES/kscan_plugin.mo share/locale/it/LC_MESSAGES/kspread.mo share/locale/it/LC_MESSAGES/kspreadsolver.mo share/locale/it/LC_MESSAGES/kthesaurus.mo share/locale/it/LC_MESSAGES/kword.mo share/locale/it/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/it/thesaurus @dirrm share/doc/HTML/it/kspread @dirrm share/doc/HTML/it/kpresenter @dirrm share/doc/HTML/it/koffice +@dirrm share/doc/HTML/it/kivio @dirrm share/doc/HTML/it/kformula @dirrm share/doc/HTML/it/kexi @dirrm share/doc/HTML/it/kchart @dirrm share/doc/HTML/it/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/koffice-kde4-l10n-it/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-kk/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-kk/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-kk/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-kk-2.2.2.tar.bz2) = a5dac93be9fda80bc9096b47f85e86073e5cc91809bbf6e48ce197b8f1b9867c -SIZE (KDE/koffice-l10n/koffice-l10n-kk-2.2.2.tar.bz2) = 323371 +SHA256 (KDE/koffice-l10n/koffice-l10n-kk-2.3.1.tar.bz2) = 5693c247306be4de0eabdb17abfb834053914ca9d9af65d6a194918dce40ab8f +SIZE (KDE/koffice-l10n/koffice-l10n-kk-2.3.1.tar.bz2) = 333063 Property changes on: head/editors/koffice-kde4-l10n-kk/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-nb/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-nb/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-nb/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-nb-2.2.2.tar.bz2) = 299f406d52bb0230e868044a15fe99a743b3683648be84289b9e033f854a5ba7 -SIZE (KDE/koffice-l10n/koffice-l10n-nb-2.2.2.tar.bz2) = 319304 +SHA256 (KDE/koffice-l10n/koffice-l10n-nb-2.3.1.tar.bz2) = b4cdaf535836c7cbbf8c86661e564fa6a32a2f157e846c9bd76294dc004b0bc8 +SIZE (KDE/koffice-l10n/koffice-l10n-nb-2.3.1.tar.bz2) = 329384 Property changes on: head/editors/koffice-kde4-l10n-nb/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-nb/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-nb/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-nb/pkg-plist (revision 271656) @@ -1,51 +1,55 @@ share/apps/koffice/autocorrect/nb.xml share/locale/nb/LC_MESSAGES/ArtisticTextShape.mo share/locale/nb/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/nb/LC_MESSAGES/BarcodePlugin.mo share/locale/nb/LC_MESSAGES/CalendarTool.mo share/locale/nb/LC_MESSAGES/ChangecasePlugin.mo +share/locale/nb/LC_MESSAGES/ChartPlugin.mo share/locale/nb/LC_MESSAGES/ChartShape.mo +share/locale/nb/LC_MESSAGES/CommentShape.mo share/locale/nb/LC_MESSAGES/DivineProportion.mo share/locale/nb/LC_MESSAGES/FormulaShape.mo -share/locale/nb/LC_MESSAGES/FreOffice.mo share/locale/nb/LC_MESSAGES/KarbonTools.mo share/locale/nb/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/nb/LC_MESSAGES/MusicShape.mo share/locale/nb/LC_MESSAGES/ParagraphTool.mo share/locale/nb/LC_MESSAGES/PathShapes.mo share/locale/nb/LC_MESSAGES/PictureShape.mo +share/locale/nb/LC_MESSAGES/PluginShape.mo +share/locale/nb/LC_MESSAGES/ShapePlugin.mo share/locale/nb/LC_MESSAGES/SpellCheckPlugin.mo share/locale/nb/LC_MESSAGES/TableShape.mo share/locale/nb/LC_MESSAGES/TextShape.mo share/locale/nb/LC_MESSAGES/VariablesPlugin.mo share/locale/nb/LC_MESSAGES/VideoShape.mo share/locale/nb/LC_MESSAGES/desktop_koffice.mo share/locale/nb/LC_MESSAGES/karbon.mo share/locale/nb/LC_MESSAGES/kchart.mo share/locale/nb/LC_MESSAGES/kexi.mo share/locale/nb/LC_MESSAGES/kformula.mo share/locale/nb/LC_MESSAGES/kocolorspaces.mo share/locale/nb/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/koffice-defaulttools.mo share/locale/nb/LC_MESSAGES/koffice-dockers.mo share/locale/nb/LC_MESSAGES/koffice-simpletextedit.mo share/locale/nb/LC_MESSAGES/koffice.mo share/locale/nb/LC_MESSAGES/kofficefilters.mo share/locale/nb/LC_MESSAGES/koproperty.mo share/locale/nb/LC_MESSAGES/kounavail.mo share/locale/nb/LC_MESSAGES/kplato.mo share/locale/nb/LC_MESSAGES/kplatolibs.mo share/locale/nb/LC_MESSAGES/kplatorcpsplugin.mo share/locale/nb/LC_MESSAGES/kplatowork.mo share/locale/nb/LC_MESSAGES/kpresenter.mo share/locale/nb/LC_MESSAGES/krita.mo share/locale/nb/LC_MESSAGES/krossmodulekplato.mo share/locale/nb/LC_MESSAGES/krossmodulekspread.mo share/locale/nb/LC_MESSAGES/krossmodulekword.mo share/locale/nb/LC_MESSAGES/kscan_plugin.mo share/locale/nb/LC_MESSAGES/kspread.mo share/locale/nb/LC_MESSAGES/kspreadsolver.mo share/locale/nb/LC_MESSAGES/kthesaurus.mo share/locale/nb/LC_MESSAGES/kword.mo share/locale/nb/LC_MESSAGES/thesaurus_tool.mo -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice +@dirrm share/apps/koffice/autocorrect +@dirrm share/apps/koffice Property changes on: head/editors/koffice-kde4-l10n-nb/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-nds/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-nds/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-nds/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-nds-2.2.2.tar.bz2) = bb110c368203d0a2de8e60baa9006bc5d55dc296e75378d72a5ae0a18ec17da6 -SIZE (KDE/koffice-l10n/koffice-l10n-nds-2.2.2.tar.bz2) = 960450 +SHA256 (KDE/koffice-l10n/koffice-l10n-nds-2.3.1.tar.bz2) = 0d0328d7a9595869960eb2aa52d3b4ca4eefa95a9ccd205fea8ae7316d472fab +SIZE (KDE/koffice-l10n/koffice-l10n-nds-2.3.1.tar.bz2) = 971559 Property changes on: head/editors/koffice-kde4-l10n-nds/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-nds/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-nds/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-nds/pkg-plist (revision 271656) @@ -1,51 +1,52 @@ -share/apps/koffice/autocorrect/nds.xml share/locale/nds/LC_MESSAGES/ArtisticTextShape.mo share/locale/nds/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/nds/LC_MESSAGES/BarcodePlugin.mo share/locale/nds/LC_MESSAGES/CalendarTool.mo share/locale/nds/LC_MESSAGES/ChangecasePlugin.mo +share/locale/nds/LC_MESSAGES/ChartPlugin.mo share/locale/nds/LC_MESSAGES/ChartShape.mo +share/locale/nds/LC_MESSAGES/CommentShape.mo share/locale/nds/LC_MESSAGES/DivineProportion.mo share/locale/nds/LC_MESSAGES/FormulaShape.mo -share/locale/nds/LC_MESSAGES/FreOffice.mo share/locale/nds/LC_MESSAGES/KarbonTools.mo share/locale/nds/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/nds/LC_MESSAGES/MusicShape.mo share/locale/nds/LC_MESSAGES/ParagraphTool.mo share/locale/nds/LC_MESSAGES/PathShapes.mo share/locale/nds/LC_MESSAGES/PictureShape.mo +share/locale/nds/LC_MESSAGES/PluginShape.mo +share/locale/nds/LC_MESSAGES/ShapePlugin.mo share/locale/nds/LC_MESSAGES/SpellCheckPlugin.mo share/locale/nds/LC_MESSAGES/TableShape.mo share/locale/nds/LC_MESSAGES/TextShape.mo share/locale/nds/LC_MESSAGES/VariablesPlugin.mo share/locale/nds/LC_MESSAGES/VideoShape.mo share/locale/nds/LC_MESSAGES/desktop_koffice.mo share/locale/nds/LC_MESSAGES/karbon.mo share/locale/nds/LC_MESSAGES/kchart.mo share/locale/nds/LC_MESSAGES/kexi.mo share/locale/nds/LC_MESSAGES/kformula.mo share/locale/nds/LC_MESSAGES/kocolorspaces.mo share/locale/nds/LC_MESSAGES/koconverter.mo share/locale/nds/LC_MESSAGES/koffice-defaulttools.mo share/locale/nds/LC_MESSAGES/koffice-dockers.mo share/locale/nds/LC_MESSAGES/koffice-simpletextedit.mo share/locale/nds/LC_MESSAGES/koffice.mo share/locale/nds/LC_MESSAGES/kofficefilters.mo share/locale/nds/LC_MESSAGES/koproperty.mo share/locale/nds/LC_MESSAGES/kounavail.mo share/locale/nds/LC_MESSAGES/kplato.mo share/locale/nds/LC_MESSAGES/kplatolibs.mo share/locale/nds/LC_MESSAGES/kplatorcpsplugin.mo share/locale/nds/LC_MESSAGES/kplatowork.mo share/locale/nds/LC_MESSAGES/kpresenter.mo share/locale/nds/LC_MESSAGES/krita.mo share/locale/nds/LC_MESSAGES/krossmodulekplato.mo share/locale/nds/LC_MESSAGES/krossmodulekspread.mo share/locale/nds/LC_MESSAGES/krossmodulekword.mo share/locale/nds/LC_MESSAGES/kscan_plugin.mo share/locale/nds/LC_MESSAGES/kspread.mo share/locale/nds/LC_MESSAGES/kspreadsolver.mo share/locale/nds/LC_MESSAGES/kthesaurus.mo share/locale/nds/LC_MESSAGES/kword.mo share/locale/nds/LC_MESSAGES/thesaurus_tool.mo -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/editors/koffice-kde4-l10n-nds/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-nl/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-nl/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-nl/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-nl-2.2.2.tar.bz2) = c304a1ff3f4cd4582057bc6585ba6acdfca4759bffa81df95301d6da61fb72f4 -SIZE (KDE/koffice-l10n/koffice-l10n-nl-2.2.2.tar.bz2) = 2751492 +SHA256 (KDE/koffice-l10n/koffice-l10n-nl-2.3.1.tar.bz2) = 13785ed2b38303f5dc3e98b7d133abdf350d2d66453682583ed57b7e38f0f810 +SIZE (KDE/koffice-l10n/koffice-l10n-nl-2.3.1.tar.bz2) = 2789033 Property changes on: head/editors/koffice-kde4-l10n-nl/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-nl/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-nl/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-nl/pkg-plist (revision 271656) @@ -1,212 +1,224 @@ share/doc/HTML/nl/karbon/common share/doc/HTML/nl/karbon/index.cache.bz2 share/doc/HTML/nl/karbon/index.docbook share/doc/HTML/nl/kchart/common share/doc/HTML/nl/kchart/index.cache.bz2 share/doc/HTML/nl/kchart/index.docbook share/doc/HTML/nl/kexi/basics.docbook share/doc/HTML/nl/kexi/building.docbook share/doc/HTML/nl/kexi/common share/doc/HTML/nl/kexi/comparing.docbook share/doc/HTML/nl/kexi/configuration.docbook share/doc/HTML/nl/kexi/credits.docbook share/doc/HTML/nl/kexi/database.docbook share/doc/HTML/nl/kexi/designingforms.docbook share/doc/HTML/nl/kexi/enteringdataintotables.docbook share/doc/HTML/nl/kexi/enteringdatausingforms.docbook share/doc/HTML/nl/kexi/index.cache.bz2 share/doc/HTML/nl/kexi/index.docbook share/doc/HTML/nl/kexi/intro.docbook share/doc/HTML/nl/kexi/menus.docbook share/doc/HTML/nl/kexi/querydesigning.docbook share/doc/HTML/nl/kformula/additional_fonts1.png share/doc/HTML/nl/kformula/ambiguous-string.png share/doc/HTML/nl/kformula/common share/doc/HTML/nl/kformula/correct_index_location.png share/doc/HTML/nl/kformula/definite_integral.png share/doc/HTML/nl/kformula/file-toolbar.png share/doc/HTML/nl/kformula/file-toolbar2.png share/doc/HTML/nl/kformula/green1.png share/doc/HTML/nl/kformula/green2.png share/doc/HTML/nl/kformula/greens.png share/doc/HTML/nl/kformula/incorrect_index_location.png share/doc/HTML/nl/kformula/index.cache.bz2 share/doc/HTML/nl/kformula/index.docbook share/doc/HTML/nl/kformula/index_smear.png share/doc/HTML/nl/kformula/kfontinst-right.png share/doc/HTML/nl/kformula/kfontinst1.png share/doc/HTML/nl/kformula/kfontinst2.png share/doc/HTML/nl/kformula/kfontinst3.png share/doc/HTML/nl/kformula/kfontinst4.png share/doc/HTML/nl/kformula/kfontinst5.png share/doc/HTML/nl/kformula/lower-index.png share/doc/HTML/nl/kformula/matrix-view.png share/doc/HTML/nl/kformula/matrix.png share/doc/HTML/nl/kformula/path-integral.png share/doc/HTML/nl/kformula/rk-edit0.png share/doc/HTML/nl/kformula/rk-edit1.png share/doc/HTML/nl/kformula/rk-edit2.png share/doc/HTML/nl/kformula/scilab-edit.png share/doc/HTML/nl/kformula/scilab.png share/doc/HTML/nl/kformula/shortcut0.png share/doc/HTML/nl/kformula/shortcut1.png share/doc/HTML/nl/kformula/sin.png share/doc/HTML/nl/kformula/toolbars.png share/doc/HTML/nl/kformula/upper-index.png +share/doc/HTML/nl/kivio/common +share/doc/HTML/nl/kivio/credits.docbook +share/doc/HTML/nl/kivio/index.cache.bz2 +share/doc/HTML/nl/kivio/index.docbook +share/doc/HTML/nl/kivio/introduction.docbook +share/doc/HTML/nl/kivio/usage.docbook +share/doc/HTML/nl/kivio/working.docbook share/doc/HTML/nl/koffice/common share/doc/HTML/nl/koffice/index.cache.bz2 share/doc/HTML/nl/koffice/index.docbook share/doc/HTML/nl/kpresenter/a11y.docbook share/doc/HTML/nl/kpresenter/barstyle1.png share/doc/HTML/nl/kpresenter/barstyle2.png share/doc/HTML/nl/kpresenter/barstyle3.png share/doc/HTML/nl/kpresenter/barstyle4.png share/doc/HTML/nl/kpresenter/barstyle5.png share/doc/HTML/nl/kpresenter/barstyle6.png share/doc/HTML/nl/kpresenter/barstyle7.png share/doc/HTML/nl/kpresenter/common share/doc/HTML/nl/kpresenter/faq.docbook share/doc/HTML/nl/kpresenter/great-presentations.docbook share/doc/HTML/nl/kpresenter/guides.docbook share/doc/HTML/nl/kpresenter/htmlshow00.png share/doc/HTML/nl/kpresenter/htmlshow01.png share/doc/HTML/nl/kpresenter/htmlshow02.png share/doc/HTML/nl/kpresenter/htmlshow02a.png share/doc/HTML/nl/kpresenter/htmlshow03.png share/doc/HTML/nl/kpresenter/htmlshow04.png share/doc/HTML/nl/kpresenter/htmlshow05.png share/doc/HTML/nl/kpresenter/htmlshow07.png share/doc/HTML/nl/kpresenter/index.cache.bz2 share/doc/HTML/nl/kpresenter/index.docbook share/doc/HTML/nl/kpresenter/menus.docbook share/doc/HTML/nl/kpresenter/msexport1.png share/doc/HTML/nl/kpresenter/msexport2.png share/doc/HTML/nl/kpresenter/msexport3.png share/doc/HTML/nl/kpresenter/msexport4.png share/doc/HTML/nl/kpresenter/options.docbook share/doc/HTML/nl/kpresenter/screen.docbook share/doc/HTML/nl/kpresenter/settings01.png share/doc/HTML/nl/kpresenter/settings03.png share/doc/HTML/nl/kpresenter/settings04.png share/doc/HTML/nl/kpresenter/settings05.png share/doc/HTML/nl/kpresenter/settings06.png share/doc/HTML/nl/kpresenter/template02.png share/doc/HTML/nl/kpresenter/template03.png share/doc/HTML/nl/kpresenter/template04.png share/doc/HTML/nl/kpresenter/template05.png share/doc/HTML/nl/kpresenter/template06.png share/doc/HTML/nl/kpresenter/template07.png share/doc/HTML/nl/kpresenter/textmenu01.png share/doc/HTML/nl/kpresenter/textmenu02.png share/doc/HTML/nl/kpresenter/textmenu03.png share/doc/HTML/nl/kpresenter/textmenu03a.png share/doc/HTML/nl/kpresenter/textmenu04.png share/doc/HTML/nl/kpresenter/toolsmenu01.png share/doc/HTML/nl/kpresenter/tut01.png share/doc/HTML/nl/kpresenter/tut02.png share/doc/HTML/nl/kpresenter/tut03.png share/doc/HTML/nl/kpresenter/tut04.png share/doc/HTML/nl/kpresenter/tut05.png share/doc/HTML/nl/kpresenter/tut06.png share/doc/HTML/nl/kpresenter/tut07.png share/doc/HTML/nl/kpresenter/tut08.png share/doc/HTML/nl/kpresenter/tut09.png share/doc/HTML/nl/kpresenter/tut10.png share/doc/HTML/nl/kpresenter/tut11.png share/doc/HTML/nl/kpresenter/tut12.png share/doc/HTML/nl/kpresenter/tut13.png share/doc/HTML/nl/kpresenter/tut14.png share/doc/HTML/nl/kpresenter/tut15.png share/doc/HTML/nl/kpresenter/tut16.png share/doc/HTML/nl/kpresenter/tut17.png share/doc/HTML/nl/kpresenter/tut18.png share/doc/HTML/nl/kpresenter/tut19.png share/doc/HTML/nl/kpresenter/tut20.png share/doc/HTML/nl/kpresenter/tut21.png share/doc/HTML/nl/kpresenter/tut22.png share/doc/HTML/nl/kpresenter/tut23.png share/doc/HTML/nl/kpresenter/tutorial.docbook share/doc/HTML/nl/kspread/a11y.docbook share/doc/HTML/nl/kspread/advanced.docbook share/doc/HTML/nl/kspread/basics.docbook share/doc/HTML/nl/kspread/celformat0.png share/doc/HTML/nl/kspread/celformat1.png share/doc/HTML/nl/kspread/celformat2.png share/doc/HTML/nl/kspread/celformat3.png share/doc/HTML/nl/kspread/celformat4.png share/doc/HTML/nl/kspread/celformat5.png share/doc/HTML/nl/kspread/chart1.png share/doc/HTML/nl/kspread/commands.docbook share/doc/HTML/nl/kspread/common share/doc/HTML/nl/kspread/config.docbook share/doc/HTML/nl/kspread/configdialog.docbook share/doc/HTML/nl/kspread/copy1.png share/doc/HTML/nl/kspread/faq.docbook share/doc/HTML/nl/kspread/format.docbook share/doc/HTML/nl/kspread/importexport.docbook share/doc/HTML/nl/kspread/index.cache.bz2 share/doc/HTML/nl/kspread/index.docbook share/doc/HTML/nl/kspread/shortcut1.png share/doc/HTML/nl/kspread/shortcut2.png share/doc/HTML/nl/kspread/shortcut3.png share/doc/HTML/nl/kspread/sort1.png share/doc/HTML/nl/kspread/starting1.png share/doc/HTML/nl/thesaurus/common share/doc/HTML/nl/thesaurus/index.cache.bz2 share/doc/HTML/nl/thesaurus/index.docbook share/locale/nl/LC_MESSAGES/ArtisticTextShape.mo share/locale/nl/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/nl/LC_MESSAGES/BarcodePlugin.mo share/locale/nl/LC_MESSAGES/CalendarTool.mo share/locale/nl/LC_MESSAGES/ChangecasePlugin.mo +share/locale/nl/LC_MESSAGES/ChartPlugin.mo share/locale/nl/LC_MESSAGES/ChartShape.mo +share/locale/nl/LC_MESSAGES/CommentShape.mo share/locale/nl/LC_MESSAGES/DivineProportion.mo share/locale/nl/LC_MESSAGES/FormulaShape.mo -share/locale/nl/LC_MESSAGES/FreOffice.mo share/locale/nl/LC_MESSAGES/KarbonTools.mo share/locale/nl/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/nl/LC_MESSAGES/MusicShape.mo share/locale/nl/LC_MESSAGES/ParagraphTool.mo share/locale/nl/LC_MESSAGES/PathShapes.mo share/locale/nl/LC_MESSAGES/PictureShape.mo +share/locale/nl/LC_MESSAGES/PluginShape.mo +share/locale/nl/LC_MESSAGES/ShapePlugin.mo share/locale/nl/LC_MESSAGES/SpellCheckPlugin.mo share/locale/nl/LC_MESSAGES/TableShape.mo share/locale/nl/LC_MESSAGES/TextShape.mo share/locale/nl/LC_MESSAGES/VariablesPlugin.mo share/locale/nl/LC_MESSAGES/VideoShape.mo share/locale/nl/LC_MESSAGES/desktop_koffice.mo share/locale/nl/LC_MESSAGES/karbon.mo share/locale/nl/LC_MESSAGES/kchart.mo share/locale/nl/LC_MESSAGES/kexi.mo share/locale/nl/LC_MESSAGES/kformula.mo share/locale/nl/LC_MESSAGES/kocolorspaces.mo share/locale/nl/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/koffice-defaulttools.mo share/locale/nl/LC_MESSAGES/koffice-dockers.mo share/locale/nl/LC_MESSAGES/koffice-simpletextedit.mo share/locale/nl/LC_MESSAGES/koffice.mo share/locale/nl/LC_MESSAGES/kofficefilters.mo share/locale/nl/LC_MESSAGES/koproperty.mo share/locale/nl/LC_MESSAGES/kounavail.mo share/locale/nl/LC_MESSAGES/kplato.mo share/locale/nl/LC_MESSAGES/kplatolibs.mo share/locale/nl/LC_MESSAGES/kplatorcpsplugin.mo share/locale/nl/LC_MESSAGES/kplatowork.mo share/locale/nl/LC_MESSAGES/kpresenter.mo share/locale/nl/LC_MESSAGES/krita.mo share/locale/nl/LC_MESSAGES/krossmodulekplato.mo share/locale/nl/LC_MESSAGES/krossmodulekspread.mo share/locale/nl/LC_MESSAGES/krossmodulekword.mo share/locale/nl/LC_MESSAGES/kscan_plugin.mo share/locale/nl/LC_MESSAGES/kspread.mo share/locale/nl/LC_MESSAGES/kspreadsolver.mo share/locale/nl/LC_MESSAGES/kthesaurus.mo share/locale/nl/LC_MESSAGES/kword.mo share/locale/nl/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/nl/thesaurus @dirrm share/doc/HTML/nl/kspread @dirrm share/doc/HTML/nl/kpresenter @dirrm share/doc/HTML/nl/koffice +@dirrm share/doc/HTML/nl/kivio @dirrm share/doc/HTML/nl/kformula @dirrm share/doc/HTML/nl/kexi @dirrm share/doc/HTML/nl/kchart @dirrm share/doc/HTML/nl/karbon Property changes on: head/editors/koffice-kde4-l10n-nl/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-sv/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-sv/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-sv/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-sv-2.2.2.tar.bz2) = a902a61469be30dcb76c128d577e0e24243cd8bb8a0706b4dc6fc637568463e3 -SIZE (KDE/koffice-l10n/koffice-l10n-sv-2.2.2.tar.bz2) = 2414809 +SHA256 (KDE/koffice-l10n/koffice-l10n-sv-2.3.1.tar.bz2) = 556dd84f3db05ac890888f661f742afe7ac40252bf5d1ff76ab03aee701bde6f +SIZE (KDE/koffice-l10n/koffice-l10n-sv-2.3.1.tar.bz2) = 2447893 Property changes on: head/editors/koffice-kde4-l10n-sv/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-sv/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-sv/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-sv/pkg-plist (revision 271656) @@ -1,264 +1,276 @@ share/doc/HTML/sv/karbon/common share/doc/HTML/sv/karbon/index.cache.bz2 share/doc/HTML/sv/karbon/index.docbook share/doc/HTML/sv/kchart/common share/doc/HTML/sv/kchart/index.cache.bz2 share/doc/HTML/sv/kchart/index.docbook share/doc/HTML/sv/kchart/kchart-config1.png share/doc/HTML/sv/kchart/kchart-config2.png share/doc/HTML/sv/kchart/kchart-config3.png share/doc/HTML/sv/kchart/kchart-config4.png share/doc/HTML/sv/kchart/kchart-config5.png share/doc/HTML/sv/kchart/kchart-config6.png share/doc/HTML/sv/kchart/kchart-config7.png share/doc/HTML/sv/kchart/kchart-config8.png share/doc/HTML/sv/kchart/kchart-dataeditor.png share/doc/HTML/sv/kchart/kchart-default.png share/doc/HTML/sv/kchart/kchart-example1-1.png share/doc/HTML/sv/kchart/kchart-example1-2.png share/doc/HTML/sv/kchart/kchart-example1-3.png share/doc/HTML/sv/kchart/kchart-example1-4.png share/doc/HTML/sv/kchart/kchart-example1-5.png share/doc/HTML/sv/kchart/kchart-example1-6.png share/doc/HTML/sv/kchart/kchart-example1-7.png share/doc/HTML/sv/kchart/kchart-example1-8.png share/doc/HTML/sv/kchart/kchart-example1-9.png share/doc/HTML/sv/kchart/kchart-kspread-bar.png share/doc/HTML/sv/kchart/kchart-kspread.png share/doc/HTML/sv/kchart/kchart-startupdialog.png share/doc/HTML/sv/kchart/kchart-wizard0.png share/doc/HTML/sv/kchart/kchart-wizard1.png share/doc/HTML/sv/kchart/kchart-wizard2.png share/doc/HTML/sv/kchart/kchart-wizard3.png share/doc/HTML/sv/kchart/kchart-wizard4.png share/doc/HTML/sv/kchart/shortcut.png share/doc/HTML/sv/kchart/toolbars.png share/doc/HTML/sv/kexi/basics.docbook share/doc/HTML/sv/kexi/building.docbook share/doc/HTML/sv/kexi/common share/doc/HTML/sv/kexi/comparing.docbook share/doc/HTML/sv/kexi/configuration.docbook share/doc/HTML/sv/kexi/contact-example.png share/doc/HTML/sv/kexi/credits.docbook share/doc/HTML/sv/kexi/database.docbook share/doc/HTML/sv/kexi/designingforms.docbook share/doc/HTML/sv/kexi/enteringdataintotables.docbook share/doc/HTML/sv/kexi/enteringdatausingforms.docbook share/doc/HTML/sv/kexi/index.cache.bz2 share/doc/HTML/sv/kexi/index.docbook share/doc/HTML/sv/kexi/intro.docbook share/doc/HTML/sv/kexi/menus.docbook share/doc/HTML/sv/kexi/querydesigning.docbook share/doc/HTML/sv/kformula/ambiguous-string.png share/doc/HTML/sv/kformula/common share/doc/HTML/sv/kformula/green1.png share/doc/HTML/sv/kformula/green2.png share/doc/HTML/sv/kformula/index.cache.bz2 share/doc/HTML/sv/kformula/index.docbook share/doc/HTML/sv/kformula/kfontinst1.png share/doc/HTML/sv/kformula/kfontinst2.png share/doc/HTML/sv/kformula/kfontinst3.png share/doc/HTML/sv/kformula/kfontinst4.png share/doc/HTML/sv/kformula/kfontinst5.png share/doc/HTML/sv/kformula/kfontinst6.png share/doc/HTML/sv/kformula/rk-edit0.png share/doc/HTML/sv/kformula/rk-edit1.png share/doc/HTML/sv/kformula/rk-edit2.png share/doc/HTML/sv/kformula/scilab-edit.png share/doc/HTML/sv/kformula/shortcut0.png share/doc/HTML/sv/kformula/shortcut1.png share/doc/HTML/sv/kformula/toolbars.png +share/doc/HTML/sv/kivio/common +share/doc/HTML/sv/kivio/credits.docbook +share/doc/HTML/sv/kivio/index.cache.bz2 +share/doc/HTML/sv/kivio/index.docbook +share/doc/HTML/sv/kivio/introduction.docbook +share/doc/HTML/sv/kivio/usage.docbook +share/doc/HTML/sv/kivio/working.docbook share/doc/HTML/sv/koffice/common share/doc/HTML/sv/koffice/index.cache.bz2 share/doc/HTML/sv/koffice/index.docbook share/doc/HTML/sv/kpresenter/a11y.docbook share/doc/HTML/sv/kpresenter/autocorrection1.png share/doc/HTML/sv/kpresenter/autocorrection2.png share/doc/HTML/sv/kpresenter/autocorrection3.png share/doc/HTML/sv/kpresenter/autocorrection4.png share/doc/HTML/sv/kpresenter/barstyle1.png share/doc/HTML/sv/kpresenter/barstyle3.png share/doc/HTML/sv/kpresenter/barstyle4.png share/doc/HTML/sv/kpresenter/barstyle5.png share/doc/HTML/sv/kpresenter/barstyle6.png share/doc/HTML/sv/kpresenter/barstyle7.png share/doc/HTML/sv/kpresenter/changeformat.png share/doc/HTML/sv/kpresenter/common share/doc/HTML/sv/kpresenter/completion.png share/doc/HTML/sv/kpresenter/configure1.png share/doc/HTML/sv/kpresenter/configure2.png share/doc/HTML/sv/kpresenter/configure3.png share/doc/HTML/sv/kpresenter/configure4.png share/doc/HTML/sv/kpresenter/configure5.png share/doc/HTML/sv/kpresenter/configure6.png share/doc/HTML/sv/kpresenter/configure6b.png share/doc/HTML/sv/kpresenter/configure6c.png share/doc/HTML/sv/kpresenter/configure6d.png share/doc/HTML/sv/kpresenter/configure6e.png share/doc/HTML/sv/kpresenter/configure7.png share/doc/HTML/sv/kpresenter/faq.docbook share/doc/HTML/sv/kpresenter/great-presentations.docbook share/doc/HTML/sv/kpresenter/guides.docbook share/doc/HTML/sv/kpresenter/htmlshow1.png share/doc/HTML/sv/kpresenter/htmlshow2.png share/doc/HTML/sv/kpresenter/htmlshow3.png share/doc/HTML/sv/kpresenter/htmlshow4.png share/doc/HTML/sv/kpresenter/htmlshow5.png share/doc/HTML/sv/kpresenter/htmlshow6.png share/doc/HTML/sv/kpresenter/htmlshow7.png share/doc/HTML/sv/kpresenter/htmlshow8.png share/doc/HTML/sv/kpresenter/index.cache.bz2 share/doc/HTML/sv/kpresenter/index.docbook share/doc/HTML/sv/kpresenter/kbd-focus-ext.png share/doc/HTML/sv/kpresenter/menus.docbook share/doc/HTML/sv/kpresenter/mousenav.png share/doc/HTML/sv/kpresenter/msexport1.png share/doc/HTML/sv/kpresenter/msexport2.png share/doc/HTML/sv/kpresenter/msexport2b.png share/doc/HTML/sv/kpresenter/msexport3.png share/doc/HTML/sv/kpresenter/options.docbook share/doc/HTML/sv/kpresenter/properties.png share/doc/HTML/sv/kpresenter/screen.docbook share/doc/HTML/sv/kpresenter/settings01.png share/doc/HTML/sv/kpresenter/settings03.png share/doc/HTML/sv/kpresenter/settings04.png share/doc/HTML/sv/kpresenter/template02.png share/doc/HTML/sv/kpresenter/template03.png share/doc/HTML/sv/kpresenter/template04.png share/doc/HTML/sv/kpresenter/template05.png share/doc/HTML/sv/kpresenter/template06.png share/doc/HTML/sv/kpresenter/template07.png share/doc/HTML/sv/kpresenter/textmenu1.png share/doc/HTML/sv/kpresenter/textmenu2.png share/doc/HTML/sv/kpresenter/toolsmenu01.png share/doc/HTML/sv/kpresenter/tts.png share/doc/HTML/sv/kpresenter/tut01.png share/doc/HTML/sv/kpresenter/tut02.png share/doc/HTML/sv/kpresenter/tut03.png share/doc/HTML/sv/kpresenter/tut04.png share/doc/HTML/sv/kpresenter/tut05.png share/doc/HTML/sv/kpresenter/tut06.png share/doc/HTML/sv/kpresenter/tut07.png share/doc/HTML/sv/kpresenter/tut08.png share/doc/HTML/sv/kpresenter/tut09.png share/doc/HTML/sv/kpresenter/tut10.png share/doc/HTML/sv/kpresenter/tut11.png share/doc/HTML/sv/kpresenter/tut12.png share/doc/HTML/sv/kpresenter/tut13.png share/doc/HTML/sv/kpresenter/tut14.png share/doc/HTML/sv/kpresenter/tut15.png share/doc/HTML/sv/kpresenter/tut16.png share/doc/HTML/sv/kpresenter/tut17.png share/doc/HTML/sv/kpresenter/tut18.png share/doc/HTML/sv/kpresenter/tut19.png share/doc/HTML/sv/kpresenter/tut20.png share/doc/HTML/sv/kpresenter/tut21.png share/doc/HTML/sv/kpresenter/tut22.png share/doc/HTML/sv/kpresenter/tut23.png share/doc/HTML/sv/kpresenter/tut24.png share/doc/HTML/sv/kpresenter/tut26.png share/doc/HTML/sv/kpresenter/tutorial.docbook share/doc/HTML/sv/kspread/a11y.docbook share/doc/HTML/sv/kspread/advanced.docbook share/doc/HTML/sv/kspread/basics.docbook share/doc/HTML/sv/kspread/cellformat0.png share/doc/HTML/sv/kspread/cellformat1.png share/doc/HTML/sv/kspread/cellformat2.png share/doc/HTML/sv/kspread/cellformat3.png share/doc/HTML/sv/kspread/cellformat4.png share/doc/HTML/sv/kspread/cellformat5.png share/doc/HTML/sv/kspread/cellformat6.png share/doc/HTML/sv/kspread/cellformat7.png share/doc/HTML/sv/kspread/cellprotection1.png share/doc/HTML/sv/kspread/cellprotection2.png share/doc/HTML/sv/kspread/chart1.png share/doc/HTML/sv/kspread/commands.docbook share/doc/HTML/sv/kspread/common share/doc/HTML/sv/kspread/config.docbook share/doc/HTML/sv/kspread/configdialog.docbook share/doc/HTML/sv/kspread/configure1.png share/doc/HTML/sv/kspread/configure2.png share/doc/HTML/sv/kspread/configure3.png share/doc/HTML/sv/kspread/configure4.png share/doc/HTML/sv/kspread/configure5.png share/doc/HTML/sv/kspread/configure6.png share/doc/HTML/sv/kspread/copy1.png share/doc/HTML/sv/kspread/faq.docbook share/doc/HTML/sv/kspread/format.docbook share/doc/HTML/sv/kspread/hideformula1.png share/doc/HTML/sv/kspread/hideformula2.png share/doc/HTML/sv/kspread/hideformula3.png share/doc/HTML/sv/kspread/hideformula4.png share/doc/HTML/sv/kspread/hideformula5.png share/doc/HTML/sv/kspread/importexport.docbook share/doc/HTML/sv/kspread/index.cache.bz2 share/doc/HTML/sv/kspread/index.docbook share/doc/HTML/sv/kspread/kbd-focus-ext.png share/doc/HTML/sv/kspread/mousenav.png share/doc/HTML/sv/kspread/newdocument.png share/doc/HTML/sv/kspread/sheetproperties.png share/doc/HTML/sv/kspread/shortcut1.png share/doc/HTML/sv/kspread/shortcut2.png share/doc/HTML/sv/kspread/shortcut3.png share/doc/HTML/sv/kspread/sort1.png share/doc/HTML/sv/kspread/starting1.png share/doc/HTML/sv/kspread/tts.png share/doc/HTML/sv/thesaurus/common share/doc/HTML/sv/thesaurus/index.cache.bz2 share/doc/HTML/sv/thesaurus/index.docbook share/locale/sv/LC_MESSAGES/ArtisticTextShape.mo share/locale/sv/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/sv/LC_MESSAGES/BarcodePlugin.mo share/locale/sv/LC_MESSAGES/CalendarTool.mo share/locale/sv/LC_MESSAGES/ChangecasePlugin.mo +share/locale/sv/LC_MESSAGES/ChartPlugin.mo share/locale/sv/LC_MESSAGES/ChartShape.mo +share/locale/sv/LC_MESSAGES/CommentShape.mo share/locale/sv/LC_MESSAGES/DivineProportion.mo share/locale/sv/LC_MESSAGES/FormulaShape.mo -share/locale/sv/LC_MESSAGES/FreOffice.mo share/locale/sv/LC_MESSAGES/KarbonTools.mo share/locale/sv/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/sv/LC_MESSAGES/MusicShape.mo share/locale/sv/LC_MESSAGES/ParagraphTool.mo share/locale/sv/LC_MESSAGES/PathShapes.mo share/locale/sv/LC_MESSAGES/PictureShape.mo +share/locale/sv/LC_MESSAGES/PluginShape.mo +share/locale/sv/LC_MESSAGES/ShapePlugin.mo share/locale/sv/LC_MESSAGES/SpellCheckPlugin.mo share/locale/sv/LC_MESSAGES/TableShape.mo share/locale/sv/LC_MESSAGES/TextShape.mo share/locale/sv/LC_MESSAGES/VariablesPlugin.mo share/locale/sv/LC_MESSAGES/VideoShape.mo share/locale/sv/LC_MESSAGES/desktop_koffice.mo share/locale/sv/LC_MESSAGES/karbon.mo share/locale/sv/LC_MESSAGES/kchart.mo share/locale/sv/LC_MESSAGES/kexi.mo share/locale/sv/LC_MESSAGES/kformula.mo share/locale/sv/LC_MESSAGES/kocolorspaces.mo share/locale/sv/LC_MESSAGES/koconverter.mo share/locale/sv/LC_MESSAGES/koffice-defaulttools.mo share/locale/sv/LC_MESSAGES/koffice-dockers.mo share/locale/sv/LC_MESSAGES/koffice-simpletextedit.mo share/locale/sv/LC_MESSAGES/koffice.mo share/locale/sv/LC_MESSAGES/kofficefilters.mo share/locale/sv/LC_MESSAGES/koproperty.mo share/locale/sv/LC_MESSAGES/kounavail.mo share/locale/sv/LC_MESSAGES/kplato.mo share/locale/sv/LC_MESSAGES/kplatolibs.mo share/locale/sv/LC_MESSAGES/kplatorcpsplugin.mo share/locale/sv/LC_MESSAGES/kplatowork.mo share/locale/sv/LC_MESSAGES/kpresenter.mo share/locale/sv/LC_MESSAGES/krita.mo share/locale/sv/LC_MESSAGES/krossmodulekplato.mo share/locale/sv/LC_MESSAGES/krossmodulekspread.mo share/locale/sv/LC_MESSAGES/krossmodulekword.mo share/locale/sv/LC_MESSAGES/kscan_plugin.mo share/locale/sv/LC_MESSAGES/kspread.mo share/locale/sv/LC_MESSAGES/kspreadsolver.mo share/locale/sv/LC_MESSAGES/kthesaurus.mo share/locale/sv/LC_MESSAGES/kword.mo share/locale/sv/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/sv/thesaurus @dirrm share/doc/HTML/sv/kspread @dirrm share/doc/HTML/sv/kpresenter @dirrm share/doc/HTML/sv/koffice +@dirrm share/doc/HTML/sv/kivio @dirrm share/doc/HTML/sv/kformula @dirrm share/doc/HTML/sv/kexi @dirrm share/doc/HTML/sv/kchart @dirrm share/doc/HTML/sv/karbon Property changes on: head/editors/koffice-kde4-l10n-sv/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-tr/distinfo =================================================================== --- head/editors/koffice-kde4-l10n-tr/distinfo (revision 271655) +++ head/editors/koffice-kde4-l10n-tr/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-tr-2.2.2.tar.bz2) = 784139a8368446e466e958e2be464a1fe33108fc06d5c781cf3425d5c3382e36 -SIZE (KDE/koffice-l10n/koffice-l10n-tr-2.2.2.tar.bz2) = 312335 +SHA256 (KDE/koffice-l10n/koffice-l10n-tr-2.3.1.tar.bz2) = aec91ddf2d1ec7e58c51665aeee0fe1d8399a2ad6b1da313c1881d9dea87babb +SIZE (KDE/koffice-l10n/koffice-l10n-tr-2.3.1.tar.bz2) = 322315 Property changes on: head/editors/koffice-kde4-l10n-tr/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.21 \ No newline at end of property +1.22 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-tr/pkg-plist =================================================================== --- head/editors/koffice-kde4-l10n-tr/pkg-plist (revision 271655) +++ head/editors/koffice-kde4-l10n-tr/pkg-plist (revision 271656) @@ -1,48 +1,45 @@ share/locale/tr/LC_MESSAGES/ArtisticTextShape.mo share/locale/tr/LC_MESSAGES/AutocorrectPlugin.mo share/locale/tr/LC_MESSAGES/CalendarTool.mo share/locale/tr/LC_MESSAGES/ChangecasePlugin.mo share/locale/tr/LC_MESSAGES/ChartShape.mo share/locale/tr/LC_MESSAGES/DivineProportion.mo share/locale/tr/LC_MESSAGES/FormulaShape.mo -share/locale/tr/LC_MESSAGES/FreOffice.mo share/locale/tr/LC_MESSAGES/KarbonTools.mo share/locale/tr/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/tr/LC_MESSAGES/MusicShape.mo share/locale/tr/LC_MESSAGES/ParagraphTool.mo share/locale/tr/LC_MESSAGES/PathShapes.mo share/locale/tr/LC_MESSAGES/PictureShape.mo share/locale/tr/LC_MESSAGES/SpellCheckPlugin.mo share/locale/tr/LC_MESSAGES/TableShape.mo share/locale/tr/LC_MESSAGES/TextShape.mo share/locale/tr/LC_MESSAGES/VariablesPlugin.mo -share/locale/tr/LC_MESSAGES/VideoShape.mo share/locale/tr/LC_MESSAGES/desktop_koffice.mo share/locale/tr/LC_MESSAGES/karbon.mo share/locale/tr/LC_MESSAGES/kchart.mo share/locale/tr/LC_MESSAGES/kexi.mo share/locale/tr/LC_MESSAGES/kformula.mo share/locale/tr/LC_MESSAGES/kocolorspaces.mo share/locale/tr/LC_MESSAGES/koconverter.mo share/locale/tr/LC_MESSAGES/koffice-defaulttools.mo share/locale/tr/LC_MESSAGES/koffice-dockers.mo share/locale/tr/LC_MESSAGES/koffice-simpletextedit.mo share/locale/tr/LC_MESSAGES/koffice.mo share/locale/tr/LC_MESSAGES/kofficefilters.mo share/locale/tr/LC_MESSAGES/koproperty.mo share/locale/tr/LC_MESSAGES/kounavail.mo share/locale/tr/LC_MESSAGES/kplato.mo share/locale/tr/LC_MESSAGES/kplatolibs.mo -share/locale/tr/LC_MESSAGES/kplatorcpsplugin.mo share/locale/tr/LC_MESSAGES/kplatowork.mo share/locale/tr/LC_MESSAGES/kpresenter.mo share/locale/tr/LC_MESSAGES/krita.mo share/locale/tr/LC_MESSAGES/krossmodulekplato.mo share/locale/tr/LC_MESSAGES/krossmodulekspread.mo share/locale/tr/LC_MESSAGES/krossmodulekword.mo share/locale/tr/LC_MESSAGES/kscan_plugin.mo share/locale/tr/LC_MESSAGES/kspread.mo share/locale/tr/LC_MESSAGES/kspreadsolver.mo share/locale/tr/LC_MESSAGES/kthesaurus.mo share/locale/tr/LC_MESSAGES/kword.mo share/locale/tr/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/editors/koffice-kde4-l10n-tr/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/editors/koffice-kde4-l10n-wa/Makefile =================================================================== --- head/editors/koffice-kde4-l10n-wa/Makefile (revision 271655) +++ head/editors/koffice-kde4-l10n-wa/Makefile (revision 271656) @@ -1,18 +1,18 @@ # New ports collection makefile for: koffice-kde4-l10n-wa # Date created: 28 November 2009 # Whom: Dima Panov # # $FreeBSD$ # PORTNAME= koffice-l10n -PORTVERSION= ${KOFFICE2_VERSION} +PORTVERSION= 2.2.2 CATEGORIES?= editors kde MAINTAINER= kde@FreeBSD.org COMMENT= Walloon Bokmaal messages and documentation for KOffice2 KOFFICE2_L10N= wa .include "${.CURDIR}/../../editors/koffice-kde4-l10n/files/bsd.l10n.mk" .include Property changes on: head/editors/koffice-kde4-l10n-wa/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/french/calligra-l10n/distinfo =================================================================== --- head/french/calligra-l10n/distinfo (revision 271655) +++ head/french/calligra-l10n/distinfo (revision 271656) @@ -1,3 +1,2 @@ -MD5 (KDE/koffice-l10n/koffice-l10n-fr-2.2.2.tar.bz2) = 25242975ae4d8575fec807665ee3da06 -SHA256 (KDE/koffice-l10n/koffice-l10n-fr-2.2.2.tar.bz2) = aab32109be8c482a62168c4736135c07ab7983927a939c0164622259e41a683f -SIZE (KDE/koffice-l10n/koffice-l10n-fr-2.2.2.tar.bz2) = 6367480 +SHA256 (KDE/koffice-l10n/koffice-l10n-fr-2.3.1.tar.bz2) = b700fb94c973f9d37302de70b578f9b9c55a5f7bf8ead36e5c17033a49a63bdc +SIZE (KDE/koffice-l10n/koffice-l10n-fr-2.3.1.tar.bz2) = 6331869 Property changes on: head/french/calligra-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/french/calligra-l10n/pkg-plist =================================================================== --- head/french/calligra-l10n/pkg-plist (revision 271655) +++ head/french/calligra-l10n/pkg-plist (revision 271656) @@ -1,142 +1,102 @@ -share/apps/koffice/autocorrect/fr.xml share/doc/HTML/fr/karbon/common share/doc/HTML/fr/karbon/index.cache.bz2 share/doc/HTML/fr/karbon/index.docbook share/doc/HTML/fr/kchart/common share/doc/HTML/fr/kchart/file-toolbar.png share/doc/HTML/fr/kchart/file-toolbar2.png share/doc/HTML/fr/kchart/index.cache.bz2 share/doc/HTML/fr/kchart/index.docbook share/doc/HTML/fr/kchart/kchart-config1.png share/doc/HTML/fr/kchart/kchart-config2.png share/doc/HTML/fr/kchart/kchart-config3.png share/doc/HTML/fr/kchart/kchart-config4.png share/doc/HTML/fr/kchart/kchart-config5.png share/doc/HTML/fr/kchart/kchart-config6.png share/doc/HTML/fr/kchart/kchart-config7.png share/doc/HTML/fr/kchart/kchart-config8.png share/doc/HTML/fr/kchart/kchart-dataeditor.png share/doc/HTML/fr/kchart/kchart-default.png share/doc/HTML/fr/kchart/kchart-example1-1.png share/doc/HTML/fr/kchart/kchart-example1-2.png share/doc/HTML/fr/kchart/kchart-example1-3.png share/doc/HTML/fr/kchart/kchart-example1-4.png share/doc/HTML/fr/kchart/kchart-example1-5.png share/doc/HTML/fr/kchart/kchart-example1-6.png share/doc/HTML/fr/kchart/kchart-example1-7.png share/doc/HTML/fr/kchart/kchart-example1-8.png share/doc/HTML/fr/kchart/kchart-example1-9.png share/doc/HTML/fr/kchart/kchart-kspread-bar.png share/doc/HTML/fr/kchart/kchart-kspread.png share/doc/HTML/fr/kchart/kchart-startupdialog.png share/doc/HTML/fr/kchart/kchart-wizard1.png share/doc/HTML/fr/kchart/kchart-wizard2.png share/doc/HTML/fr/kchart/kchart-wizard3.png share/doc/HTML/fr/kchart/kchart-wizard4.png share/doc/HTML/fr/kchart/shortcut.png share/doc/HTML/fr/kchart/toolbars.png -share/doc/HTML/fr/kformula/ambiguous-string.png -share/doc/HTML/fr/kformula/common -share/doc/HTML/fr/kformula/file-toolbar.png -share/doc/HTML/fr/kformula/file-toolbar2.png -share/doc/HTML/fr/kformula/green1.png -share/doc/HTML/fr/kformula/green2.png -share/doc/HTML/fr/kformula/index.cache.bz2 -share/doc/HTML/fr/kformula/index.docbook -share/doc/HTML/fr/kformula/kfontinst1.png -share/doc/HTML/fr/kformula/kfontinst2.png -share/doc/HTML/fr/kformula/kfontinst3.png -share/doc/HTML/fr/kformula/kfontinst4.png -share/doc/HTML/fr/kformula/kfontinst5.png -share/doc/HTML/fr/kformula/rk-edit0.png -share/doc/HTML/fr/kformula/rk-edit1.png -share/doc/HTML/fr/kformula/rk-edit2.png -share/doc/HTML/fr/kformula/scilab-edit.png -share/doc/HTML/fr/kformula/scilab.png -share/doc/HTML/fr/kformula/shortcut0.png -share/doc/HTML/fr/kformula/shortcut1.png -share/doc/HTML/fr/kformula/toolbars.png -share/doc/HTML/fr/koffice/common -share/doc/HTML/fr/koffice/index.cache.bz2 -share/doc/HTML/fr/koffice/index.docbook -share/doc/HTML/fr/kspread/advanced.docbook -share/doc/HTML/fr/kspread/basics.docbook -share/doc/HTML/fr/kspread/cellformat0.png -share/doc/HTML/fr/kspread/cellformat1.png -share/doc/HTML/fr/kspread/cellformat2.png -share/doc/HTML/fr/kspread/cellformat3.png -share/doc/HTML/fr/kspread/cellformat4.png -share/doc/HTML/fr/kspread/cellformat5.png -share/doc/HTML/fr/kspread/chart1.png -share/doc/HTML/fr/kspread/commands.docbook -share/doc/HTML/fr/kspread/common -share/doc/HTML/fr/kspread/config.docbook -share/doc/HTML/fr/kspread/configdialog.docbook -share/doc/HTML/fr/kspread/copy1.png -share/doc/HTML/fr/kspread/faq.docbook -share/doc/HTML/fr/kspread/format.docbook -share/doc/HTML/fr/kspread/importexport.docbook -share/doc/HTML/fr/kspread/index.cache.bz2 -share/doc/HTML/fr/kspread/index.docbook -share/doc/HTML/fr/kspread/shortcut1.png -share/doc/HTML/fr/kspread/shortcut2.png -share/doc/HTML/fr/kspread/shortcut3.png -share/doc/HTML/fr/kspread/sort1.png -share/doc/HTML/fr/kspread/starting1.png +share/doc/HTML/fr/kivio/common +share/doc/HTML/fr/kivio/credits.docbook +share/doc/HTML/fr/kivio/index.cache.bz2 +share/doc/HTML/fr/kivio/index.docbook +share/doc/HTML/fr/kivio/introduction.docbook +share/doc/HTML/fr/kivio/usage.docbook +share/doc/HTML/fr/kivio/working.docbook share/doc/HTML/fr/thesaurus/common share/doc/HTML/fr/thesaurus/index.cache.bz2 share/doc/HTML/fr/thesaurus/index.docbook share/locale/fr/LC_MESSAGES/ArtisticTextShape.mo share/locale/fr/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/fr/LC_MESSAGES/BarcodePlugin.mo share/locale/fr/LC_MESSAGES/CalendarTool.mo share/locale/fr/LC_MESSAGES/ChangecasePlugin.mo +share/locale/fr/LC_MESSAGES/ChartPlugin.mo share/locale/fr/LC_MESSAGES/ChartShape.mo +share/locale/fr/LC_MESSAGES/CommentShape.mo share/locale/fr/LC_MESSAGES/DivineProportion.mo share/locale/fr/LC_MESSAGES/FormulaShape.mo share/locale/fr/LC_MESSAGES/KarbonTools.mo share/locale/fr/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/fr/LC_MESSAGES/MusicShape.mo share/locale/fr/LC_MESSAGES/ParagraphTool.mo share/locale/fr/LC_MESSAGES/PathShapes.mo share/locale/fr/LC_MESSAGES/PictureShape.mo +share/locale/fr/LC_MESSAGES/PluginShape.mo +share/locale/fr/LC_MESSAGES/ShapePlugin.mo share/locale/fr/LC_MESSAGES/SpellCheckPlugin.mo share/locale/fr/LC_MESSAGES/TableShape.mo share/locale/fr/LC_MESSAGES/TextShape.mo share/locale/fr/LC_MESSAGES/VariablesPlugin.mo share/locale/fr/LC_MESSAGES/VideoShape.mo share/locale/fr/LC_MESSAGES/desktop_koffice.mo share/locale/fr/LC_MESSAGES/karbon.mo share/locale/fr/LC_MESSAGES/kchart.mo share/locale/fr/LC_MESSAGES/kexi.mo share/locale/fr/LC_MESSAGES/kformula.mo share/locale/fr/LC_MESSAGES/kocolorspaces.mo share/locale/fr/LC_MESSAGES/koconverter.mo share/locale/fr/LC_MESSAGES/koffice-defaulttools.mo share/locale/fr/LC_MESSAGES/koffice-dockers.mo share/locale/fr/LC_MESSAGES/koffice-simpletextedit.mo share/locale/fr/LC_MESSAGES/koffice.mo share/locale/fr/LC_MESSAGES/kofficefilters.mo share/locale/fr/LC_MESSAGES/koproperty.mo share/locale/fr/LC_MESSAGES/kounavail.mo share/locale/fr/LC_MESSAGES/kplato.mo share/locale/fr/LC_MESSAGES/kplatolibs.mo +share/locale/fr/LC_MESSAGES/kplatorcpsplugin.mo share/locale/fr/LC_MESSAGES/kplatowork.mo share/locale/fr/LC_MESSAGES/kpresenter.mo share/locale/fr/LC_MESSAGES/krita.mo share/locale/fr/LC_MESSAGES/krossmodulekplato.mo share/locale/fr/LC_MESSAGES/krossmodulekspread.mo share/locale/fr/LC_MESSAGES/krossmodulekword.mo share/locale/fr/LC_MESSAGES/kscan_plugin.mo share/locale/fr/LC_MESSAGES/kspread.mo share/locale/fr/LC_MESSAGES/kspreadsolver.mo share/locale/fr/LC_MESSAGES/kthesaurus.mo share/locale/fr/LC_MESSAGES/kword.mo share/locale/fr/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/fr/thesaurus -@dirrm share/doc/HTML/fr/kspread -@dirrm share/doc/HTML/fr/koffice -@dirrm share/doc/HTML/fr/kformula +@dirrm share/doc/HTML/fr/kivio @dirrm share/doc/HTML/fr/kchart @dirrm share/doc/HTML/fr/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/french/calligra-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/french/koffice-kde4-l10n/distinfo =================================================================== --- head/french/koffice-kde4-l10n/distinfo (revision 271655) +++ head/french/koffice-kde4-l10n/distinfo (revision 271656) @@ -1,3 +1,2 @@ -MD5 (KDE/koffice-l10n/koffice-l10n-fr-2.2.2.tar.bz2) = 25242975ae4d8575fec807665ee3da06 -SHA256 (KDE/koffice-l10n/koffice-l10n-fr-2.2.2.tar.bz2) = aab32109be8c482a62168c4736135c07ab7983927a939c0164622259e41a683f -SIZE (KDE/koffice-l10n/koffice-l10n-fr-2.2.2.tar.bz2) = 6367480 +SHA256 (KDE/koffice-l10n/koffice-l10n-fr-2.3.1.tar.bz2) = b700fb94c973f9d37302de70b578f9b9c55a5f7bf8ead36e5c17033a49a63bdc +SIZE (KDE/koffice-l10n/koffice-l10n-fr-2.3.1.tar.bz2) = 6331869 Property changes on: head/french/koffice-kde4-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/french/koffice-kde4-l10n/pkg-plist =================================================================== --- head/french/koffice-kde4-l10n/pkg-plist (revision 271655) +++ head/french/koffice-kde4-l10n/pkg-plist (revision 271656) @@ -1,142 +1,102 @@ -share/apps/koffice/autocorrect/fr.xml share/doc/HTML/fr/karbon/common share/doc/HTML/fr/karbon/index.cache.bz2 share/doc/HTML/fr/karbon/index.docbook share/doc/HTML/fr/kchart/common share/doc/HTML/fr/kchart/file-toolbar.png share/doc/HTML/fr/kchart/file-toolbar2.png share/doc/HTML/fr/kchart/index.cache.bz2 share/doc/HTML/fr/kchart/index.docbook share/doc/HTML/fr/kchart/kchart-config1.png share/doc/HTML/fr/kchart/kchart-config2.png share/doc/HTML/fr/kchart/kchart-config3.png share/doc/HTML/fr/kchart/kchart-config4.png share/doc/HTML/fr/kchart/kchart-config5.png share/doc/HTML/fr/kchart/kchart-config6.png share/doc/HTML/fr/kchart/kchart-config7.png share/doc/HTML/fr/kchart/kchart-config8.png share/doc/HTML/fr/kchart/kchart-dataeditor.png share/doc/HTML/fr/kchart/kchart-default.png share/doc/HTML/fr/kchart/kchart-example1-1.png share/doc/HTML/fr/kchart/kchart-example1-2.png share/doc/HTML/fr/kchart/kchart-example1-3.png share/doc/HTML/fr/kchart/kchart-example1-4.png share/doc/HTML/fr/kchart/kchart-example1-5.png share/doc/HTML/fr/kchart/kchart-example1-6.png share/doc/HTML/fr/kchart/kchart-example1-7.png share/doc/HTML/fr/kchart/kchart-example1-8.png share/doc/HTML/fr/kchart/kchart-example1-9.png share/doc/HTML/fr/kchart/kchart-kspread-bar.png share/doc/HTML/fr/kchart/kchart-kspread.png share/doc/HTML/fr/kchart/kchart-startupdialog.png share/doc/HTML/fr/kchart/kchart-wizard1.png share/doc/HTML/fr/kchart/kchart-wizard2.png share/doc/HTML/fr/kchart/kchart-wizard3.png share/doc/HTML/fr/kchart/kchart-wizard4.png share/doc/HTML/fr/kchart/shortcut.png share/doc/HTML/fr/kchart/toolbars.png -share/doc/HTML/fr/kformula/ambiguous-string.png -share/doc/HTML/fr/kformula/common -share/doc/HTML/fr/kformula/file-toolbar.png -share/doc/HTML/fr/kformula/file-toolbar2.png -share/doc/HTML/fr/kformula/green1.png -share/doc/HTML/fr/kformula/green2.png -share/doc/HTML/fr/kformula/index.cache.bz2 -share/doc/HTML/fr/kformula/index.docbook -share/doc/HTML/fr/kformula/kfontinst1.png -share/doc/HTML/fr/kformula/kfontinst2.png -share/doc/HTML/fr/kformula/kfontinst3.png -share/doc/HTML/fr/kformula/kfontinst4.png -share/doc/HTML/fr/kformula/kfontinst5.png -share/doc/HTML/fr/kformula/rk-edit0.png -share/doc/HTML/fr/kformula/rk-edit1.png -share/doc/HTML/fr/kformula/rk-edit2.png -share/doc/HTML/fr/kformula/scilab-edit.png -share/doc/HTML/fr/kformula/scilab.png -share/doc/HTML/fr/kformula/shortcut0.png -share/doc/HTML/fr/kformula/shortcut1.png -share/doc/HTML/fr/kformula/toolbars.png -share/doc/HTML/fr/koffice/common -share/doc/HTML/fr/koffice/index.cache.bz2 -share/doc/HTML/fr/koffice/index.docbook -share/doc/HTML/fr/kspread/advanced.docbook -share/doc/HTML/fr/kspread/basics.docbook -share/doc/HTML/fr/kspread/cellformat0.png -share/doc/HTML/fr/kspread/cellformat1.png -share/doc/HTML/fr/kspread/cellformat2.png -share/doc/HTML/fr/kspread/cellformat3.png -share/doc/HTML/fr/kspread/cellformat4.png -share/doc/HTML/fr/kspread/cellformat5.png -share/doc/HTML/fr/kspread/chart1.png -share/doc/HTML/fr/kspread/commands.docbook -share/doc/HTML/fr/kspread/common -share/doc/HTML/fr/kspread/config.docbook -share/doc/HTML/fr/kspread/configdialog.docbook -share/doc/HTML/fr/kspread/copy1.png -share/doc/HTML/fr/kspread/faq.docbook -share/doc/HTML/fr/kspread/format.docbook -share/doc/HTML/fr/kspread/importexport.docbook -share/doc/HTML/fr/kspread/index.cache.bz2 -share/doc/HTML/fr/kspread/index.docbook -share/doc/HTML/fr/kspread/shortcut1.png -share/doc/HTML/fr/kspread/shortcut2.png -share/doc/HTML/fr/kspread/shortcut3.png -share/doc/HTML/fr/kspread/sort1.png -share/doc/HTML/fr/kspread/starting1.png +share/doc/HTML/fr/kivio/common +share/doc/HTML/fr/kivio/credits.docbook +share/doc/HTML/fr/kivio/index.cache.bz2 +share/doc/HTML/fr/kivio/index.docbook +share/doc/HTML/fr/kivio/introduction.docbook +share/doc/HTML/fr/kivio/usage.docbook +share/doc/HTML/fr/kivio/working.docbook share/doc/HTML/fr/thesaurus/common share/doc/HTML/fr/thesaurus/index.cache.bz2 share/doc/HTML/fr/thesaurus/index.docbook share/locale/fr/LC_MESSAGES/ArtisticTextShape.mo share/locale/fr/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/fr/LC_MESSAGES/BarcodePlugin.mo share/locale/fr/LC_MESSAGES/CalendarTool.mo share/locale/fr/LC_MESSAGES/ChangecasePlugin.mo +share/locale/fr/LC_MESSAGES/ChartPlugin.mo share/locale/fr/LC_MESSAGES/ChartShape.mo +share/locale/fr/LC_MESSAGES/CommentShape.mo share/locale/fr/LC_MESSAGES/DivineProportion.mo share/locale/fr/LC_MESSAGES/FormulaShape.mo share/locale/fr/LC_MESSAGES/KarbonTools.mo share/locale/fr/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/fr/LC_MESSAGES/MusicShape.mo share/locale/fr/LC_MESSAGES/ParagraphTool.mo share/locale/fr/LC_MESSAGES/PathShapes.mo share/locale/fr/LC_MESSAGES/PictureShape.mo +share/locale/fr/LC_MESSAGES/PluginShape.mo +share/locale/fr/LC_MESSAGES/ShapePlugin.mo share/locale/fr/LC_MESSAGES/SpellCheckPlugin.mo share/locale/fr/LC_MESSAGES/TableShape.mo share/locale/fr/LC_MESSAGES/TextShape.mo share/locale/fr/LC_MESSAGES/VariablesPlugin.mo share/locale/fr/LC_MESSAGES/VideoShape.mo share/locale/fr/LC_MESSAGES/desktop_koffice.mo share/locale/fr/LC_MESSAGES/karbon.mo share/locale/fr/LC_MESSAGES/kchart.mo share/locale/fr/LC_MESSAGES/kexi.mo share/locale/fr/LC_MESSAGES/kformula.mo share/locale/fr/LC_MESSAGES/kocolorspaces.mo share/locale/fr/LC_MESSAGES/koconverter.mo share/locale/fr/LC_MESSAGES/koffice-defaulttools.mo share/locale/fr/LC_MESSAGES/koffice-dockers.mo share/locale/fr/LC_MESSAGES/koffice-simpletextedit.mo share/locale/fr/LC_MESSAGES/koffice.mo share/locale/fr/LC_MESSAGES/kofficefilters.mo share/locale/fr/LC_MESSAGES/koproperty.mo share/locale/fr/LC_MESSAGES/kounavail.mo share/locale/fr/LC_MESSAGES/kplato.mo share/locale/fr/LC_MESSAGES/kplatolibs.mo +share/locale/fr/LC_MESSAGES/kplatorcpsplugin.mo share/locale/fr/LC_MESSAGES/kplatowork.mo share/locale/fr/LC_MESSAGES/kpresenter.mo share/locale/fr/LC_MESSAGES/krita.mo share/locale/fr/LC_MESSAGES/krossmodulekplato.mo share/locale/fr/LC_MESSAGES/krossmodulekspread.mo share/locale/fr/LC_MESSAGES/krossmodulekword.mo share/locale/fr/LC_MESSAGES/kscan_plugin.mo share/locale/fr/LC_MESSAGES/kspread.mo share/locale/fr/LC_MESSAGES/kspreadsolver.mo share/locale/fr/LC_MESSAGES/kthesaurus.mo share/locale/fr/LC_MESSAGES/kword.mo share/locale/fr/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/fr/thesaurus -@dirrm share/doc/HTML/fr/kspread -@dirrm share/doc/HTML/fr/koffice -@dirrm share/doc/HTML/fr/kformula +@dirrm share/doc/HTML/fr/kivio @dirrm share/doc/HTML/fr/kchart @dirrm share/doc/HTML/fr/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/french/koffice-kde4-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/german/calligra-l10n/distinfo =================================================================== --- head/german/calligra-l10n/distinfo (revision 271655) +++ head/german/calligra-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-de-2.2.2.tar.bz2) = 161a92273355bdee8cde14853a032f2ade9b5501c37754b69e0148aa64decfb0 -SIZE (KDE/koffice-l10n/koffice-l10n-de-2.2.2.tar.bz2) = 1282437 +SHA256 (KDE/koffice-l10n/koffice-l10n-de-2.3.1.tar.bz2) = 5a424b1d61075804a04285ef6f7ae7f0d73ee1ad593fbe888eb93224f08effa2 +SIZE (KDE/koffice-l10n/koffice-l10n-de-2.3.1.tar.bz2) = 1309419 Property changes on: head/german/calligra-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/german/calligra-l10n/pkg-plist =================================================================== --- head/german/calligra-l10n/pkg-plist (revision 271655) +++ head/german/calligra-l10n/pkg-plist (revision 271656) @@ -1,153 +1,162 @@ -share/apps/koffice/autocorrect/de.xml share/doc/HTML/de/karbon/common share/doc/HTML/de/karbon/index.cache.bz2 share/doc/HTML/de/karbon/index.docbook share/doc/HTML/de/kchart/common share/doc/HTML/de/kchart/index.cache.bz2 share/doc/HTML/de/kchart/index.docbook share/doc/HTML/de/kchart/kchart-config1.png share/doc/HTML/de/kchart/kchart-config2.png share/doc/HTML/de/kchart/kchart-config3.png share/doc/HTML/de/kchart/kchart-config4.png share/doc/HTML/de/kchart/kchart-config5.png share/doc/HTML/de/kchart/kchart-config6.png share/doc/HTML/de/kchart/kchart-config7.png share/doc/HTML/de/kchart/kchart-config8.png share/doc/HTML/de/kchart/kchart-dataeditor.png share/doc/HTML/de/kchart/kchart-default.png share/doc/HTML/de/kchart/kchart-example1-1.png share/doc/HTML/de/kchart/kchart-example1-2.png share/doc/HTML/de/kchart/kchart-example1-3.png share/doc/HTML/de/kchart/kchart-example1-4.png share/doc/HTML/de/kchart/kchart-example1-5.png share/doc/HTML/de/kchart/kchart-example1-6.png share/doc/HTML/de/kchart/kchart-example1-7.png share/doc/HTML/de/kchart/kchart-example1-8.png share/doc/HTML/de/kchart/kchart-example1-9.png share/doc/HTML/de/kchart/kchart-startupdialog.png share/doc/HTML/de/kchart/kchart-wizard0.png share/doc/HTML/de/kchart/kchart-wizard1.png share/doc/HTML/de/kchart/kchart-wizard2.png share/doc/HTML/de/kchart/kchart-wizard3.png share/doc/HTML/de/kchart/kchart-wizard4.png share/doc/HTML/de/kchart/shortcut.png share/doc/HTML/de/kchart/toolbars.png share/doc/HTML/de/kexi/basics.docbook share/doc/HTML/de/kexi/building.docbook share/doc/HTML/de/kexi/common share/doc/HTML/de/kexi/comparing.docbook share/doc/HTML/de/kexi/configuration.docbook share/doc/HTML/de/kexi/credits.docbook share/doc/HTML/de/kexi/database.docbook share/doc/HTML/de/kexi/designingforms.docbook share/doc/HTML/de/kexi/enteringdataintotables.docbook share/doc/HTML/de/kexi/enteringdatausingforms.docbook share/doc/HTML/de/kexi/index.cache.bz2 share/doc/HTML/de/kexi/index.docbook share/doc/HTML/de/kexi/intro.docbook share/doc/HTML/de/kexi/menus.docbook share/doc/HTML/de/kexi/querydesigning.docbook share/doc/HTML/de/kformula/ambiguous-string.png share/doc/HTML/de/kformula/common share/doc/HTML/de/kformula/green1.png share/doc/HTML/de/kformula/green2.png share/doc/HTML/de/kformula/index.cache.bz2 share/doc/HTML/de/kformula/index.docbook share/doc/HTML/de/kformula/rk-edit0.png share/doc/HTML/de/kformula/rk-edit1.png share/doc/HTML/de/kformula/rk-edit2.png share/doc/HTML/de/kformula/scilab-edit.png share/doc/HTML/de/kformula/shortcut0.png share/doc/HTML/de/kformula/shortcut1.png share/doc/HTML/de/kformula/toolbars.png +share/doc/HTML/de/kivio/common +share/doc/HTML/de/kivio/credits.docbook +share/doc/HTML/de/kivio/index.cache.bz2 +share/doc/HTML/de/kivio/index.docbook +share/doc/HTML/de/kivio/introduction.docbook +share/doc/HTML/de/kivio/usage.docbook +share/doc/HTML/de/kivio/working.docbook share/doc/HTML/de/koffice/common share/doc/HTML/de/koffice/index.cache.bz2 share/doc/HTML/de/koffice/index.docbook share/doc/HTML/de/kpresenter/a11y.docbook share/doc/HTML/de/kpresenter/common share/doc/HTML/de/kpresenter/faq.docbook share/doc/HTML/de/kpresenter/great-presentations.docbook share/doc/HTML/de/kpresenter/guides.docbook share/doc/HTML/de/kpresenter/index.cache.bz2 share/doc/HTML/de/kpresenter/index.docbook share/doc/HTML/de/kpresenter/menus.docbook share/doc/HTML/de/kpresenter/options.docbook share/doc/HTML/de/kpresenter/screen.docbook share/doc/HTML/de/kpresenter/tutorial.docbook share/doc/HTML/de/kspread/a11y.docbook share/doc/HTML/de/kspread/advanced.docbook share/doc/HTML/de/kspread/basics.docbook share/doc/HTML/de/kspread/commands.docbook share/doc/HTML/de/kspread/common share/doc/HTML/de/kspread/config.docbook share/doc/HTML/de/kspread/configdialog.docbook share/doc/HTML/de/kspread/copy1.png share/doc/HTML/de/kspread/faq.docbook share/doc/HTML/de/kspread/format.docbook share/doc/HTML/de/kspread/importexport.docbook share/doc/HTML/de/kspread/index.cache.bz2 share/doc/HTML/de/kspread/index.docbook share/doc/HTML/de/kspread/shortcut1.png share/doc/HTML/de/kspread/shortcut2.png share/doc/HTML/de/kspread/starting1.png share/doc/HTML/de/thesaurus/common share/doc/HTML/de/thesaurus/index.cache.bz2 share/doc/HTML/de/thesaurus/index.docbook share/locale/de/LC_MESSAGES/ArtisticTextShape.mo share/locale/de/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/de/LC_MESSAGES/BarcodePlugin.mo share/locale/de/LC_MESSAGES/CalendarTool.mo share/locale/de/LC_MESSAGES/ChangecasePlugin.mo +share/locale/de/LC_MESSAGES/ChartPlugin.mo share/locale/de/LC_MESSAGES/ChartShape.mo +share/locale/de/LC_MESSAGES/CommentShape.mo share/locale/de/LC_MESSAGES/DivineProportion.mo share/locale/de/LC_MESSAGES/FormulaShape.mo -share/locale/de/LC_MESSAGES/FreOffice.mo share/locale/de/LC_MESSAGES/KarbonTools.mo share/locale/de/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/de/LC_MESSAGES/MusicShape.mo share/locale/de/LC_MESSAGES/ParagraphTool.mo share/locale/de/LC_MESSAGES/PathShapes.mo share/locale/de/LC_MESSAGES/PictureShape.mo +share/locale/de/LC_MESSAGES/PluginShape.mo +share/locale/de/LC_MESSAGES/ShapePlugin.mo share/locale/de/LC_MESSAGES/SpellCheckPlugin.mo share/locale/de/LC_MESSAGES/TableShape.mo share/locale/de/LC_MESSAGES/TextShape.mo share/locale/de/LC_MESSAGES/VariablesPlugin.mo share/locale/de/LC_MESSAGES/VideoShape.mo share/locale/de/LC_MESSAGES/desktop_koffice.mo share/locale/de/LC_MESSAGES/karbon.mo share/locale/de/LC_MESSAGES/kchart.mo share/locale/de/LC_MESSAGES/kexi.mo share/locale/de/LC_MESSAGES/kformula.mo share/locale/de/LC_MESSAGES/kocolorspaces.mo share/locale/de/LC_MESSAGES/koconverter.mo share/locale/de/LC_MESSAGES/koffice-defaulttools.mo share/locale/de/LC_MESSAGES/koffice-dockers.mo share/locale/de/LC_MESSAGES/koffice-simpletextedit.mo share/locale/de/LC_MESSAGES/koffice.mo share/locale/de/LC_MESSAGES/kofficefilters.mo share/locale/de/LC_MESSAGES/koproperty.mo share/locale/de/LC_MESSAGES/kounavail.mo share/locale/de/LC_MESSAGES/kplato.mo share/locale/de/LC_MESSAGES/kplatolibs.mo share/locale/de/LC_MESSAGES/kplatorcpsplugin.mo share/locale/de/LC_MESSAGES/kplatowork.mo share/locale/de/LC_MESSAGES/kpresenter.mo share/locale/de/LC_MESSAGES/krita.mo share/locale/de/LC_MESSAGES/krossmodulekplato.mo share/locale/de/LC_MESSAGES/krossmodulekspread.mo share/locale/de/LC_MESSAGES/krossmodulekword.mo share/locale/de/LC_MESSAGES/kscan_plugin.mo share/locale/de/LC_MESSAGES/kspread.mo share/locale/de/LC_MESSAGES/kspreadsolver.mo share/locale/de/LC_MESSAGES/kthesaurus.mo share/locale/de/LC_MESSAGES/kword.mo share/locale/de/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/de/thesaurus @dirrm share/doc/HTML/de/kspread @dirrm share/doc/HTML/de/kpresenter @dirrm share/doc/HTML/de/koffice +@dirrm share/doc/HTML/de/kivio @dirrm share/doc/HTML/de/kformula @dirrm share/doc/HTML/de/kexi @dirrm share/doc/HTML/de/kchart @dirrm share/doc/HTML/de/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/german/calligra-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property Index: head/german/koffice-kde4-l10n/distinfo =================================================================== --- head/german/koffice-kde4-l10n/distinfo (revision 271655) +++ head/german/koffice-kde4-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-de-2.2.2.tar.bz2) = 161a92273355bdee8cde14853a032f2ade9b5501c37754b69e0148aa64decfb0 -SIZE (KDE/koffice-l10n/koffice-l10n-de-2.2.2.tar.bz2) = 1282437 +SHA256 (KDE/koffice-l10n/koffice-l10n-de-2.3.1.tar.bz2) = 5a424b1d61075804a04285ef6f7ae7f0d73ee1ad593fbe888eb93224f08effa2 +SIZE (KDE/koffice-l10n/koffice-l10n-de-2.3.1.tar.bz2) = 1309419 Property changes on: head/german/koffice-kde4-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/german/koffice-kde4-l10n/pkg-plist =================================================================== --- head/german/koffice-kde4-l10n/pkg-plist (revision 271655) +++ head/german/koffice-kde4-l10n/pkg-plist (revision 271656) @@ -1,153 +1,162 @@ -share/apps/koffice/autocorrect/de.xml share/doc/HTML/de/karbon/common share/doc/HTML/de/karbon/index.cache.bz2 share/doc/HTML/de/karbon/index.docbook share/doc/HTML/de/kchart/common share/doc/HTML/de/kchart/index.cache.bz2 share/doc/HTML/de/kchart/index.docbook share/doc/HTML/de/kchart/kchart-config1.png share/doc/HTML/de/kchart/kchart-config2.png share/doc/HTML/de/kchart/kchart-config3.png share/doc/HTML/de/kchart/kchart-config4.png share/doc/HTML/de/kchart/kchart-config5.png share/doc/HTML/de/kchart/kchart-config6.png share/doc/HTML/de/kchart/kchart-config7.png share/doc/HTML/de/kchart/kchart-config8.png share/doc/HTML/de/kchart/kchart-dataeditor.png share/doc/HTML/de/kchart/kchart-default.png share/doc/HTML/de/kchart/kchart-example1-1.png share/doc/HTML/de/kchart/kchart-example1-2.png share/doc/HTML/de/kchart/kchart-example1-3.png share/doc/HTML/de/kchart/kchart-example1-4.png share/doc/HTML/de/kchart/kchart-example1-5.png share/doc/HTML/de/kchart/kchart-example1-6.png share/doc/HTML/de/kchart/kchart-example1-7.png share/doc/HTML/de/kchart/kchart-example1-8.png share/doc/HTML/de/kchart/kchart-example1-9.png share/doc/HTML/de/kchart/kchart-startupdialog.png share/doc/HTML/de/kchart/kchart-wizard0.png share/doc/HTML/de/kchart/kchart-wizard1.png share/doc/HTML/de/kchart/kchart-wizard2.png share/doc/HTML/de/kchart/kchart-wizard3.png share/doc/HTML/de/kchart/kchart-wizard4.png share/doc/HTML/de/kchart/shortcut.png share/doc/HTML/de/kchart/toolbars.png share/doc/HTML/de/kexi/basics.docbook share/doc/HTML/de/kexi/building.docbook share/doc/HTML/de/kexi/common share/doc/HTML/de/kexi/comparing.docbook share/doc/HTML/de/kexi/configuration.docbook share/doc/HTML/de/kexi/credits.docbook share/doc/HTML/de/kexi/database.docbook share/doc/HTML/de/kexi/designingforms.docbook share/doc/HTML/de/kexi/enteringdataintotables.docbook share/doc/HTML/de/kexi/enteringdatausingforms.docbook share/doc/HTML/de/kexi/index.cache.bz2 share/doc/HTML/de/kexi/index.docbook share/doc/HTML/de/kexi/intro.docbook share/doc/HTML/de/kexi/menus.docbook share/doc/HTML/de/kexi/querydesigning.docbook share/doc/HTML/de/kformula/ambiguous-string.png share/doc/HTML/de/kformula/common share/doc/HTML/de/kformula/green1.png share/doc/HTML/de/kformula/green2.png share/doc/HTML/de/kformula/index.cache.bz2 share/doc/HTML/de/kformula/index.docbook share/doc/HTML/de/kformula/rk-edit0.png share/doc/HTML/de/kformula/rk-edit1.png share/doc/HTML/de/kformula/rk-edit2.png share/doc/HTML/de/kformula/scilab-edit.png share/doc/HTML/de/kformula/shortcut0.png share/doc/HTML/de/kformula/shortcut1.png share/doc/HTML/de/kformula/toolbars.png +share/doc/HTML/de/kivio/common +share/doc/HTML/de/kivio/credits.docbook +share/doc/HTML/de/kivio/index.cache.bz2 +share/doc/HTML/de/kivio/index.docbook +share/doc/HTML/de/kivio/introduction.docbook +share/doc/HTML/de/kivio/usage.docbook +share/doc/HTML/de/kivio/working.docbook share/doc/HTML/de/koffice/common share/doc/HTML/de/koffice/index.cache.bz2 share/doc/HTML/de/koffice/index.docbook share/doc/HTML/de/kpresenter/a11y.docbook share/doc/HTML/de/kpresenter/common share/doc/HTML/de/kpresenter/faq.docbook share/doc/HTML/de/kpresenter/great-presentations.docbook share/doc/HTML/de/kpresenter/guides.docbook share/doc/HTML/de/kpresenter/index.cache.bz2 share/doc/HTML/de/kpresenter/index.docbook share/doc/HTML/de/kpresenter/menus.docbook share/doc/HTML/de/kpresenter/options.docbook share/doc/HTML/de/kpresenter/screen.docbook share/doc/HTML/de/kpresenter/tutorial.docbook share/doc/HTML/de/kspread/a11y.docbook share/doc/HTML/de/kspread/advanced.docbook share/doc/HTML/de/kspread/basics.docbook share/doc/HTML/de/kspread/commands.docbook share/doc/HTML/de/kspread/common share/doc/HTML/de/kspread/config.docbook share/doc/HTML/de/kspread/configdialog.docbook share/doc/HTML/de/kspread/copy1.png share/doc/HTML/de/kspread/faq.docbook share/doc/HTML/de/kspread/format.docbook share/doc/HTML/de/kspread/importexport.docbook share/doc/HTML/de/kspread/index.cache.bz2 share/doc/HTML/de/kspread/index.docbook share/doc/HTML/de/kspread/shortcut1.png share/doc/HTML/de/kspread/shortcut2.png share/doc/HTML/de/kspread/starting1.png share/doc/HTML/de/thesaurus/common share/doc/HTML/de/thesaurus/index.cache.bz2 share/doc/HTML/de/thesaurus/index.docbook share/locale/de/LC_MESSAGES/ArtisticTextShape.mo share/locale/de/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/de/LC_MESSAGES/BarcodePlugin.mo share/locale/de/LC_MESSAGES/CalendarTool.mo share/locale/de/LC_MESSAGES/ChangecasePlugin.mo +share/locale/de/LC_MESSAGES/ChartPlugin.mo share/locale/de/LC_MESSAGES/ChartShape.mo +share/locale/de/LC_MESSAGES/CommentShape.mo share/locale/de/LC_MESSAGES/DivineProportion.mo share/locale/de/LC_MESSAGES/FormulaShape.mo -share/locale/de/LC_MESSAGES/FreOffice.mo share/locale/de/LC_MESSAGES/KarbonTools.mo share/locale/de/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/de/LC_MESSAGES/MusicShape.mo share/locale/de/LC_MESSAGES/ParagraphTool.mo share/locale/de/LC_MESSAGES/PathShapes.mo share/locale/de/LC_MESSAGES/PictureShape.mo +share/locale/de/LC_MESSAGES/PluginShape.mo +share/locale/de/LC_MESSAGES/ShapePlugin.mo share/locale/de/LC_MESSAGES/SpellCheckPlugin.mo share/locale/de/LC_MESSAGES/TableShape.mo share/locale/de/LC_MESSAGES/TextShape.mo share/locale/de/LC_MESSAGES/VariablesPlugin.mo share/locale/de/LC_MESSAGES/VideoShape.mo share/locale/de/LC_MESSAGES/desktop_koffice.mo share/locale/de/LC_MESSAGES/karbon.mo share/locale/de/LC_MESSAGES/kchart.mo share/locale/de/LC_MESSAGES/kexi.mo share/locale/de/LC_MESSAGES/kformula.mo share/locale/de/LC_MESSAGES/kocolorspaces.mo share/locale/de/LC_MESSAGES/koconverter.mo share/locale/de/LC_MESSAGES/koffice-defaulttools.mo share/locale/de/LC_MESSAGES/koffice-dockers.mo share/locale/de/LC_MESSAGES/koffice-simpletextedit.mo share/locale/de/LC_MESSAGES/koffice.mo share/locale/de/LC_MESSAGES/kofficefilters.mo share/locale/de/LC_MESSAGES/koproperty.mo share/locale/de/LC_MESSAGES/kounavail.mo share/locale/de/LC_MESSAGES/kplato.mo share/locale/de/LC_MESSAGES/kplatolibs.mo share/locale/de/LC_MESSAGES/kplatorcpsplugin.mo share/locale/de/LC_MESSAGES/kplatowork.mo share/locale/de/LC_MESSAGES/kpresenter.mo share/locale/de/LC_MESSAGES/krita.mo share/locale/de/LC_MESSAGES/krossmodulekplato.mo share/locale/de/LC_MESSAGES/krossmodulekspread.mo share/locale/de/LC_MESSAGES/krossmodulekword.mo share/locale/de/LC_MESSAGES/kscan_plugin.mo share/locale/de/LC_MESSAGES/kspread.mo share/locale/de/LC_MESSAGES/kspreadsolver.mo share/locale/de/LC_MESSAGES/kthesaurus.mo share/locale/de/LC_MESSAGES/kword.mo share/locale/de/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/de/thesaurus @dirrm share/doc/HTML/de/kspread @dirrm share/doc/HTML/de/kpresenter @dirrm share/doc/HTML/de/koffice +@dirrm share/doc/HTML/de/kivio @dirrm share/doc/HTML/de/kformula @dirrm share/doc/HTML/de/kexi @dirrm share/doc/HTML/de/kchart @dirrm share/doc/HTML/de/karbon -@dirrmtry share/apps/koffice/autocorrect -@dirrmtry share/apps/koffice Property changes on: head/german/koffice-kde4-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property Index: head/hungarian/calligra-l10n/Makefile =================================================================== --- head/hungarian/calligra-l10n/Makefile (nonexistent) +++ head/hungarian/calligra-l10n/Makefile (revision 271656) @@ -0,0 +1,18 @@ +# New ports collection makefile for: koffice-kde4-l10n-hu +# Date created: 2011-01-05 +# Whom: Max Brazhnikov +# +# $FreeBSD$ +# + +PORTNAME= koffice-l10n +PORTVERSION= ${KOFFICE2_VERSION} +CATEGORIES?= editors kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Hungarian messages and documentation for KOffice2 + +KOFFICE2_L10N= hu + +.include "${.CURDIR}/../../editors/koffice-kde4-l10n/files/bsd.l10n.mk" +.include Property changes on: head/hungarian/calligra-l10n/Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/hungarian/calligra-l10n/distinfo =================================================================== --- head/hungarian/calligra-l10n/distinfo (nonexistent) +++ head/hungarian/calligra-l10n/distinfo (revision 271656) @@ -0,0 +1,2 @@ +SHA256 (KDE/koffice-l10n/koffice-l10n-hu-2.3.1.tar.bz2) = 7c9d94aa30951b87c49f0c58002eba5819fe6102e34c043009e94eea5b136504 +SIZE (KDE/koffice-l10n/koffice-l10n-hu-2.3.1.tar.bz2) = 383920 Property changes on: head/hungarian/calligra-l10n/distinfo ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/hungarian/calligra-l10n/pkg-descr =================================================================== --- head/hungarian/calligra-l10n/pkg-descr (nonexistent) +++ head/hungarian/calligra-l10n/pkg-descr (revision 271656) @@ -0,0 +1,3 @@ +Localized messages and documentation for koffice. + +WWW: http://koffice.kde.org/ Property changes on: head/hungarian/calligra-l10n/pkg-descr ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/hungarian/calligra-l10n/pkg-plist =================================================================== --- head/hungarian/calligra-l10n/pkg-plist (nonexistent) +++ head/hungarian/calligra-l10n/pkg-plist (revision 271656) @@ -0,0 +1,50 @@ +share/locale/hu/LC_MESSAGES/ArtisticTextShape.mo +share/locale/hu/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/hu/LC_MESSAGES/BarcodePlugin.mo +share/locale/hu/LC_MESSAGES/CalendarTool.mo +share/locale/hu/LC_MESSAGES/ChartPlugin.mo +share/locale/hu/LC_MESSAGES/ChartShape.mo +share/locale/hu/LC_MESSAGES/CommentShape.mo +share/locale/hu/LC_MESSAGES/DivineProportion.mo +share/locale/hu/LC_MESSAGES/FormulaShape.mo +share/locale/hu/LC_MESSAGES/KarbonTools.mo +share/locale/hu/LC_MESSAGES/KexiRelationDesignShapePlugin.mo +share/locale/hu/LC_MESSAGES/MusicShape.mo +share/locale/hu/LC_MESSAGES/ParagraphTool.mo +share/locale/hu/LC_MESSAGES/PathShapes.mo +share/locale/hu/LC_MESSAGES/PictureShape.mo +share/locale/hu/LC_MESSAGES/PluginShape.mo +share/locale/hu/LC_MESSAGES/ShapePlugin.mo +share/locale/hu/LC_MESSAGES/SpellCheckPlugin.mo +share/locale/hu/LC_MESSAGES/TableShape.mo +share/locale/hu/LC_MESSAGES/TextShape.mo +share/locale/hu/LC_MESSAGES/VariablesPlugin.mo +share/locale/hu/LC_MESSAGES/VideoShape.mo +share/locale/hu/LC_MESSAGES/desktop_koffice.mo +share/locale/hu/LC_MESSAGES/karbon.mo +share/locale/hu/LC_MESSAGES/kchart.mo +share/locale/hu/LC_MESSAGES/kexi.mo +share/locale/hu/LC_MESSAGES/kformula.mo +share/locale/hu/LC_MESSAGES/kocolorspaces.mo +share/locale/hu/LC_MESSAGES/koconverter.mo +share/locale/hu/LC_MESSAGES/koffice-defaulttools.mo +share/locale/hu/LC_MESSAGES/koffice-dockers.mo +share/locale/hu/LC_MESSAGES/koffice-simpletextedit.mo +share/locale/hu/LC_MESSAGES/koffice.mo +share/locale/hu/LC_MESSAGES/kofficefilters.mo +share/locale/hu/LC_MESSAGES/koproperty.mo +share/locale/hu/LC_MESSAGES/kounavail.mo +share/locale/hu/LC_MESSAGES/kplato.mo +share/locale/hu/LC_MESSAGES/kplatolibs.mo +share/locale/hu/LC_MESSAGES/kplatowork.mo +share/locale/hu/LC_MESSAGES/kpresenter.mo +share/locale/hu/LC_MESSAGES/krita.mo +share/locale/hu/LC_MESSAGES/krossmodulekplato.mo +share/locale/hu/LC_MESSAGES/krossmodulekspread.mo +share/locale/hu/LC_MESSAGES/krossmodulekword.mo +share/locale/hu/LC_MESSAGES/kscan_plugin.mo +share/locale/hu/LC_MESSAGES/kspread.mo +share/locale/hu/LC_MESSAGES/kspreadsolver.mo +share/locale/hu/LC_MESSAGES/kthesaurus.mo +share/locale/hu/LC_MESSAGES/kword.mo +share/locale/hu/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/hungarian/calligra-l10n/pkg-plist ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/hungarian/koffice-kde4-l10n/Makefile =================================================================== --- head/hungarian/koffice-kde4-l10n/Makefile (nonexistent) +++ head/hungarian/koffice-kde4-l10n/Makefile (revision 271656) @@ -0,0 +1,18 @@ +# New ports collection makefile for: koffice-kde4-l10n-hu +# Date created: 2011-01-05 +# Whom: Max Brazhnikov +# +# $FreeBSD$ +# + +PORTNAME= koffice-l10n +PORTVERSION= ${KOFFICE2_VERSION} +CATEGORIES?= editors kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Hungarian messages and documentation for KOffice2 + +KOFFICE2_L10N= hu + +.include "${.CURDIR}/../../editors/koffice-kde4-l10n/files/bsd.l10n.mk" +.include Property changes on: head/hungarian/koffice-kde4-l10n/Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/hungarian/koffice-kde4-l10n/distinfo =================================================================== --- head/hungarian/koffice-kde4-l10n/distinfo (nonexistent) +++ head/hungarian/koffice-kde4-l10n/distinfo (revision 271656) @@ -0,0 +1,2 @@ +SHA256 (KDE/koffice-l10n/koffice-l10n-hu-2.3.1.tar.bz2) = 7c9d94aa30951b87c49f0c58002eba5819fe6102e34c043009e94eea5b136504 +SIZE (KDE/koffice-l10n/koffice-l10n-hu-2.3.1.tar.bz2) = 383920 Property changes on: head/hungarian/koffice-kde4-l10n/distinfo ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/hungarian/koffice-kde4-l10n/pkg-descr =================================================================== --- head/hungarian/koffice-kde4-l10n/pkg-descr (nonexistent) +++ head/hungarian/koffice-kde4-l10n/pkg-descr (revision 271656) @@ -0,0 +1,3 @@ +Localized messages and documentation for koffice. + +WWW: http://koffice.kde.org/ Property changes on: head/hungarian/koffice-kde4-l10n/pkg-descr ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/hungarian/koffice-kde4-l10n/pkg-plist =================================================================== --- head/hungarian/koffice-kde4-l10n/pkg-plist (nonexistent) +++ head/hungarian/koffice-kde4-l10n/pkg-plist (revision 271656) @@ -0,0 +1,50 @@ +share/locale/hu/LC_MESSAGES/ArtisticTextShape.mo +share/locale/hu/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/hu/LC_MESSAGES/BarcodePlugin.mo +share/locale/hu/LC_MESSAGES/CalendarTool.mo +share/locale/hu/LC_MESSAGES/ChartPlugin.mo +share/locale/hu/LC_MESSAGES/ChartShape.mo +share/locale/hu/LC_MESSAGES/CommentShape.mo +share/locale/hu/LC_MESSAGES/DivineProportion.mo +share/locale/hu/LC_MESSAGES/FormulaShape.mo +share/locale/hu/LC_MESSAGES/KarbonTools.mo +share/locale/hu/LC_MESSAGES/KexiRelationDesignShapePlugin.mo +share/locale/hu/LC_MESSAGES/MusicShape.mo +share/locale/hu/LC_MESSAGES/ParagraphTool.mo +share/locale/hu/LC_MESSAGES/PathShapes.mo +share/locale/hu/LC_MESSAGES/PictureShape.mo +share/locale/hu/LC_MESSAGES/PluginShape.mo +share/locale/hu/LC_MESSAGES/ShapePlugin.mo +share/locale/hu/LC_MESSAGES/SpellCheckPlugin.mo +share/locale/hu/LC_MESSAGES/TableShape.mo +share/locale/hu/LC_MESSAGES/TextShape.mo +share/locale/hu/LC_MESSAGES/VariablesPlugin.mo +share/locale/hu/LC_MESSAGES/VideoShape.mo +share/locale/hu/LC_MESSAGES/desktop_koffice.mo +share/locale/hu/LC_MESSAGES/karbon.mo +share/locale/hu/LC_MESSAGES/kchart.mo +share/locale/hu/LC_MESSAGES/kexi.mo +share/locale/hu/LC_MESSAGES/kformula.mo +share/locale/hu/LC_MESSAGES/kocolorspaces.mo +share/locale/hu/LC_MESSAGES/koconverter.mo +share/locale/hu/LC_MESSAGES/koffice-defaulttools.mo +share/locale/hu/LC_MESSAGES/koffice-dockers.mo +share/locale/hu/LC_MESSAGES/koffice-simpletextedit.mo +share/locale/hu/LC_MESSAGES/koffice.mo +share/locale/hu/LC_MESSAGES/kofficefilters.mo +share/locale/hu/LC_MESSAGES/koproperty.mo +share/locale/hu/LC_MESSAGES/kounavail.mo +share/locale/hu/LC_MESSAGES/kplato.mo +share/locale/hu/LC_MESSAGES/kplatolibs.mo +share/locale/hu/LC_MESSAGES/kplatowork.mo +share/locale/hu/LC_MESSAGES/kpresenter.mo +share/locale/hu/LC_MESSAGES/krita.mo +share/locale/hu/LC_MESSAGES/krossmodulekplato.mo +share/locale/hu/LC_MESSAGES/krossmodulekspread.mo +share/locale/hu/LC_MESSAGES/krossmodulekword.mo +share/locale/hu/LC_MESSAGES/kscan_plugin.mo +share/locale/hu/LC_MESSAGES/kspread.mo +share/locale/hu/LC_MESSAGES/kspreadsolver.mo +share/locale/hu/LC_MESSAGES/kthesaurus.mo +share/locale/hu/LC_MESSAGES/kword.mo +share/locale/hu/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/hungarian/koffice-kde4-l10n/pkg-plist ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/japanese/koffice-kde4-l10n/distinfo =================================================================== --- head/japanese/koffice-kde4-l10n/distinfo (revision 271655) +++ head/japanese/koffice-kde4-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-ja-2.2.2.tar.bz2) = d4699cf315f6d68dd5a8235a5dcb4819a1ff90c0bc084923aecc8eda2d9ed972 -SIZE (KDE/koffice-l10n/koffice-l10n-ja-2.2.2.tar.bz2) = 292978 +SHA256 (KDE/koffice-l10n/koffice-l10n-ja-2.3.1.tar.bz2) = 8a3cf11dbf8a671cee212bae1a0aa4703e42ae4195160dc8b1e03ffaa880771f +SIZE (KDE/koffice-l10n/koffice-l10n-ja-2.3.1.tar.bz2) = 301209 Property changes on: head/japanese/koffice-kde4-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.20 \ No newline at end of property +1.21 \ No newline at end of property Index: head/japanese/koffice-kde4-l10n/pkg-plist =================================================================== --- head/japanese/koffice-kde4-l10n/pkg-plist (revision 271655) +++ head/japanese/koffice-kde4-l10n/pkg-plist (revision 271656) @@ -1,48 +1,52 @@ share/locale/ja/LC_MESSAGES/ArtisticTextShape.mo share/locale/ja/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/ja/LC_MESSAGES/BarcodePlugin.mo share/locale/ja/LC_MESSAGES/CalendarTool.mo share/locale/ja/LC_MESSAGES/ChangecasePlugin.mo +share/locale/ja/LC_MESSAGES/ChartPlugin.mo share/locale/ja/LC_MESSAGES/ChartShape.mo +share/locale/ja/LC_MESSAGES/CommentShape.mo share/locale/ja/LC_MESSAGES/DivineProportion.mo share/locale/ja/LC_MESSAGES/FormulaShape.mo -share/locale/ja/LC_MESSAGES/FreOffice.mo share/locale/ja/LC_MESSAGES/KarbonTools.mo share/locale/ja/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/ja/LC_MESSAGES/MusicShape.mo share/locale/ja/LC_MESSAGES/ParagraphTool.mo share/locale/ja/LC_MESSAGES/PathShapes.mo share/locale/ja/LC_MESSAGES/PictureShape.mo +share/locale/ja/LC_MESSAGES/PluginShape.mo +share/locale/ja/LC_MESSAGES/ShapePlugin.mo share/locale/ja/LC_MESSAGES/SpellCheckPlugin.mo share/locale/ja/LC_MESSAGES/TableShape.mo share/locale/ja/LC_MESSAGES/TextShape.mo share/locale/ja/LC_MESSAGES/VariablesPlugin.mo share/locale/ja/LC_MESSAGES/VideoShape.mo share/locale/ja/LC_MESSAGES/desktop_koffice.mo share/locale/ja/LC_MESSAGES/karbon.mo share/locale/ja/LC_MESSAGES/kchart.mo share/locale/ja/LC_MESSAGES/kexi.mo share/locale/ja/LC_MESSAGES/kformula.mo share/locale/ja/LC_MESSAGES/kocolorspaces.mo share/locale/ja/LC_MESSAGES/koconverter.mo share/locale/ja/LC_MESSAGES/koffice-defaulttools.mo share/locale/ja/LC_MESSAGES/koffice-dockers.mo share/locale/ja/LC_MESSAGES/koffice-simpletextedit.mo share/locale/ja/LC_MESSAGES/koffice.mo share/locale/ja/LC_MESSAGES/kofficefilters.mo share/locale/ja/LC_MESSAGES/koproperty.mo share/locale/ja/LC_MESSAGES/kounavail.mo share/locale/ja/LC_MESSAGES/kplato.mo share/locale/ja/LC_MESSAGES/kplatolibs.mo share/locale/ja/LC_MESSAGES/kplatorcpsplugin.mo share/locale/ja/LC_MESSAGES/kplatowork.mo share/locale/ja/LC_MESSAGES/kpresenter.mo share/locale/ja/LC_MESSAGES/krita.mo share/locale/ja/LC_MESSAGES/krossmodulekplato.mo share/locale/ja/LC_MESSAGES/krossmodulekspread.mo share/locale/ja/LC_MESSAGES/krossmodulekword.mo share/locale/ja/LC_MESSAGES/kscan_plugin.mo share/locale/ja/LC_MESSAGES/kspread.mo share/locale/ja/LC_MESSAGES/kspreadsolver.mo share/locale/ja/LC_MESSAGES/kthesaurus.mo share/locale/ja/LC_MESSAGES/kword.mo share/locale/ja/LC_MESSAGES/thesaurus_tool.mo Property changes on: head/japanese/koffice-kde4-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/polish/calligra-l10n/Makefile =================================================================== --- head/polish/calligra-l10n/Makefile (revision 271655) +++ head/polish/calligra-l10n/Makefile (revision 271656) @@ -1,18 +1,18 @@ # New ports collection makefile for: koffice-kde4-l10n-pl # Date created: 28 November 2009 # Whom: Dima Panov # # $FreeBSD$ # PORTNAME= koffice-l10n -PORTVERSION= ${KOFFICE2_VERSION} +PORTVERSION= 2.2.2 CATEGORIES?= polish editors kde MAINTAINER= kde@FreeBSD.org COMMENT= Polish messages and documentation for KOffice2 KOFFICE2_L10N= pl .include "${.CURDIR}/../../editors/koffice-kde4-l10n/files/bsd.l10n.mk" .include Property changes on: head/polish/calligra-l10n/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.34 \ No newline at end of property +1.35 \ No newline at end of property Index: head/polish/koffice-kde4-l10n/Makefile =================================================================== --- head/polish/koffice-kde4-l10n/Makefile (revision 271655) +++ head/polish/koffice-kde4-l10n/Makefile (revision 271656) @@ -1,18 +1,18 @@ # New ports collection makefile for: koffice-kde4-l10n-pl # Date created: 28 November 2009 # Whom: Dima Panov # # $FreeBSD$ # PORTNAME= koffice-l10n -PORTVERSION= ${KOFFICE2_VERSION} +PORTVERSION= 2.2.2 CATEGORIES?= polish editors kde MAINTAINER= kde@FreeBSD.org COMMENT= Polish messages and documentation for KOffice2 KOFFICE2_L10N= pl .include "${.CURDIR}/../../editors/koffice-kde4-l10n/files/bsd.l10n.mk" .include Property changes on: head/polish/koffice-kde4-l10n/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.34 \ No newline at end of property +1.35 \ No newline at end of property Index: head/portuguese/calligra-l10n/distinfo =================================================================== --- head/portuguese/calligra-l10n/distinfo (revision 271655) +++ head/portuguese/calligra-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-pt-2.2.2.tar.bz2) = 86154c175b38c56d9ff759e8395307232b8a69191d790002cb942d9a49f7972a -SIZE (KDE/koffice-l10n/koffice-l10n-pt-2.2.2.tar.bz2) = 976389 +SHA256 (KDE/koffice-l10n/koffice-l10n-pt-2.3.1.tar.bz2) = 53e72b3b9bd8880435131bcc8b63c0f14358498befc286d2d23dab7d2d2c7541 +SIZE (KDE/koffice-l10n/koffice-l10n-pt-2.3.1.tar.bz2) = 609680 Property changes on: head/portuguese/calligra-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/portuguese/calligra-l10n/pkg-plist =================================================================== --- head/portuguese/calligra-l10n/pkg-plist (revision 271655) +++ head/portuguese/calligra-l10n/pkg-plist (revision 271656) @@ -1,188 +1,121 @@ share/doc/HTML/pt/karbon/common share/doc/HTML/pt/karbon/index.cache.bz2 share/doc/HTML/pt/karbon/index.docbook share/doc/HTML/pt/kchart/common share/doc/HTML/pt/kchart/index.cache.bz2 share/doc/HTML/pt/kchart/index.docbook +share/doc/HTML/pt/kexi/basics.docbook +share/doc/HTML/pt/kexi/building.docbook +share/doc/HTML/pt/kexi/common +share/doc/HTML/pt/kexi/comparing.docbook +share/doc/HTML/pt/kexi/configuration.docbook +share/doc/HTML/pt/kexi/credits.docbook +share/doc/HTML/pt/kexi/database.docbook +share/doc/HTML/pt/kexi/designingforms.docbook +share/doc/HTML/pt/kexi/enteringdataintotables.docbook +share/doc/HTML/pt/kexi/enteringdatausingforms.docbook +share/doc/HTML/pt/kexi/index.cache.bz2 +share/doc/HTML/pt/kexi/index.docbook +share/doc/HTML/pt/kexi/intro.docbook +share/doc/HTML/pt/kexi/menus.docbook +share/doc/HTML/pt/kexi/querydesigning.docbook share/doc/HTML/pt/kformula/common share/doc/HTML/pt/kformula/index.cache.bz2 share/doc/HTML/pt/kformula/index.docbook share/doc/HTML/pt/kivio/common share/doc/HTML/pt/kivio/credits.docbook share/doc/HTML/pt/kivio/index.cache.bz2 share/doc/HTML/pt/kivio/index.docbook share/doc/HTML/pt/kivio/introduction.docbook share/doc/HTML/pt/kivio/usage.docbook share/doc/HTML/pt/kivio/working.docbook share/doc/HTML/pt/koffice/common share/doc/HTML/pt/koffice/index.cache.bz2 share/doc/HTML/pt/koffice/index.docbook -share/doc/HTML/pt/koshell/common -share/doc/HTML/pt/koshell/index.cache.bz2 -share/doc/HTML/pt/koshell/index.docbook share/doc/HTML/pt/kpresenter/a11y.docbook share/doc/HTML/pt/kpresenter/common share/doc/HTML/pt/kpresenter/faq.docbook share/doc/HTML/pt/kpresenter/great-presentations.docbook share/doc/HTML/pt/kpresenter/guides.docbook share/doc/HTML/pt/kpresenter/index.cache.bz2 share/doc/HTML/pt/kpresenter/index.docbook share/doc/HTML/pt/kpresenter/menus.docbook share/doc/HTML/pt/kpresenter/options.docbook share/doc/HTML/pt/kpresenter/screen.docbook share/doc/HTML/pt/kpresenter/tutorial.docbook -share/doc/HTML/pt/krita/commands-dialogs.docbook -share/doc/HTML/pt/krita/commands-menus.docbook -share/doc/HTML/pt/krita/commands-palettes.docbook -share/doc/HTML/pt/krita/commands-toolbars.docbook -share/doc/HTML/pt/krita/commands.docbook -share/doc/HTML/pt/krita/common -share/doc/HTML/pt/krita/credits.docbook -share/doc/HTML/pt/krita/developers-plugins.docbook -share/doc/HTML/pt/krita/developers-scripting.docbook -share/doc/HTML/pt/krita/developers.docbook -share/doc/HTML/pt/krita/faq.docbook -share/doc/HTML/pt/krita/index.cache.bz2 -share/doc/HTML/pt/krita/index.docbook -share/doc/HTML/pt/krita/installation.docbook -share/doc/HTML/pt/krita/introduction.docbook -share/doc/HTML/pt/krita/scripting.docbook -share/doc/HTML/pt/krita/settings.docbook -share/doc/HTML/pt/krita/tutorial-quick-starts.docbook -share/doc/HTML/pt/krita/tutorial-select-layer.docbook -share/doc/HTML/pt/krita/tutorial-starting.docbook -share/doc/HTML/pt/krita/tutorial-tablet.docbook -share/doc/HTML/pt/krita/tutorial.docbook -share/doc/HTML/pt/krita/using-colorspaces.docbook -share/doc/HTML/pt/krita/using-filters.docbook -share/doc/HTML/pt/krita/using-images.docbook -share/doc/HTML/pt/krita/using-layers.docbook -share/doc/HTML/pt/krita/using-selections.docbook -share/doc/HTML/pt/krita/using-views.docbook -share/doc/HTML/pt/krita/using.docbook share/doc/HTML/pt/kspread/a11y.docbook share/doc/HTML/pt/kspread/advanced.docbook share/doc/HTML/pt/kspread/basics.docbook share/doc/HTML/pt/kspread/commands.docbook share/doc/HTML/pt/kspread/common share/doc/HTML/pt/kspread/config.docbook share/doc/HTML/pt/kspread/configdialog.docbook share/doc/HTML/pt/kspread/faq.docbook share/doc/HTML/pt/kspread/format.docbook share/doc/HTML/pt/kspread/importexport.docbook share/doc/HTML/pt/kspread/index.cache.bz2 share/doc/HTML/pt/kspread/index.docbook -share/doc/HTML/pt/kugar/common -share/doc/HTML/pt/kugar/datadtd.docbook -share/doc/HTML/pt/kugar/dataref.docbook -share/doc/HTML/pt/kugar/designer.docbook -share/doc/HTML/pt/kugar/index.cache.bz2 -share/doc/HTML/pt/kugar/index.docbook -share/doc/HTML/pt/kugar/progguide.docbook -share/doc/HTML/pt/kugar/starting.docbook -share/doc/HTML/pt/kugar/template-elements.docbook -share/doc/HTML/pt/kugar/template.docbook -share/doc/HTML/pt/kugar/templatedtd.docbook -share/doc/HTML/pt/kugar/tutorial.docbook -share/doc/HTML/pt/kword/a11y.docbook -share/doc/HTML/pt/kword/basics.docbook -share/doc/HTML/pt/kword/bookmarks.docbook -share/doc/HTML/pt/kword/chapnumb.docbook -share/doc/HTML/pt/kword/columns.docbook -share/doc/HTML/pt/kword/common -share/doc/HTML/pt/kword/doccomments.docbook -share/doc/HTML/pt/kword/doclinks.docbook -share/doc/HTML/pt/kword/docstruct.docbook -share/doc/HTML/pt/kword/docvariables.docbook -share/doc/HTML/pt/kword/editing.docbook -share/doc/HTML/pt/kword/expressions.docbook -share/doc/HTML/pt/kword/footendnotes.docbook -share/doc/HTML/pt/kword/formatchar.docbook -share/doc/HTML/pt/kword/formatframes.docbook -share/doc/HTML/pt/kword/formatpara.docbook -share/doc/HTML/pt/kword/formulas.docbook -share/doc/HTML/pt/kword/frames.docbook -share/doc/HTML/pt/kword/fundimentals.docbook -share/doc/HTML/pt/kword/graphics.docbook -share/doc/HTML/pt/kword/headerfooter.docbook -share/doc/HTML/pt/kword/index.cache.bz2 -share/doc/HTML/pt/kword/index.docbook -share/doc/HTML/pt/kword/insertfile.docbook -share/doc/HTML/pt/kword/kparts.docbook -share/doc/HTML/pt/kword/lists.docbook -share/doc/HTML/pt/kword/mailmerge.docbook -share/doc/HTML/pt/kword/mbtb.docbook -share/doc/HTML/pt/kword/migrating.docbook -share/doc/HTML/pt/kword/opt.docbook -share/doc/HTML/pt/kword/pageformat.docbook -share/doc/HTML/pt/kword/storeprint.docbook -share/doc/HTML/pt/kword/styles.docbook -share/doc/HTML/pt/kword/table.docbook -share/doc/HTML/pt/kword/tabstops.docbook -share/doc/HTML/pt/kword/techinfo.docbook -share/doc/HTML/pt/kword/templatecreation.docbook -share/doc/HTML/pt/kword/toc.docbook -share/doc/HTML/pt/kword/tutorial.docbook share/doc/HTML/pt/thesaurus/common share/doc/HTML/pt/thesaurus/index.cache.bz2 share/doc/HTML/pt/thesaurus/index.docbook share/locale/pt/LC_MESSAGES/ArtisticTextShape.mo share/locale/pt/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/pt/LC_MESSAGES/BarcodePlugin.mo share/locale/pt/LC_MESSAGES/CalendarTool.mo share/locale/pt/LC_MESSAGES/ChangecasePlugin.mo +share/locale/pt/LC_MESSAGES/ChartPlugin.mo share/locale/pt/LC_MESSAGES/ChartShape.mo +share/locale/pt/LC_MESSAGES/CommentShape.mo share/locale/pt/LC_MESSAGES/DivineProportion.mo share/locale/pt/LC_MESSAGES/FormulaShape.mo -share/locale/pt/LC_MESSAGES/FreOffice.mo share/locale/pt/LC_MESSAGES/KarbonTools.mo share/locale/pt/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/pt/LC_MESSAGES/MusicShape.mo share/locale/pt/LC_MESSAGES/ParagraphTool.mo share/locale/pt/LC_MESSAGES/PathShapes.mo share/locale/pt/LC_MESSAGES/PictureShape.mo +share/locale/pt/LC_MESSAGES/PluginShape.mo +share/locale/pt/LC_MESSAGES/ShapePlugin.mo share/locale/pt/LC_MESSAGES/SpellCheckPlugin.mo share/locale/pt/LC_MESSAGES/TableShape.mo share/locale/pt/LC_MESSAGES/TextShape.mo share/locale/pt/LC_MESSAGES/VariablesPlugin.mo share/locale/pt/LC_MESSAGES/VideoShape.mo share/locale/pt/LC_MESSAGES/desktop_koffice.mo share/locale/pt/LC_MESSAGES/karbon.mo share/locale/pt/LC_MESSAGES/kchart.mo share/locale/pt/LC_MESSAGES/kexi.mo share/locale/pt/LC_MESSAGES/kformula.mo share/locale/pt/LC_MESSAGES/kocolorspaces.mo share/locale/pt/LC_MESSAGES/koconverter.mo share/locale/pt/LC_MESSAGES/koffice-defaulttools.mo share/locale/pt/LC_MESSAGES/koffice-dockers.mo share/locale/pt/LC_MESSAGES/koffice-simpletextedit.mo share/locale/pt/LC_MESSAGES/koffice.mo share/locale/pt/LC_MESSAGES/kofficefilters.mo share/locale/pt/LC_MESSAGES/koproperty.mo share/locale/pt/LC_MESSAGES/kounavail.mo share/locale/pt/LC_MESSAGES/kplato.mo share/locale/pt/LC_MESSAGES/kplatolibs.mo share/locale/pt/LC_MESSAGES/kplatorcpsplugin.mo share/locale/pt/LC_MESSAGES/kplatowork.mo share/locale/pt/LC_MESSAGES/kpresenter.mo share/locale/pt/LC_MESSAGES/krita.mo share/locale/pt/LC_MESSAGES/krossmodulekplato.mo share/locale/pt/LC_MESSAGES/krossmodulekspread.mo share/locale/pt/LC_MESSAGES/krossmodulekword.mo share/locale/pt/LC_MESSAGES/kscan_plugin.mo share/locale/pt/LC_MESSAGES/kspread.mo share/locale/pt/LC_MESSAGES/kspreadsolver.mo share/locale/pt/LC_MESSAGES/kthesaurus.mo share/locale/pt/LC_MESSAGES/kword.mo share/locale/pt/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/pt/thesaurus -@dirrm share/doc/HTML/pt/kword -@dirrm share/doc/HTML/pt/kugar @dirrm share/doc/HTML/pt/kspread -@dirrm share/doc/HTML/pt/krita @dirrm share/doc/HTML/pt/kpresenter -@dirrm share/doc/HTML/pt/koshell @dirrm share/doc/HTML/pt/koffice @dirrm share/doc/HTML/pt/kivio @dirrm share/doc/HTML/pt/kformula +@dirrm share/doc/HTML/pt/kexi @dirrm share/doc/HTML/pt/kchart @dirrm share/doc/HTML/pt/karbon Property changes on: head/portuguese/calligra-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/portuguese/calligra-l10n-pt_BR/distinfo =================================================================== --- head/portuguese/calligra-l10n-pt_BR/distinfo (revision 271655) +++ head/portuguese/calligra-l10n-pt_BR/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-pt_BR-2.2.2.tar.bz2) = fa6c687090216bb2af23d4a0937b8d614dd7c6b49ce39fc2e9af7b10937d26f9 -SIZE (KDE/koffice-l10n/koffice-l10n-pt_BR-2.2.2.tar.bz2) = 820763 +SHA256 (KDE/koffice-l10n/koffice-l10n-pt_BR-2.3.1.tar.bz2) = 91d7e5ee489b05bf82e744a4d77de94bed777e86b0574bac0bbeb5d8980c6143 +SIZE (KDE/koffice-l10n/koffice-l10n-pt_BR-2.3.1.tar.bz2) = 848637 Property changes on: head/portuguese/calligra-l10n-pt_BR/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/portuguese/calligra-l10n-pt_BR/pkg-plist =================================================================== --- head/portuguese/calligra-l10n-pt_BR/pkg-plist (revision 271655) +++ head/portuguese/calligra-l10n-pt_BR/pkg-plist (revision 271656) @@ -1,122 +1,134 @@ share/doc/HTML/pt_BR/karbon/common share/doc/HTML/pt_BR/karbon/index.cache.bz2 share/doc/HTML/pt_BR/karbon/index.docbook share/doc/HTML/pt_BR/kchart/common share/doc/HTML/pt_BR/kchart/file-toolbar.png share/doc/HTML/pt_BR/kchart/file-toolbar2.png share/doc/HTML/pt_BR/kchart/frame_chart.png share/doc/HTML/pt_BR/kchart/index.cache.bz2 share/doc/HTML/pt_BR/kchart/index.docbook share/doc/HTML/pt_BR/kchart/kchart-kspread-bar.png share/doc/HTML/pt_BR/kchart/kchart-kspread.png share/doc/HTML/pt_BR/kchart/shortcut.png share/doc/HTML/pt_BR/kchart/toolbars.png share/doc/HTML/pt_BR/kexi/basics.docbook share/doc/HTML/pt_BR/kexi/building.docbook share/doc/HTML/pt_BR/kexi/common share/doc/HTML/pt_BR/kexi/comparing.docbook share/doc/HTML/pt_BR/kexi/configuration.docbook share/doc/HTML/pt_BR/kexi/credits.docbook share/doc/HTML/pt_BR/kexi/database.docbook share/doc/HTML/pt_BR/kexi/designingforms.docbook share/doc/HTML/pt_BR/kexi/enteringdataintotables.docbook share/doc/HTML/pt_BR/kexi/enteringdatausingforms.docbook share/doc/HTML/pt_BR/kexi/index.cache.bz2 share/doc/HTML/pt_BR/kexi/index.docbook share/doc/HTML/pt_BR/kexi/intro.docbook share/doc/HTML/pt_BR/kexi/menus.docbook share/doc/HTML/pt_BR/kexi/querydesigning.docbook share/doc/HTML/pt_BR/kformula/common share/doc/HTML/pt_BR/kformula/index.cache.bz2 share/doc/HTML/pt_BR/kformula/index.docbook +share/doc/HTML/pt_BR/kivio/common +share/doc/HTML/pt_BR/kivio/credits.docbook +share/doc/HTML/pt_BR/kivio/index.cache.bz2 +share/doc/HTML/pt_BR/kivio/index.docbook +share/doc/HTML/pt_BR/kivio/introduction.docbook +share/doc/HTML/pt_BR/kivio/usage.docbook +share/doc/HTML/pt_BR/kivio/working.docbook share/doc/HTML/pt_BR/koffice/common share/doc/HTML/pt_BR/koffice/index.cache.bz2 share/doc/HTML/pt_BR/koffice/index.docbook share/doc/HTML/pt_BR/kpresenter/a11y.docbook share/doc/HTML/pt_BR/kpresenter/common share/doc/HTML/pt_BR/kpresenter/faq.docbook share/doc/HTML/pt_BR/kpresenter/great-presentations.docbook share/doc/HTML/pt_BR/kpresenter/guides.docbook share/doc/HTML/pt_BR/kpresenter/index.cache.bz2 share/doc/HTML/pt_BR/kpresenter/index.docbook share/doc/HTML/pt_BR/kpresenter/menus.docbook share/doc/HTML/pt_BR/kpresenter/options.docbook share/doc/HTML/pt_BR/kpresenter/screen.docbook share/doc/HTML/pt_BR/kpresenter/tutorial.docbook share/doc/HTML/pt_BR/kspread/a11y.docbook share/doc/HTML/pt_BR/kspread/advanced.docbook share/doc/HTML/pt_BR/kspread/basics.docbook share/doc/HTML/pt_BR/kspread/chart1.png share/doc/HTML/pt_BR/kspread/commands.docbook share/doc/HTML/pt_BR/kspread/common share/doc/HTML/pt_BR/kspread/config.docbook share/doc/HTML/pt_BR/kspread/configdialog.docbook share/doc/HTML/pt_BR/kspread/copy1.png share/doc/HTML/pt_BR/kspread/faq.docbook share/doc/HTML/pt_BR/kspread/format.docbook share/doc/HTML/pt_BR/kspread/importexport.docbook share/doc/HTML/pt_BR/kspread/index.cache.bz2 share/doc/HTML/pt_BR/kspread/index.docbook share/doc/HTML/pt_BR/kspread/shortcut1.png share/doc/HTML/pt_BR/kspread/shortcut2.png share/doc/HTML/pt_BR/kspread/sort1.png share/doc/HTML/pt_BR/kspread/starting1.png share/doc/HTML/pt_BR/thesaurus/common share/doc/HTML/pt_BR/thesaurus/index.cache.bz2 share/doc/HTML/pt_BR/thesaurus/index.docbook share/locale/pt_BR/LC_MESSAGES/ArtisticTextShape.mo share/locale/pt_BR/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/pt_BR/LC_MESSAGES/BarcodePlugin.mo share/locale/pt_BR/LC_MESSAGES/CalendarTool.mo share/locale/pt_BR/LC_MESSAGES/ChangecasePlugin.mo +share/locale/pt_BR/LC_MESSAGES/ChartPlugin.mo share/locale/pt_BR/LC_MESSAGES/ChartShape.mo +share/locale/pt_BR/LC_MESSAGES/CommentShape.mo share/locale/pt_BR/LC_MESSAGES/DivineProportion.mo share/locale/pt_BR/LC_MESSAGES/FormulaShape.mo -share/locale/pt_BR/LC_MESSAGES/FreOffice.mo share/locale/pt_BR/LC_MESSAGES/KarbonTools.mo share/locale/pt_BR/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/pt_BR/LC_MESSAGES/MusicShape.mo share/locale/pt_BR/LC_MESSAGES/ParagraphTool.mo share/locale/pt_BR/LC_MESSAGES/PathShapes.mo share/locale/pt_BR/LC_MESSAGES/PictureShape.mo +share/locale/pt_BR/LC_MESSAGES/PluginShape.mo +share/locale/pt_BR/LC_MESSAGES/ShapePlugin.mo share/locale/pt_BR/LC_MESSAGES/SpellCheckPlugin.mo share/locale/pt_BR/LC_MESSAGES/TableShape.mo share/locale/pt_BR/LC_MESSAGES/TextShape.mo share/locale/pt_BR/LC_MESSAGES/VariablesPlugin.mo share/locale/pt_BR/LC_MESSAGES/VideoShape.mo share/locale/pt_BR/LC_MESSAGES/desktop_koffice.mo share/locale/pt_BR/LC_MESSAGES/karbon.mo share/locale/pt_BR/LC_MESSAGES/kchart.mo share/locale/pt_BR/LC_MESSAGES/kexi.mo share/locale/pt_BR/LC_MESSAGES/kformula.mo share/locale/pt_BR/LC_MESSAGES/kocolorspaces.mo share/locale/pt_BR/LC_MESSAGES/koconverter.mo share/locale/pt_BR/LC_MESSAGES/koffice-defaulttools.mo share/locale/pt_BR/LC_MESSAGES/koffice-dockers.mo share/locale/pt_BR/LC_MESSAGES/koffice-simpletextedit.mo share/locale/pt_BR/LC_MESSAGES/koffice.mo share/locale/pt_BR/LC_MESSAGES/kofficefilters.mo share/locale/pt_BR/LC_MESSAGES/koproperty.mo share/locale/pt_BR/LC_MESSAGES/kounavail.mo share/locale/pt_BR/LC_MESSAGES/kplato.mo share/locale/pt_BR/LC_MESSAGES/kplatolibs.mo share/locale/pt_BR/LC_MESSAGES/kplatorcpsplugin.mo share/locale/pt_BR/LC_MESSAGES/kplatowork.mo share/locale/pt_BR/LC_MESSAGES/kpresenter.mo share/locale/pt_BR/LC_MESSAGES/krita.mo share/locale/pt_BR/LC_MESSAGES/krossmodulekplato.mo share/locale/pt_BR/LC_MESSAGES/krossmodulekspread.mo share/locale/pt_BR/LC_MESSAGES/krossmodulekword.mo share/locale/pt_BR/LC_MESSAGES/kscan_plugin.mo share/locale/pt_BR/LC_MESSAGES/kspread.mo share/locale/pt_BR/LC_MESSAGES/kspreadsolver.mo share/locale/pt_BR/LC_MESSAGES/kthesaurus.mo share/locale/pt_BR/LC_MESSAGES/kword.mo share/locale/pt_BR/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/pt_BR/thesaurus @dirrm share/doc/HTML/pt_BR/kspread @dirrm share/doc/HTML/pt_BR/kpresenter @dirrm share/doc/HTML/pt_BR/koffice +@dirrm share/doc/HTML/pt_BR/kivio @dirrm share/doc/HTML/pt_BR/kformula @dirrm share/doc/HTML/pt_BR/kexi @dirrm share/doc/HTML/pt_BR/kchart @dirrm share/doc/HTML/pt_BR/karbon Property changes on: head/portuguese/calligra-l10n-pt_BR/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/portuguese/koffice-kde4-l10n/distinfo =================================================================== --- head/portuguese/koffice-kde4-l10n/distinfo (revision 271655) +++ head/portuguese/koffice-kde4-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-pt-2.2.2.tar.bz2) = 86154c175b38c56d9ff759e8395307232b8a69191d790002cb942d9a49f7972a -SIZE (KDE/koffice-l10n/koffice-l10n-pt-2.2.2.tar.bz2) = 976389 +SHA256 (KDE/koffice-l10n/koffice-l10n-pt-2.3.1.tar.bz2) = 53e72b3b9bd8880435131bcc8b63c0f14358498befc286d2d23dab7d2d2c7541 +SIZE (KDE/koffice-l10n/koffice-l10n-pt-2.3.1.tar.bz2) = 609680 Property changes on: head/portuguese/koffice-kde4-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/portuguese/koffice-kde4-l10n/pkg-plist =================================================================== --- head/portuguese/koffice-kde4-l10n/pkg-plist (revision 271655) +++ head/portuguese/koffice-kde4-l10n/pkg-plist (revision 271656) @@ -1,188 +1,121 @@ share/doc/HTML/pt/karbon/common share/doc/HTML/pt/karbon/index.cache.bz2 share/doc/HTML/pt/karbon/index.docbook share/doc/HTML/pt/kchart/common share/doc/HTML/pt/kchart/index.cache.bz2 share/doc/HTML/pt/kchart/index.docbook +share/doc/HTML/pt/kexi/basics.docbook +share/doc/HTML/pt/kexi/building.docbook +share/doc/HTML/pt/kexi/common +share/doc/HTML/pt/kexi/comparing.docbook +share/doc/HTML/pt/kexi/configuration.docbook +share/doc/HTML/pt/kexi/credits.docbook +share/doc/HTML/pt/kexi/database.docbook +share/doc/HTML/pt/kexi/designingforms.docbook +share/doc/HTML/pt/kexi/enteringdataintotables.docbook +share/doc/HTML/pt/kexi/enteringdatausingforms.docbook +share/doc/HTML/pt/kexi/index.cache.bz2 +share/doc/HTML/pt/kexi/index.docbook +share/doc/HTML/pt/kexi/intro.docbook +share/doc/HTML/pt/kexi/menus.docbook +share/doc/HTML/pt/kexi/querydesigning.docbook share/doc/HTML/pt/kformula/common share/doc/HTML/pt/kformula/index.cache.bz2 share/doc/HTML/pt/kformula/index.docbook share/doc/HTML/pt/kivio/common share/doc/HTML/pt/kivio/credits.docbook share/doc/HTML/pt/kivio/index.cache.bz2 share/doc/HTML/pt/kivio/index.docbook share/doc/HTML/pt/kivio/introduction.docbook share/doc/HTML/pt/kivio/usage.docbook share/doc/HTML/pt/kivio/working.docbook share/doc/HTML/pt/koffice/common share/doc/HTML/pt/koffice/index.cache.bz2 share/doc/HTML/pt/koffice/index.docbook -share/doc/HTML/pt/koshell/common -share/doc/HTML/pt/koshell/index.cache.bz2 -share/doc/HTML/pt/koshell/index.docbook share/doc/HTML/pt/kpresenter/a11y.docbook share/doc/HTML/pt/kpresenter/common share/doc/HTML/pt/kpresenter/faq.docbook share/doc/HTML/pt/kpresenter/great-presentations.docbook share/doc/HTML/pt/kpresenter/guides.docbook share/doc/HTML/pt/kpresenter/index.cache.bz2 share/doc/HTML/pt/kpresenter/index.docbook share/doc/HTML/pt/kpresenter/menus.docbook share/doc/HTML/pt/kpresenter/options.docbook share/doc/HTML/pt/kpresenter/screen.docbook share/doc/HTML/pt/kpresenter/tutorial.docbook -share/doc/HTML/pt/krita/commands-dialogs.docbook -share/doc/HTML/pt/krita/commands-menus.docbook -share/doc/HTML/pt/krita/commands-palettes.docbook -share/doc/HTML/pt/krita/commands-toolbars.docbook -share/doc/HTML/pt/krita/commands.docbook -share/doc/HTML/pt/krita/common -share/doc/HTML/pt/krita/credits.docbook -share/doc/HTML/pt/krita/developers-plugins.docbook -share/doc/HTML/pt/krita/developers-scripting.docbook -share/doc/HTML/pt/krita/developers.docbook -share/doc/HTML/pt/krita/faq.docbook -share/doc/HTML/pt/krita/index.cache.bz2 -share/doc/HTML/pt/krita/index.docbook -share/doc/HTML/pt/krita/installation.docbook -share/doc/HTML/pt/krita/introduction.docbook -share/doc/HTML/pt/krita/scripting.docbook -share/doc/HTML/pt/krita/settings.docbook -share/doc/HTML/pt/krita/tutorial-quick-starts.docbook -share/doc/HTML/pt/krita/tutorial-select-layer.docbook -share/doc/HTML/pt/krita/tutorial-starting.docbook -share/doc/HTML/pt/krita/tutorial-tablet.docbook -share/doc/HTML/pt/krita/tutorial.docbook -share/doc/HTML/pt/krita/using-colorspaces.docbook -share/doc/HTML/pt/krita/using-filters.docbook -share/doc/HTML/pt/krita/using-images.docbook -share/doc/HTML/pt/krita/using-layers.docbook -share/doc/HTML/pt/krita/using-selections.docbook -share/doc/HTML/pt/krita/using-views.docbook -share/doc/HTML/pt/krita/using.docbook share/doc/HTML/pt/kspread/a11y.docbook share/doc/HTML/pt/kspread/advanced.docbook share/doc/HTML/pt/kspread/basics.docbook share/doc/HTML/pt/kspread/commands.docbook share/doc/HTML/pt/kspread/common share/doc/HTML/pt/kspread/config.docbook share/doc/HTML/pt/kspread/configdialog.docbook share/doc/HTML/pt/kspread/faq.docbook share/doc/HTML/pt/kspread/format.docbook share/doc/HTML/pt/kspread/importexport.docbook share/doc/HTML/pt/kspread/index.cache.bz2 share/doc/HTML/pt/kspread/index.docbook -share/doc/HTML/pt/kugar/common -share/doc/HTML/pt/kugar/datadtd.docbook -share/doc/HTML/pt/kugar/dataref.docbook -share/doc/HTML/pt/kugar/designer.docbook -share/doc/HTML/pt/kugar/index.cache.bz2 -share/doc/HTML/pt/kugar/index.docbook -share/doc/HTML/pt/kugar/progguide.docbook -share/doc/HTML/pt/kugar/starting.docbook -share/doc/HTML/pt/kugar/template-elements.docbook -share/doc/HTML/pt/kugar/template.docbook -share/doc/HTML/pt/kugar/templatedtd.docbook -share/doc/HTML/pt/kugar/tutorial.docbook -share/doc/HTML/pt/kword/a11y.docbook -share/doc/HTML/pt/kword/basics.docbook -share/doc/HTML/pt/kword/bookmarks.docbook -share/doc/HTML/pt/kword/chapnumb.docbook -share/doc/HTML/pt/kword/columns.docbook -share/doc/HTML/pt/kword/common -share/doc/HTML/pt/kword/doccomments.docbook -share/doc/HTML/pt/kword/doclinks.docbook -share/doc/HTML/pt/kword/docstruct.docbook -share/doc/HTML/pt/kword/docvariables.docbook -share/doc/HTML/pt/kword/editing.docbook -share/doc/HTML/pt/kword/expressions.docbook -share/doc/HTML/pt/kword/footendnotes.docbook -share/doc/HTML/pt/kword/formatchar.docbook -share/doc/HTML/pt/kword/formatframes.docbook -share/doc/HTML/pt/kword/formatpara.docbook -share/doc/HTML/pt/kword/formulas.docbook -share/doc/HTML/pt/kword/frames.docbook -share/doc/HTML/pt/kword/fundimentals.docbook -share/doc/HTML/pt/kword/graphics.docbook -share/doc/HTML/pt/kword/headerfooter.docbook -share/doc/HTML/pt/kword/index.cache.bz2 -share/doc/HTML/pt/kword/index.docbook -share/doc/HTML/pt/kword/insertfile.docbook -share/doc/HTML/pt/kword/kparts.docbook -share/doc/HTML/pt/kword/lists.docbook -share/doc/HTML/pt/kword/mailmerge.docbook -share/doc/HTML/pt/kword/mbtb.docbook -share/doc/HTML/pt/kword/migrating.docbook -share/doc/HTML/pt/kword/opt.docbook -share/doc/HTML/pt/kword/pageformat.docbook -share/doc/HTML/pt/kword/storeprint.docbook -share/doc/HTML/pt/kword/styles.docbook -share/doc/HTML/pt/kword/table.docbook -share/doc/HTML/pt/kword/tabstops.docbook -share/doc/HTML/pt/kword/techinfo.docbook -share/doc/HTML/pt/kword/templatecreation.docbook -share/doc/HTML/pt/kword/toc.docbook -share/doc/HTML/pt/kword/tutorial.docbook share/doc/HTML/pt/thesaurus/common share/doc/HTML/pt/thesaurus/index.cache.bz2 share/doc/HTML/pt/thesaurus/index.docbook share/locale/pt/LC_MESSAGES/ArtisticTextShape.mo share/locale/pt/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/pt/LC_MESSAGES/BarcodePlugin.mo share/locale/pt/LC_MESSAGES/CalendarTool.mo share/locale/pt/LC_MESSAGES/ChangecasePlugin.mo +share/locale/pt/LC_MESSAGES/ChartPlugin.mo share/locale/pt/LC_MESSAGES/ChartShape.mo +share/locale/pt/LC_MESSAGES/CommentShape.mo share/locale/pt/LC_MESSAGES/DivineProportion.mo share/locale/pt/LC_MESSAGES/FormulaShape.mo -share/locale/pt/LC_MESSAGES/FreOffice.mo share/locale/pt/LC_MESSAGES/KarbonTools.mo share/locale/pt/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/pt/LC_MESSAGES/MusicShape.mo share/locale/pt/LC_MESSAGES/ParagraphTool.mo share/locale/pt/LC_MESSAGES/PathShapes.mo share/locale/pt/LC_MESSAGES/PictureShape.mo +share/locale/pt/LC_MESSAGES/PluginShape.mo +share/locale/pt/LC_MESSAGES/ShapePlugin.mo share/locale/pt/LC_MESSAGES/SpellCheckPlugin.mo share/locale/pt/LC_MESSAGES/TableShape.mo share/locale/pt/LC_MESSAGES/TextShape.mo share/locale/pt/LC_MESSAGES/VariablesPlugin.mo share/locale/pt/LC_MESSAGES/VideoShape.mo share/locale/pt/LC_MESSAGES/desktop_koffice.mo share/locale/pt/LC_MESSAGES/karbon.mo share/locale/pt/LC_MESSAGES/kchart.mo share/locale/pt/LC_MESSAGES/kexi.mo share/locale/pt/LC_MESSAGES/kformula.mo share/locale/pt/LC_MESSAGES/kocolorspaces.mo share/locale/pt/LC_MESSAGES/koconverter.mo share/locale/pt/LC_MESSAGES/koffice-defaulttools.mo share/locale/pt/LC_MESSAGES/koffice-dockers.mo share/locale/pt/LC_MESSAGES/koffice-simpletextedit.mo share/locale/pt/LC_MESSAGES/koffice.mo share/locale/pt/LC_MESSAGES/kofficefilters.mo share/locale/pt/LC_MESSAGES/koproperty.mo share/locale/pt/LC_MESSAGES/kounavail.mo share/locale/pt/LC_MESSAGES/kplato.mo share/locale/pt/LC_MESSAGES/kplatolibs.mo share/locale/pt/LC_MESSAGES/kplatorcpsplugin.mo share/locale/pt/LC_MESSAGES/kplatowork.mo share/locale/pt/LC_MESSAGES/kpresenter.mo share/locale/pt/LC_MESSAGES/krita.mo share/locale/pt/LC_MESSAGES/krossmodulekplato.mo share/locale/pt/LC_MESSAGES/krossmodulekspread.mo share/locale/pt/LC_MESSAGES/krossmodulekword.mo share/locale/pt/LC_MESSAGES/kscan_plugin.mo share/locale/pt/LC_MESSAGES/kspread.mo share/locale/pt/LC_MESSAGES/kspreadsolver.mo share/locale/pt/LC_MESSAGES/kthesaurus.mo share/locale/pt/LC_MESSAGES/kword.mo share/locale/pt/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/pt/thesaurus -@dirrm share/doc/HTML/pt/kword -@dirrm share/doc/HTML/pt/kugar @dirrm share/doc/HTML/pt/kspread -@dirrm share/doc/HTML/pt/krita @dirrm share/doc/HTML/pt/kpresenter -@dirrm share/doc/HTML/pt/koshell @dirrm share/doc/HTML/pt/koffice @dirrm share/doc/HTML/pt/kivio @dirrm share/doc/HTML/pt/kformula +@dirrm share/doc/HTML/pt/kexi @dirrm share/doc/HTML/pt/kchart @dirrm share/doc/HTML/pt/karbon Property changes on: head/portuguese/koffice-kde4-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/portuguese/koffice-kde4-l10n-pt_BR/distinfo =================================================================== --- head/portuguese/koffice-kde4-l10n-pt_BR/distinfo (revision 271655) +++ head/portuguese/koffice-kde4-l10n-pt_BR/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-pt_BR-2.2.2.tar.bz2) = fa6c687090216bb2af23d4a0937b8d614dd7c6b49ce39fc2e9af7b10937d26f9 -SIZE (KDE/koffice-l10n/koffice-l10n-pt_BR-2.2.2.tar.bz2) = 820763 +SHA256 (KDE/koffice-l10n/koffice-l10n-pt_BR-2.3.1.tar.bz2) = 91d7e5ee489b05bf82e744a4d77de94bed777e86b0574bac0bbeb5d8980c6143 +SIZE (KDE/koffice-l10n/koffice-l10n-pt_BR-2.3.1.tar.bz2) = 848637 Property changes on: head/portuguese/koffice-kde4-l10n-pt_BR/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/portuguese/koffice-kde4-l10n-pt_BR/pkg-plist =================================================================== --- head/portuguese/koffice-kde4-l10n-pt_BR/pkg-plist (revision 271655) +++ head/portuguese/koffice-kde4-l10n-pt_BR/pkg-plist (revision 271656) @@ -1,122 +1,134 @@ share/doc/HTML/pt_BR/karbon/common share/doc/HTML/pt_BR/karbon/index.cache.bz2 share/doc/HTML/pt_BR/karbon/index.docbook share/doc/HTML/pt_BR/kchart/common share/doc/HTML/pt_BR/kchart/file-toolbar.png share/doc/HTML/pt_BR/kchart/file-toolbar2.png share/doc/HTML/pt_BR/kchart/frame_chart.png share/doc/HTML/pt_BR/kchart/index.cache.bz2 share/doc/HTML/pt_BR/kchart/index.docbook share/doc/HTML/pt_BR/kchart/kchart-kspread-bar.png share/doc/HTML/pt_BR/kchart/kchart-kspread.png share/doc/HTML/pt_BR/kchart/shortcut.png share/doc/HTML/pt_BR/kchart/toolbars.png share/doc/HTML/pt_BR/kexi/basics.docbook share/doc/HTML/pt_BR/kexi/building.docbook share/doc/HTML/pt_BR/kexi/common share/doc/HTML/pt_BR/kexi/comparing.docbook share/doc/HTML/pt_BR/kexi/configuration.docbook share/doc/HTML/pt_BR/kexi/credits.docbook share/doc/HTML/pt_BR/kexi/database.docbook share/doc/HTML/pt_BR/kexi/designingforms.docbook share/doc/HTML/pt_BR/kexi/enteringdataintotables.docbook share/doc/HTML/pt_BR/kexi/enteringdatausingforms.docbook share/doc/HTML/pt_BR/kexi/index.cache.bz2 share/doc/HTML/pt_BR/kexi/index.docbook share/doc/HTML/pt_BR/kexi/intro.docbook share/doc/HTML/pt_BR/kexi/menus.docbook share/doc/HTML/pt_BR/kexi/querydesigning.docbook share/doc/HTML/pt_BR/kformula/common share/doc/HTML/pt_BR/kformula/index.cache.bz2 share/doc/HTML/pt_BR/kformula/index.docbook +share/doc/HTML/pt_BR/kivio/common +share/doc/HTML/pt_BR/kivio/credits.docbook +share/doc/HTML/pt_BR/kivio/index.cache.bz2 +share/doc/HTML/pt_BR/kivio/index.docbook +share/doc/HTML/pt_BR/kivio/introduction.docbook +share/doc/HTML/pt_BR/kivio/usage.docbook +share/doc/HTML/pt_BR/kivio/working.docbook share/doc/HTML/pt_BR/koffice/common share/doc/HTML/pt_BR/koffice/index.cache.bz2 share/doc/HTML/pt_BR/koffice/index.docbook share/doc/HTML/pt_BR/kpresenter/a11y.docbook share/doc/HTML/pt_BR/kpresenter/common share/doc/HTML/pt_BR/kpresenter/faq.docbook share/doc/HTML/pt_BR/kpresenter/great-presentations.docbook share/doc/HTML/pt_BR/kpresenter/guides.docbook share/doc/HTML/pt_BR/kpresenter/index.cache.bz2 share/doc/HTML/pt_BR/kpresenter/index.docbook share/doc/HTML/pt_BR/kpresenter/menus.docbook share/doc/HTML/pt_BR/kpresenter/options.docbook share/doc/HTML/pt_BR/kpresenter/screen.docbook share/doc/HTML/pt_BR/kpresenter/tutorial.docbook share/doc/HTML/pt_BR/kspread/a11y.docbook share/doc/HTML/pt_BR/kspread/advanced.docbook share/doc/HTML/pt_BR/kspread/basics.docbook share/doc/HTML/pt_BR/kspread/chart1.png share/doc/HTML/pt_BR/kspread/commands.docbook share/doc/HTML/pt_BR/kspread/common share/doc/HTML/pt_BR/kspread/config.docbook share/doc/HTML/pt_BR/kspread/configdialog.docbook share/doc/HTML/pt_BR/kspread/copy1.png share/doc/HTML/pt_BR/kspread/faq.docbook share/doc/HTML/pt_BR/kspread/format.docbook share/doc/HTML/pt_BR/kspread/importexport.docbook share/doc/HTML/pt_BR/kspread/index.cache.bz2 share/doc/HTML/pt_BR/kspread/index.docbook share/doc/HTML/pt_BR/kspread/shortcut1.png share/doc/HTML/pt_BR/kspread/shortcut2.png share/doc/HTML/pt_BR/kspread/sort1.png share/doc/HTML/pt_BR/kspread/starting1.png share/doc/HTML/pt_BR/thesaurus/common share/doc/HTML/pt_BR/thesaurus/index.cache.bz2 share/doc/HTML/pt_BR/thesaurus/index.docbook share/locale/pt_BR/LC_MESSAGES/ArtisticTextShape.mo share/locale/pt_BR/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/pt_BR/LC_MESSAGES/BarcodePlugin.mo share/locale/pt_BR/LC_MESSAGES/CalendarTool.mo share/locale/pt_BR/LC_MESSAGES/ChangecasePlugin.mo +share/locale/pt_BR/LC_MESSAGES/ChartPlugin.mo share/locale/pt_BR/LC_MESSAGES/ChartShape.mo +share/locale/pt_BR/LC_MESSAGES/CommentShape.mo share/locale/pt_BR/LC_MESSAGES/DivineProportion.mo share/locale/pt_BR/LC_MESSAGES/FormulaShape.mo -share/locale/pt_BR/LC_MESSAGES/FreOffice.mo share/locale/pt_BR/LC_MESSAGES/KarbonTools.mo share/locale/pt_BR/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/pt_BR/LC_MESSAGES/MusicShape.mo share/locale/pt_BR/LC_MESSAGES/ParagraphTool.mo share/locale/pt_BR/LC_MESSAGES/PathShapes.mo share/locale/pt_BR/LC_MESSAGES/PictureShape.mo +share/locale/pt_BR/LC_MESSAGES/PluginShape.mo +share/locale/pt_BR/LC_MESSAGES/ShapePlugin.mo share/locale/pt_BR/LC_MESSAGES/SpellCheckPlugin.mo share/locale/pt_BR/LC_MESSAGES/TableShape.mo share/locale/pt_BR/LC_MESSAGES/TextShape.mo share/locale/pt_BR/LC_MESSAGES/VariablesPlugin.mo share/locale/pt_BR/LC_MESSAGES/VideoShape.mo share/locale/pt_BR/LC_MESSAGES/desktop_koffice.mo share/locale/pt_BR/LC_MESSAGES/karbon.mo share/locale/pt_BR/LC_MESSAGES/kchart.mo share/locale/pt_BR/LC_MESSAGES/kexi.mo share/locale/pt_BR/LC_MESSAGES/kformula.mo share/locale/pt_BR/LC_MESSAGES/kocolorspaces.mo share/locale/pt_BR/LC_MESSAGES/koconverter.mo share/locale/pt_BR/LC_MESSAGES/koffice-defaulttools.mo share/locale/pt_BR/LC_MESSAGES/koffice-dockers.mo share/locale/pt_BR/LC_MESSAGES/koffice-simpletextedit.mo share/locale/pt_BR/LC_MESSAGES/koffice.mo share/locale/pt_BR/LC_MESSAGES/kofficefilters.mo share/locale/pt_BR/LC_MESSAGES/koproperty.mo share/locale/pt_BR/LC_MESSAGES/kounavail.mo share/locale/pt_BR/LC_MESSAGES/kplato.mo share/locale/pt_BR/LC_MESSAGES/kplatolibs.mo share/locale/pt_BR/LC_MESSAGES/kplatorcpsplugin.mo share/locale/pt_BR/LC_MESSAGES/kplatowork.mo share/locale/pt_BR/LC_MESSAGES/kpresenter.mo share/locale/pt_BR/LC_MESSAGES/krita.mo share/locale/pt_BR/LC_MESSAGES/krossmodulekplato.mo share/locale/pt_BR/LC_MESSAGES/krossmodulekspread.mo share/locale/pt_BR/LC_MESSAGES/krossmodulekword.mo share/locale/pt_BR/LC_MESSAGES/kscan_plugin.mo share/locale/pt_BR/LC_MESSAGES/kspread.mo share/locale/pt_BR/LC_MESSAGES/kspreadsolver.mo share/locale/pt_BR/LC_MESSAGES/kthesaurus.mo share/locale/pt_BR/LC_MESSAGES/kword.mo share/locale/pt_BR/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/pt_BR/thesaurus @dirrm share/doc/HTML/pt_BR/kspread @dirrm share/doc/HTML/pt_BR/kpresenter @dirrm share/doc/HTML/pt_BR/koffice +@dirrm share/doc/HTML/pt_BR/kivio @dirrm share/doc/HTML/pt_BR/kformula @dirrm share/doc/HTML/pt_BR/kexi @dirrm share/doc/HTML/pt_BR/kchart @dirrm share/doc/HTML/pt_BR/karbon Property changes on: head/portuguese/koffice-kde4-l10n-pt_BR/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/ukrainian/calligra-l10n/distinfo =================================================================== --- head/ukrainian/calligra-l10n/distinfo (revision 271655) +++ head/ukrainian/calligra-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-uk-2.2.2.tar.bz2) = a6da893ea11914be77346cb818cb48881a2c7f1f24051a74b7e9b1fd4a890878 -SIZE (KDE/koffice-l10n/koffice-l10n-uk-2.2.2.tar.bz2) = 611069 +SHA256 (KDE/koffice-l10n/koffice-l10n-uk-2.3.1.tar.bz2) = 8bee57111bcb25e686e0fae969722c961e34715bff25b70635d1f4883d3170b7 +SIZE (KDE/koffice-l10n/koffice-l10n-uk-2.3.1.tar.bz2) = 651611 Property changes on: head/ukrainian/calligra-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/ukrainian/calligra-l10n/pkg-plist =================================================================== --- head/ukrainian/calligra-l10n/pkg-plist (revision 271655) +++ head/ukrainian/calligra-l10n/pkg-plist (revision 271656) @@ -1,109 +1,121 @@ share/doc/HTML/uk/karbon/common share/doc/HTML/uk/karbon/index.cache.bz2 share/doc/HTML/uk/karbon/index.docbook share/doc/HTML/uk/kchart/common share/doc/HTML/uk/kchart/index.cache.bz2 share/doc/HTML/uk/kchart/index.docbook share/doc/HTML/uk/kexi/basics.docbook share/doc/HTML/uk/kexi/building.docbook share/doc/HTML/uk/kexi/common share/doc/HTML/uk/kexi/comparing.docbook share/doc/HTML/uk/kexi/configuration.docbook share/doc/HTML/uk/kexi/credits.docbook share/doc/HTML/uk/kexi/database.docbook share/doc/HTML/uk/kexi/designingforms.docbook share/doc/HTML/uk/kexi/enteringdataintotables.docbook share/doc/HTML/uk/kexi/enteringdatausingforms.docbook share/doc/HTML/uk/kexi/index.cache.bz2 share/doc/HTML/uk/kexi/index.docbook share/doc/HTML/uk/kexi/intro.docbook share/doc/HTML/uk/kexi/menus.docbook share/doc/HTML/uk/kexi/querydesigning.docbook share/doc/HTML/uk/kformula/common share/doc/HTML/uk/kformula/index.cache.bz2 share/doc/HTML/uk/kformula/index.docbook +share/doc/HTML/uk/kivio/common +share/doc/HTML/uk/kivio/credits.docbook +share/doc/HTML/uk/kivio/index.cache.bz2 +share/doc/HTML/uk/kivio/index.docbook +share/doc/HTML/uk/kivio/introduction.docbook +share/doc/HTML/uk/kivio/usage.docbook +share/doc/HTML/uk/kivio/working.docbook share/doc/HTML/uk/koffice/common share/doc/HTML/uk/koffice/index.cache.bz2 share/doc/HTML/uk/koffice/index.docbook share/doc/HTML/uk/kpresenter/a11y.docbook share/doc/HTML/uk/kpresenter/common share/doc/HTML/uk/kpresenter/faq.docbook share/doc/HTML/uk/kpresenter/great-presentations.docbook share/doc/HTML/uk/kpresenter/guides.docbook share/doc/HTML/uk/kpresenter/index.cache.bz2 share/doc/HTML/uk/kpresenter/index.docbook share/doc/HTML/uk/kpresenter/menus.docbook share/doc/HTML/uk/kpresenter/options.docbook share/doc/HTML/uk/kpresenter/screen.docbook share/doc/HTML/uk/kpresenter/tutorial.docbook share/doc/HTML/uk/kspread/a11y.docbook share/doc/HTML/uk/kspread/advanced.docbook share/doc/HTML/uk/kspread/basics.docbook share/doc/HTML/uk/kspread/commands.docbook share/doc/HTML/uk/kspread/common share/doc/HTML/uk/kspread/config.docbook share/doc/HTML/uk/kspread/configdialog.docbook share/doc/HTML/uk/kspread/faq.docbook share/doc/HTML/uk/kspread/format.docbook share/doc/HTML/uk/kspread/importexport.docbook share/doc/HTML/uk/kspread/index.cache.bz2 share/doc/HTML/uk/kspread/index.docbook share/doc/HTML/uk/thesaurus/common share/doc/HTML/uk/thesaurus/index.cache.bz2 share/doc/HTML/uk/thesaurus/index.docbook share/locale/uk/LC_MESSAGES/ArtisticTextShape.mo share/locale/uk/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/uk/LC_MESSAGES/BarcodePlugin.mo share/locale/uk/LC_MESSAGES/CalendarTool.mo share/locale/uk/LC_MESSAGES/ChangecasePlugin.mo +share/locale/uk/LC_MESSAGES/ChartPlugin.mo share/locale/uk/LC_MESSAGES/ChartShape.mo +share/locale/uk/LC_MESSAGES/CommentShape.mo share/locale/uk/LC_MESSAGES/DivineProportion.mo share/locale/uk/LC_MESSAGES/FormulaShape.mo -share/locale/uk/LC_MESSAGES/FreOffice.mo share/locale/uk/LC_MESSAGES/KarbonTools.mo share/locale/uk/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/uk/LC_MESSAGES/MusicShape.mo share/locale/uk/LC_MESSAGES/ParagraphTool.mo share/locale/uk/LC_MESSAGES/PathShapes.mo share/locale/uk/LC_MESSAGES/PictureShape.mo +share/locale/uk/LC_MESSAGES/PluginShape.mo +share/locale/uk/LC_MESSAGES/ShapePlugin.mo share/locale/uk/LC_MESSAGES/SpellCheckPlugin.mo share/locale/uk/LC_MESSAGES/TableShape.mo share/locale/uk/LC_MESSAGES/TextShape.mo share/locale/uk/LC_MESSAGES/VariablesPlugin.mo share/locale/uk/LC_MESSAGES/VideoShape.mo share/locale/uk/LC_MESSAGES/desktop_koffice.mo share/locale/uk/LC_MESSAGES/karbon.mo share/locale/uk/LC_MESSAGES/kchart.mo share/locale/uk/LC_MESSAGES/kexi.mo share/locale/uk/LC_MESSAGES/kformula.mo share/locale/uk/LC_MESSAGES/kocolorspaces.mo share/locale/uk/LC_MESSAGES/koconverter.mo share/locale/uk/LC_MESSAGES/koffice-defaulttools.mo share/locale/uk/LC_MESSAGES/koffice-dockers.mo share/locale/uk/LC_MESSAGES/koffice-simpletextedit.mo share/locale/uk/LC_MESSAGES/koffice.mo share/locale/uk/LC_MESSAGES/kofficefilters.mo share/locale/uk/LC_MESSAGES/koproperty.mo share/locale/uk/LC_MESSAGES/kounavail.mo share/locale/uk/LC_MESSAGES/kplato.mo share/locale/uk/LC_MESSAGES/kplatolibs.mo share/locale/uk/LC_MESSAGES/kplatorcpsplugin.mo share/locale/uk/LC_MESSAGES/kplatowork.mo share/locale/uk/LC_MESSAGES/kpresenter.mo share/locale/uk/LC_MESSAGES/krita.mo share/locale/uk/LC_MESSAGES/krossmodulekplato.mo share/locale/uk/LC_MESSAGES/krossmodulekspread.mo share/locale/uk/LC_MESSAGES/krossmodulekword.mo share/locale/uk/LC_MESSAGES/kscan_plugin.mo share/locale/uk/LC_MESSAGES/kspread.mo share/locale/uk/LC_MESSAGES/kspreadsolver.mo share/locale/uk/LC_MESSAGES/kthesaurus.mo share/locale/uk/LC_MESSAGES/kword.mo share/locale/uk/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/uk/thesaurus @dirrm share/doc/HTML/uk/kspread @dirrm share/doc/HTML/uk/kpresenter @dirrm share/doc/HTML/uk/koffice +@dirrm share/doc/HTML/uk/kivio @dirrm share/doc/HTML/uk/kformula @dirrm share/doc/HTML/uk/kexi @dirrm share/doc/HTML/uk/kchart @dirrm share/doc/HTML/uk/karbon Property changes on: head/ukrainian/calligra-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/ukrainian/koffice-kde4-l10n/distinfo =================================================================== --- head/ukrainian/koffice-kde4-l10n/distinfo (revision 271655) +++ head/ukrainian/koffice-kde4-l10n/distinfo (revision 271656) @@ -1,2 +1,2 @@ -SHA256 (KDE/koffice-l10n/koffice-l10n-uk-2.2.2.tar.bz2) = a6da893ea11914be77346cb818cb48881a2c7f1f24051a74b7e9b1fd4a890878 -SIZE (KDE/koffice-l10n/koffice-l10n-uk-2.2.2.tar.bz2) = 611069 +SHA256 (KDE/koffice-l10n/koffice-l10n-uk-2.3.1.tar.bz2) = 8bee57111bcb25e686e0fae969722c961e34715bff25b70635d1f4883d3170b7 +SIZE (KDE/koffice-l10n/koffice-l10n-uk-2.3.1.tar.bz2) = 651611 Property changes on: head/ukrainian/koffice-kde4-l10n/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/ukrainian/koffice-kde4-l10n/pkg-plist =================================================================== --- head/ukrainian/koffice-kde4-l10n/pkg-plist (revision 271655) +++ head/ukrainian/koffice-kde4-l10n/pkg-plist (revision 271656) @@ -1,109 +1,121 @@ share/doc/HTML/uk/karbon/common share/doc/HTML/uk/karbon/index.cache.bz2 share/doc/HTML/uk/karbon/index.docbook share/doc/HTML/uk/kchart/common share/doc/HTML/uk/kchart/index.cache.bz2 share/doc/HTML/uk/kchart/index.docbook share/doc/HTML/uk/kexi/basics.docbook share/doc/HTML/uk/kexi/building.docbook share/doc/HTML/uk/kexi/common share/doc/HTML/uk/kexi/comparing.docbook share/doc/HTML/uk/kexi/configuration.docbook share/doc/HTML/uk/kexi/credits.docbook share/doc/HTML/uk/kexi/database.docbook share/doc/HTML/uk/kexi/designingforms.docbook share/doc/HTML/uk/kexi/enteringdataintotables.docbook share/doc/HTML/uk/kexi/enteringdatausingforms.docbook share/doc/HTML/uk/kexi/index.cache.bz2 share/doc/HTML/uk/kexi/index.docbook share/doc/HTML/uk/kexi/intro.docbook share/doc/HTML/uk/kexi/menus.docbook share/doc/HTML/uk/kexi/querydesigning.docbook share/doc/HTML/uk/kformula/common share/doc/HTML/uk/kformula/index.cache.bz2 share/doc/HTML/uk/kformula/index.docbook +share/doc/HTML/uk/kivio/common +share/doc/HTML/uk/kivio/credits.docbook +share/doc/HTML/uk/kivio/index.cache.bz2 +share/doc/HTML/uk/kivio/index.docbook +share/doc/HTML/uk/kivio/introduction.docbook +share/doc/HTML/uk/kivio/usage.docbook +share/doc/HTML/uk/kivio/working.docbook share/doc/HTML/uk/koffice/common share/doc/HTML/uk/koffice/index.cache.bz2 share/doc/HTML/uk/koffice/index.docbook share/doc/HTML/uk/kpresenter/a11y.docbook share/doc/HTML/uk/kpresenter/common share/doc/HTML/uk/kpresenter/faq.docbook share/doc/HTML/uk/kpresenter/great-presentations.docbook share/doc/HTML/uk/kpresenter/guides.docbook share/doc/HTML/uk/kpresenter/index.cache.bz2 share/doc/HTML/uk/kpresenter/index.docbook share/doc/HTML/uk/kpresenter/menus.docbook share/doc/HTML/uk/kpresenter/options.docbook share/doc/HTML/uk/kpresenter/screen.docbook share/doc/HTML/uk/kpresenter/tutorial.docbook share/doc/HTML/uk/kspread/a11y.docbook share/doc/HTML/uk/kspread/advanced.docbook share/doc/HTML/uk/kspread/basics.docbook share/doc/HTML/uk/kspread/commands.docbook share/doc/HTML/uk/kspread/common share/doc/HTML/uk/kspread/config.docbook share/doc/HTML/uk/kspread/configdialog.docbook share/doc/HTML/uk/kspread/faq.docbook share/doc/HTML/uk/kspread/format.docbook share/doc/HTML/uk/kspread/importexport.docbook share/doc/HTML/uk/kspread/index.cache.bz2 share/doc/HTML/uk/kspread/index.docbook share/doc/HTML/uk/thesaurus/common share/doc/HTML/uk/thesaurus/index.cache.bz2 share/doc/HTML/uk/thesaurus/index.docbook share/locale/uk/LC_MESSAGES/ArtisticTextShape.mo share/locale/uk/LC_MESSAGES/AutocorrectPlugin.mo +share/locale/uk/LC_MESSAGES/BarcodePlugin.mo share/locale/uk/LC_MESSAGES/CalendarTool.mo share/locale/uk/LC_MESSAGES/ChangecasePlugin.mo +share/locale/uk/LC_MESSAGES/ChartPlugin.mo share/locale/uk/LC_MESSAGES/ChartShape.mo +share/locale/uk/LC_MESSAGES/CommentShape.mo share/locale/uk/LC_MESSAGES/DivineProportion.mo share/locale/uk/LC_MESSAGES/FormulaShape.mo -share/locale/uk/LC_MESSAGES/FreOffice.mo share/locale/uk/LC_MESSAGES/KarbonTools.mo share/locale/uk/LC_MESSAGES/KexiRelationDesignShapePlugin.mo share/locale/uk/LC_MESSAGES/MusicShape.mo share/locale/uk/LC_MESSAGES/ParagraphTool.mo share/locale/uk/LC_MESSAGES/PathShapes.mo share/locale/uk/LC_MESSAGES/PictureShape.mo +share/locale/uk/LC_MESSAGES/PluginShape.mo +share/locale/uk/LC_MESSAGES/ShapePlugin.mo share/locale/uk/LC_MESSAGES/SpellCheckPlugin.mo share/locale/uk/LC_MESSAGES/TableShape.mo share/locale/uk/LC_MESSAGES/TextShape.mo share/locale/uk/LC_MESSAGES/VariablesPlugin.mo share/locale/uk/LC_MESSAGES/VideoShape.mo share/locale/uk/LC_MESSAGES/desktop_koffice.mo share/locale/uk/LC_MESSAGES/karbon.mo share/locale/uk/LC_MESSAGES/kchart.mo share/locale/uk/LC_MESSAGES/kexi.mo share/locale/uk/LC_MESSAGES/kformula.mo share/locale/uk/LC_MESSAGES/kocolorspaces.mo share/locale/uk/LC_MESSAGES/koconverter.mo share/locale/uk/LC_MESSAGES/koffice-defaulttools.mo share/locale/uk/LC_MESSAGES/koffice-dockers.mo share/locale/uk/LC_MESSAGES/koffice-simpletextedit.mo share/locale/uk/LC_MESSAGES/koffice.mo share/locale/uk/LC_MESSAGES/kofficefilters.mo share/locale/uk/LC_MESSAGES/koproperty.mo share/locale/uk/LC_MESSAGES/kounavail.mo share/locale/uk/LC_MESSAGES/kplato.mo share/locale/uk/LC_MESSAGES/kplatolibs.mo share/locale/uk/LC_MESSAGES/kplatorcpsplugin.mo share/locale/uk/LC_MESSAGES/kplatowork.mo share/locale/uk/LC_MESSAGES/kpresenter.mo share/locale/uk/LC_MESSAGES/krita.mo share/locale/uk/LC_MESSAGES/krossmodulekplato.mo share/locale/uk/LC_MESSAGES/krossmodulekspread.mo share/locale/uk/LC_MESSAGES/krossmodulekword.mo share/locale/uk/LC_MESSAGES/kscan_plugin.mo share/locale/uk/LC_MESSAGES/kspread.mo share/locale/uk/LC_MESSAGES/kspreadsolver.mo share/locale/uk/LC_MESSAGES/kthesaurus.mo share/locale/uk/LC_MESSAGES/kword.mo share/locale/uk/LC_MESSAGES/thesaurus_tool.mo @dirrm share/doc/HTML/uk/thesaurus @dirrm share/doc/HTML/uk/kspread @dirrm share/doc/HTML/uk/kpresenter @dirrm share/doc/HTML/uk/koffice +@dirrm share/doc/HTML/uk/kivio @dirrm share/doc/HTML/uk/kformula @dirrm share/doc/HTML/uk/kexi @dirrm share/doc/HTML/uk/kchart @dirrm share/doc/HTML/uk/karbon Property changes on: head/ukrainian/koffice-kde4-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property